/* Variáveis com cores principais */
:root {
    --gold: #B5A187;
    --gold-light: #D4C5B1;
    --beige: #F5F0EB;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Impede rolagem horizontal */
    width: 100%;
    background-color: #FDF8F5;
    /* Mesma cor de fundo do seu site */
}

body {
    position: relative;
    /* Garante o posicionamento correto dos elementos filhos */
    min-height: 100vh;
    /* Garante que o corpo ocupe toda a altura da viewport */
}

body,
html {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styles */
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 50px;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1000;
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 100px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--gold);
}

/* Menu Mobile */
/* CSS adicional para o menu mobile */
/* Estilos para o ícone de hambúrguer e menu mobile */
.menu-toggle {
    display: none;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Animação do ícone hambúrguer quando ativo */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Estilos do menu mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .menu.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    .nav-list a:hover {
        background-color: rgba(181, 161, 135, 0.1);
    }
}

/* Hero Section */
/* CSS modificado para o Hero com carrossel de background */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
}

/* Estilo do carrossel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

.hero-bg-img {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    transition: transform 1.2s ease-in-out;
}

/* Overlay gradiente */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(245, 240, 235, 0.7), rgba(245, 240, 235, 0.7));
    z-index: 2;
}

/* Container de conteúdo */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 50px;
    position: relative;
    z-index: 3;
    /* Acima do overlay */
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 2s ease;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.7s ease;
}

.cta-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
}

/* Efeito de zoom sutil nas imagens do carrossel */
.carousel-item.active .hero-bg-img {
    transform: scale(1.05);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }

    .hero {
        position: relative;
        z-index: 1;
      }
      
      /* Linha fina na base do hero */
      .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%; /* Começa a 10% da esquerda para ser mais elegante */
        width: 80%; /* Ocupa 80% da largura para não ir até as bordas */
        height: 3px; /* Altura de apenas 1px para ser bem fina */
        background: linear-gradient(to right,
                    rgba(181, 161, 135, 0),   /* Começa transparente */
                    rgba(181, 161, 135, 0.5), /* Tom dourado no meio */
                    rgba(181, 161, 135, 0));  /* Termina transparente */
        z-index: 10;
      }
}

/* Profile Section */
/* CSS aprimorado para a seção Profile com foto */
.profile {
    padding: 100px 50px;
    background-color: var(--white);
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Estilo da área da foto */
.profile-image {
    position: relative;
    height: 80%;
    display: flex;
    justify-content: center;
}

.profile-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(181, 161, 135, 0.15);
}

.profile-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

/* Área de conteúdo */
.profile-content {
    text-align: left;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 30px;
}

.profile-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Destaques numéricos */
.profile-highlights {
    display: flex;
    margin: 40px 0;
    gap: 60px;
    text-align: center;
}

.highlight-item {
    flex: 1;
}

.highlight-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.highlight-text {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 992px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-image {
        order: 1;
    }

    .profile-content {
        order: 2;
        text-align: center;
    }

    .profile-highlights {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .profile-highlights {
        flex-wrap: wrap;
        gap: 30px 20px;
    }

    .highlight-item {
        flex-basis: 40%;
    }

    .highlight-number {
        font-size: 42px;
    }
}

/* Services Section */
.services {
    padding: 100px 50px;
    background-color: var(--beige);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(181, 161, 135, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Modificações para usar imagens reais em formato arredondado */

/* Modificar o container do ícone para receber imagens */
.service-icon {
    width: 150px;
    /* Aumentando o tamanho para imagens reais */
    height: 150px;
    /* Tamanho fixo em formato quadrado */
    margin: 0 auto 25px;
    border-radius: 50%;
    /* Mantém o formato circular */
    overflow: hidden;
    /* Garante que a imagem não escape do círculo */
    position: relative;
    /* Para posicionamento da imagem interna */
    background-color: transparent;
    /* Remove o fundo beige */
    border: 3px solid var(--gold-light);
    /* Adiciona uma borda sutil */
    transition: all 0.3s ease;
}

/* Estiliza a imagem dentro do container */
.service-icon img {
    width: 100%;
    /* Preenche todo o container */
    height: 100%;
    object-fit: cover;
    /* Garante que a imagem cubra o espaço sem distorção */
    object-position: center;
    /* Centraliza a imagem */
    opacity: 1;
    /* Imagens reais devem ter opacidade total */
    transition: transform 0.5s ease;
    /* Transição suave para efeito zoom */
}

/* Efeito hover na imagem */
.service-card:hover .service-icon {
    border-color: var(--gold);
    /* Borda mais escura no hover */
    transform: scale(1.05);
    /* Pequeno aumento no tamanho */
    box-shadow: 0 5px 15px rgba(181, 161, 135, 0.3);
    /* Sombra suave */
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
    /* Zoom suave na imagem */
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 72px;
}

.service-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: scaleX(1);
}


.infraestrutura {
    padding: 100px 50px;
    background-color: #F5F0EB;
}

.infraestrutura-container {
    max-width: 1200px;
    margin: 0 auto;
}

.infraestrutura-header {
    text-align: center;
    margin-bottom: 60px;
}

.infraestrutura-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #333333;
    margin-bottom: 20px;
}

.infraestrutura-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.infraestrutura-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.infra-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(181, 161, 135, 0.1);
    transition: all 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(181, 161, 135, 0.2);
}

.infra-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.infra-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.infra-card:hover .infra-image img {
    transform: scale(1.05);
}

.infra-content {
    padding: 30px;
}

.infra-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 15px;
}

.infra-content p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

/* Seção de Equipamentos */
.equipamentos {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(181, 161, 135, 0.1);
}

.equipamentos h3 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #333333;
    margin-bottom: 40px;
}

.equipamentos-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.equipamento-item {
    text-align: center;
    padding: 30px;
    background-color: #F5F0EB;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.equipamento-item:hover {
    transform: translateY(-5px);
    background-color: #D4C5B1;
}

.equipamento-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(181, 161, 135, 0.1);
}

.equipamento-icon img {
    width: 35px;
    height: 35px;
    opacity: 0.8;
}

.equipamento-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 10px;
}

.equipamento-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 1024px) {
    .infraestrutura-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipamentos-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .infraestrutura {
        padding: 60px 20px;
    }

    .infraestrutura-grid {
        grid-template-columns: 1fr;
    }

    .equipamentos-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .infra-image {
        height: 250px;
    }

    .infra-content {
        padding: 20px;
    }

    .equipamentos {
        padding: 30px 20px;
    }
}

/* --------------------------*/


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #B5A187;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #333333;
    font-weight: 400;
}

.contact-section {
    background-color: #FDF8F5;
    padding: 100px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #B5A187;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #333333;
    font-weight: 400;
}

/* Layout com separadores em vez de cards */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-content {
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-item {
    padding: 20px 15px;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid rgba(181, 161, 135, 0.2);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #B5A187;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.contact-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #B5A187;
}

.contact-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.contact-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #666666;
    transition: color 0.3s ease;
    padding: 2px 0;
}

.contact-link:hover {
    color: #B5A187;
}

.contact-action {
    font-size: 14px;
    color: #B5A187;
    margin-top: 8px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-action {
    color: #8C7B66;
    padding-left: 5px;
}

.appointment-note {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 15px;
    background-color: rgba(181, 161, 135, 0.08);
    border-left: 3px solid #B5A187;
    font-size: 14px;
    color: #666666;
    font-style: italic;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.contact-item:hover .appointment-note {
    background-color: rgba(181, 161, 135, 0.12);
    border-left-width: 4px;
}

/* Mapa com título */
.map-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(181, 161, 135, 0.2);
    padding-top: 40px;
    margin-top: 20px;
}

.map-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666666;
    text-align: center;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-map {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(181, 161, 135, 0.1);
    height: 400px;
    transition: all 0.3s ease;
}

.contact-map:hover {
    box-shadow: 0 8px 20px rgba(181, 161, 135, 0.15);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .contact-map {
        height: 300px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: fadeIn 0.6s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.1s);
}

.contact-item:nth-child(1) {
    --item-index: 0;
}

.contact-item:nth-child(2) {
    --item-index: 1;
}

.contact-item:nth-child(3) {
    --item-index: 2;
}

.contact-item:nth-child(4) {
    --item-index: 3;
}


footer {
    background-color: #FDF8F5;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 5px;
}

.footer-logo p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #B5A187;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(181, 161, 135, 0.2);
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #888888;
    line-height: 1.6;
}

.developer-credits {
    margin-top: 5px;
}

.developer-credits a {
    color: #B5A187;
    text-decoration: none;
    transition: color 0.3s ease;
}

.developer-credits a:hover {
    color: #8C7B66;
}

/* Responsividade */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 20px;
    }
}





/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: fadeIn 0.6s ease forwards;
}


/* Media Queries para Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card p {
        min-height: auto;
    }
}

/* Media Queries anteriores */
@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
        position: fixed;
        background-color: transparent;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    /* Classe que será adicionada via JavaScript quando rolar a página */
    .header.mobile-scrolled {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .logo-img {
        height: 70px;
        width: auto;
    }

    .menu {
        display: none;
    }

    .menu.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .menu.active .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .menu-mobile {
        display: block;
    }

    .hero {
        padding: 0 20px;
        margin-bottom: -65px;
        /* Remove espaço do final do hero também */
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .profile {
        padding: 60px 20px;
    }

    .profile-container {
        flex-direction: column;
        gap: 40px;
    }

    .profile-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 32px;
    }

    .profile-highlights {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .highlight-item {
        flex: 1;
        min-width: 150px;
    }

    .highlight-number {
        font-size: 36px;
    }
}

/* Ícone do WhatsApp com fundo personalizado */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #B5A187;
    /* Cor dourada da UI */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-icon img {
    width: 60px;
    height: auto;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    background-color: #D4C5B1;
    /* Versão mais clara da cor dourada */
}

/* Animação de pulsar sutil */
@keyframes pulse-subtle {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-icon {
    animation: pulse-subtle 2s infinite;
}

/* para deslizar imagem do profile*/

/* Animação de deslizamento de baixo para cima para a imagem de perfil no mobile */
@media (max-width: 768px) {
    .profile {
        padding-top: 0;
        padding-left: 0;
        padding-right: 0;
        margin-top: -5px;
        /* Valor negativo para compensar qualquer espaço */
        padding-top: 0;
        overflow-x: hidden;
    }

    .profile-container {
        max-width: 100%;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    /* Imagem de perfil em largura total */
    .profile-image {
        margin: 0;
        padding: 0;
        display: block;
        top: 0;
        margin-bottom: 30px;
        /* Ajuste este valor para aumentar ou diminuir o espaçamento */
        width: 100vw;
        position: relative;
        transform: translateY(80px);
        /* Posição inicial abaixo */
        opacity: 0;
        /* Começa invisível */
        transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Classe que será adicionada pelo JavaScript quando visível */
    .profile-image.appear {
        transform: translateY(0);
        /* Posição final */
        opacity: 1;
    }

    /* Define a animação de baixo para cima */
    @keyframes slideInFromBottom {
        0% {
            transform: translateY(50px);
            /* Começa abaixo da posição final */
            opacity: 0;
        }

        100% {
            transform: translateY(0);
            /* Termina na posição original */
            opacity: 1;
        }
    }

    /* Remover borda arredondada e ajustar margens */
    .profile-photo {
        width: 100%;
        height: auto;
        max-width: none;
        border-radius: 0;
        /* Remove bordas arredondadas */
        display: block;
        margin: 0;
        padding: 0;

        object-fit: cover;
    }

    /* Ajuste para encaixar com o hero */
    .profile-image {
        margin-top: -1px;
        /* Garante que encosta exatamente no hero */
    }

    /* Remover decoração (se existir) */
    .profile-decoration {
        display: none;
    }

    /* Ajustes no conteúdo de texto */
    .profile-content {
        padding: 30px 20px 0;
    }
}

/* Implementação alternativa com Intersection Observer via CSS */
@media (max-width: 768px) {

    /* Classe auxiliar que será adicionada via JavaScript */
    .profile-image.animate-in {
        animation-name: slideInFromBottom;
        animation-duration: 4s;
        animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        animation-fill-mode: forwards;
    }

    /* Estado inicial antes da animação */
    .profile-image.ready-to-animate {
        transform: translateY(50px);
        opacity: 0;
    }
}