    :root {
        --azul-principal: #4A627A;    /* Cor do logo */
        --azul-soft: #D1DBE5;       /* Cor de fundo suave */
        --dourado-detalhe: #D4AF37;   /* Dourado para botões e detalhes */
        --fundo-pagina: #F9FBFC;
        --texto-corpo: #5A7086;
    }

    body {
        font-family: 'Segoe UI', system-ui, sans-serif;
        margin: 0;
        background-color: var(--fundo-pagina);
        color: var(--azul-principal);
    }

/* --- Header com Logo e Menu Responsivo --- */
header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
}

.logo img {
    height: auto;
    width: 100%;       /* Ocupa a largura do container */
    max-width: 280px;  /* Limite para o logo não ficar gigante no desktop */
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a { 
    text-decoration: none; 
    color: var(--azul-principal); 
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap; /* Impede o texto de quebrar linha e estourar */
}

/* Ajuste Mobile para o Menu não estourar */
@media (max-width: 768px) {
    .header-container { 
        flex-direction: column; 
        padding: 10px; 
    }
    .logo img {
        max-width: 220px; /* Ajuste para o logo brilhar no celular sem ocupar a tela toda */
        margin-bottom: 5px;
    }
    .nav-menu { 
        width: 100%; 
        justify-content: center; 
        overflow-x: auto; 
        padding: 10px 0;
        gap: 1rem;
        -webkit-overflow-scrolling: touch; /* Melhora o deslize no iPhone */
    }
}

    header a { text-decoration: none; color: var(--azul-principal); }

    /* --- Seção Hero: Estrutura Split --- */
    .hero {
        display: grid;
        grid-template-columns: 1.2fr 1fr; /* 60% texto, 40% imagem */
        align-items: center;
        height: 90vh; /* Ocupa quase a tela toda */
        padding: 0 10%;
        background: linear-gradient(135deg, var(--azul-soft) 0%, rgba(255,255,255,1) 100%);
        padding-top: 80px; /* Desconto do header */
    }

    /* Lado Esquerdo: Texto e CTA */
    .hero-text { padding-right: 50px; }

    .hero-text h1 {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--azul-principal);
    }

    .hero-text h1 span {
        color: var(--dourado-detalhe); /* Destaca "estética" ou "beleza" */
        font-style: italic; /* Opcional, para dar charme */
    }

    .hero-text p {
        font-size: 1.2rem;
        color: var(--texto-corpo);
        margin-bottom: 2.5rem;
        max-width: 550px;
    }

    /* Botão Principal */
    .btn-principal {
        background-color: var(--azul-principal);
        color: white;
        padding: 15px 40px;
        border-radius: 5px; /* Quadrado, mas levemente arredondado */
        text-decoration: none;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .btn-principal:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(74, 98, 122, 0.2);
    }

    /* Lado Direito: A Foto da Dra. Amanda */
    .hero-image {
        position: relative;
        justify-self: end;
    }

    /* O "Quadradinho" com a foto */
    .dra-photo {
        width: 380px;
        height: 380px;
        object-fit: cover;
        border-radius: 12px; /* Arredondado sutil */
        border: 8px solid rgba(255, 255, 255, 0.4); /* Borda "vidro" */
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    /* Detalhe decorativo por trás da foto */
    .decorator-box {
        position: absolute;
        top: -20px;
        left: -20px;
        width: 380px;
        height: 380px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
        border-radius: 12px;
        z-index: -1;
    }

     /* --- Responsividade (Mobile) --- */
    @media (max-width: 1024px) {
        .hero { grid-template-columns: 1fr; text-align: center; height: auto; padding: 120px 5%; }
        .hero-text { padding-right: 0; margin-bottom: 40px; }
        .hero-text h1 { font-size: 2.5rem; }
        .hero-text p { margin-left: auto; margin-right: auto; }
        .hero-image { justify-self: center; }
        .dra-photo, .decorator-box { width: 300px; height: 300px; }
    }

    /* --- Seção de Procedimentos --- */
    .procedimentos-container {
        padding: 80px 10%;
        background-color: #ffffff;
        text-align: center;
    }

    .procedimentos-container h2 {
        font-size: 2.5rem;
        color: var(--azul-principal);
        margin-bottom: 50px;
        position: relative;
    }

    /* Linha decorativa abaixo do título */
    .procedimentos-container h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--dourado-detalhe);
        margin: 15px auto;
    }

    .grid-procedimentos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .card-procedimento {
        background: rgba(209, 219, 229, 0.15); /* Azul soft bem clarinho */
        border-radius: 15px;
        overflow: hidden; /* Garante que a imagem não saia do card */
        border: 1px solid rgba(74, 98, 122, 0.1);
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
    }

    .card-procedimento:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(74, 98, 122, 0.15);
        background: white;
        border-color: var(--azul-soft);
    }

    /* Espaço para a Foto do Procedimento */
    .img-container {
        width: 100%;
        height: 220px;
        background-color: #eee; /* Placeholder enquanto não tem a foto */
        overflow: hidden;
    }

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .card-procedimento:hover .img-container img {
        transform: scale(1.1); /* Zoom suave na foto ao passar o mouse */
    }

    .card-content {
        padding: 25px;
        text-align: left;
    }

    .card-content h3 {
        margin: 0 0 10px 0;
        font-size: 1.4rem;
        color: var(--azul-principal);
    }

    .card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--texto-corpo);
        margin-bottom: 20px;
    }

    /* Link "Saiba Mais" ou "Agendar" dentro do card */
    .link-card {
        text-decoration: none;
        color: var(--dourado-detalhe);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
    }

    /* Destaque para o ShapeShot® */
    .card-especial {
        border: 2px solid var(--azul-soft);
        position: relative;
    }

    .badge-exclusivo {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--dourado-detalhe);
        color: white;
        padding: 5px 12px;
        font-size: 0.7rem;
        font-weight: bold;
        border-radius: 20px;
        z-index: 2;
    }

        /* --- Seção de Depoimentos --- */
    .depoimentos-container {
        padding: 100px 10% 80px 10%;
        background: linear-gradient(to bottom, #ffffff, var(--azul-soft));
        text-align: center;
    }

    .depoimentos-container h2 {
        font-size: 2.2rem;
        color: var(--azul-principal);
        margin-bottom: 50px;
    }

    .grid-depoimentos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .card-depoimento {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(5px);
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 10px 30px rgba(74, 98, 122, 0.08);
        position: relative;
        transition: transform 0.3s ease;
    }

    .card-depoimento:hover {
        transform: translateY(-5px);
    }

    /* Aspas decorativas em dourado */
    .card-depoimento::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 25px;
        font-size: 5rem;
        color: var(--dourado-detalhe);
        opacity: 0.3;
        font-family: 'Georgia', serif;
    }

    .texto-depoimento {
        font-style: italic;
        color: var(--texto-corpo);
        line-height: 1.8;
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
    }

    .autor-depoimento {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    /* Foto circular da cliente (opcional) */
    .autor-foto {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--azul-soft);
        object-fit: cover;
        border: 2px solid white;
    }

    .autor-info {
        text-align: left;
    }

    .autor-info strong {
        display: block;
        color: var(--azul-principal);
        font-size: 1rem;
    }

    .autor-info span {
        font-size: 0.8rem;
        color: var(--dourado-detalhe);
        font-weight: 600;
        text-transform: uppercase;
    }

    /* Estrelas de avaliação */
    .estrelas {
        color: var(--dourado-detalhe);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

       /* --- Seção de Contato e Localização --- */
    .contato-container {
        padding: 80px 10%;
        background-color: #ffffff;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: center;
    }

    .contato-info h2 {
        font-size: 2.2rem;
        color: var(--azul-principal);
        margin-bottom: 20px;
    }

    .contato-info p {
        color: var(--texto-corpo);
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        color: var(--azul-principal);
        font-weight: 500;
    }

    /* Botão Interno para falar com a Gabi */
    .btn-gabi-inline {
        background-color: #25D366; /* Verde WhatsApp */
        color: white;
        padding: 15px 30px;
        border-radius: 10px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        transition: 0.3s;
    }

    .btn-gabi-inline:hover {
        transform: scale(1.05);
        background-color: #128C7E;
    }

    /* Mapa com cantos arredondados */
    .mapa-box {
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 5px solid white;
    }

    /* --- Botão Flutuante do WhatsApp --- */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 9999;
    }

    .whatsapp-btn {
        width: 65px;
        height: 65px;
        background-color: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        transition: 0.3s;
        animation: pulse-green 2s infinite;
    }

    .whatsapp-btn img {
        width: 35px;
    }

    @keyframes pulse-green {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* Footer Final */
    footer {
        background-color: var(--azul-principal);
        color: white;
        text-align: center;
        padding: 40px;
        font-size: 0.9rem;
        opacity: 0.9;
    }

    @media (max-width: 900px) {
        .contato-container { grid-template-columns: 1fr; text-align: center; }
        .info-item { justify-content: center; }
        .mapa-box { height: 300px; }
    }
