:root {
    --bg-dark: #1A1615;
    /* Grafite terroso */
    --text-gold: #D4A359;
    --text-light: #F5F5F5;
    --text-muted: #B8B0A8;
    --btn-gold: linear-gradient(135deg, #C07C28 0%, #D4A359 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

/* Foto de fundo — fluida, suave e integrada */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background: url('../images/backprincipal.png') no-repeat right center / cover;
    opacity: 1;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 12%, rgba(0, 0, 0, 0.85) 30%, black 55%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 12%, rgba(0, 0, 0, 0.85) 30%, black 55%);
}

/* Degradê global para fusão natural entre o texto e a foto */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        var(--bg-dark) 0%, 
        var(--bg-dark) 35%, 
        rgba(26, 22, 21, 0.75) 48%, 
        rgba(26, 22, 21, 0.2) 72%, 
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Todo conteúdo acima da foto */
.hero>* {
    position: relative;
    z-index: 3;
}

/* ========================================
   HEADER / MENU
   ======================================== */
header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-area span {
    font-size: 0.7rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.btn-nav {
    border: 1px solid var(--text-gold);
    color: var(--text-gold);
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-nav:hover {
    background-color: var(--text-gold);
    color: var(--bg-dark);
}

/* ========================================
   HERO CONTENT — Texto alinhado à esquerda
   ======================================== */
.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 60px;
    display: flex;
    align-items: center;
    flex: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 580px;
    text-align: left;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    color: #FFFFFF;
    font-weight: 400;
    line-height: 1.25;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
    color: #E2B266;
    font-style: italic;
}

.hero-content p {
    font-size: 1.05rem;
    color: #F0ECE4;
    font-weight: 400;
    line-height: 1.7;
    max-width: 500px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* ========================================
   BOTÃO CTA
   ======================================== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--btn-gold);
    color: #000000;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(192, 124, 40, 0.3);
    margin-top: 8px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(192, 124, 40, 0.4);
}

/* ========================================
   BADGE TAG
   ======================================== */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(212, 163, 89, 0.4);
    background: rgba(212, 163, 89, 0.08);
    color: var(--text-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    width: fit-content;
}

/* ========================================
   FEATURE CARDS (caso sejam readicionados)
   ======================================== */
.hero-features {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 20px 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 16px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.feature-card p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.feature-card strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========================================
   SEÇÃO DE IDENTIFICAÇÃO (DORES)
   ======================================== */
.identify {
    background-color: #F5F0EB;
    /* Creme quente */
    padding: 100px 20px;
}

.identify-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.identify h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #1A1615;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 48px;
}

.identify-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.identify-list li {
    font-size: 1.05rem;
    color: #4A4340;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.identify-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-gold);
}

/* ========================================
   RESPONSIVIDADE
   ========================================*/
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero {
        justify-content: space-between;
        min-height: 100vh;
        min-height: 100dvh;
    }

    header {
        padding: 16px 20px;
    }

    /* Foto ocupa a tela inteira com o topo/rosto fixado no alto */
    .hero::before {
        width: 100%;
        left: 0;
        right: 0;
        background: url('../images/backprincipal.png') no-repeat center top / cover;
        opacity: 0.98;
        -webkit-mask-image: none;
        mask-image: none;
    }

    /* Degradê: totalmente limpo no rosto e escurece a partir do peito/mesa para destacar o texto */
    .hero::after {
        width: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg,
                rgba(26, 22, 21, 0.7) 0%,
                rgba(26, 22, 21, 0.05) 15%,
                rgba(26, 22, 21, 0.15) 36%,
                rgba(26, 22, 21, 0.85) 54%,
                rgba(26, 22, 21, 0.98) 100%);
    }

    /* Container empurrado para baixo do rosto com padding-top */
    .hero-container {
        padding: 36vh 20px 32px;
        margin-top: auto;
        flex: 1;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        gap: 14px;
        text-align: center;
        align-items: center;
        margin-top: auto;
    }

    .hero-content h1 {
        font-size: clamp(1.45rem, 4.8vw, 1.85rem);
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 0.92rem;
        line-height: 1.5;
        max-width: 440px;
    }

    .btn-cta {
        align-self: center;
        padding: 13px 26px;
        font-size: 0.85rem;
        margin-top: 4px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 20px;
    }

    .btn-nav {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .scroll-indicator {
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 14px 16px;
    }

    .hero::before {
        background-position: center top;
    }

    .hero-container {
        padding: 38vh 16px 28px;
    }

    .hero-content {
        gap: 12px;
    }

    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.22;
    }

    .hero-content p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.82rem;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(192, 124, 40, 0.3);
    }

    50% {
        box-shadow: 0 8px 35px rgba(192, 124, 40, 0.55);
    }
}

/* Classe base de animação fade-up */
.anim-fade-up {
    opacity: 0;
    animation: fadeUp 0.9s ease-out forwards;
}

/* Delays escalonados */
.anim-delay-1 {
    animation-delay: 0.2s;
}

.anim-delay-2 {
    animation-delay: 0.4s;
}

/* Animação de Scroll Reveal para todas as seções */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* Header desliza de cima */
header {
    animation: slideDown 0.8s ease-out forwards;
}

/* Foto de fundo surge suavemente */
.hero::before {
    animation: fadeIn 1.4s ease-out forwards;
}

/* Botão CTA com brilho pulsante sutil */
.btn-cta {
    animation: fadeUp 0.9s ease-out 0.4s forwards, pulseGlow 3s ease-in-out 2s infinite;
    opacity: 0;
}

/* ========================================
   INDICADOR DE SCROLL
   ======================================== */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 32px;
    cursor: default;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-gold);
    border-bottom: 2px solid var(--text-gold);
    transform: rotate(45deg);
    opacity: 0.5;
    animation: float 2s ease-in-out infinite;
}

/* Reduz animações para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0s !important;
    }
}


/* ========================================
   SEÇÃO DE IDENTIFICAÇÃO SCROLL-WHEEL
   ======================================== */
.identify-scroll-section {
    background-color: #F5F0EB;
    /* Creme quente */
    height: 250vh;
    /* Espaço para rolar e girar a roda */
    position: relative;
    width: 100%;
}

.identify-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.identify-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #1A1615;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    max-width: 700px;
    margin-bottom: 20px;
    z-index: 10;
}

/* Container da roda */
.wheel-wrapper {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.wheel {
    position: absolute;
    bottom: -360px;
    /* Posiciona o centro da roda abaixo da tela */
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 163, 89, 0.25);
    transform-origin: center center;
    /* Roda gira de 90deg a -90deg com base no scroll */
    transform: rotate(calc(90deg - var(--scroll-progress, 0) * 180deg));
    transition: transform 0.15s cubic-bezier(0.1, 0.8, 0.2, 1);
}

/* Itens da roda (Cards) */
.card-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 340px;
    height: 190px;
    margin-left: -170px;
    margin-top: -95px;
    transform-origin: center center;
    /* Posiciona cada card no raio da roda usando o ângulo definido no style do HTML */
    transform: rotate(calc(var(--card-angle) * 1deg)) translateY(-400px);
}

/* Conteúdo interno do card - Mantém o texto sempre na horizontal */
.card-content {
    background-color: #FFFFFF;
    border: 1px solid rgba(212, 163, 89, 0.15);
    border-radius: 20px;
    padding: 32px 28px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 12px 35px rgba(26, 22, 21, 0.03);
    opacity: 0.25;
    filter: blur(1.5px) grayscale(60%);
    /* Anula a rotação do card/roda mantendo-o reto */
    transform: rotate(calc((var(--scroll-progress, 0) * 180deg) - 90deg - (var(--card-angle) * 1deg))) scale(0.9);
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Card ativo (no topo) */
.card-item.active .card-content {
    opacity: 1;
    filter: blur(0) grayscale(0);
    transform: rotate(calc((var(--scroll-progress, 0) * 180deg) - 90deg - (var(--card-angle) * 1deg))) scale(1.1);
    box-shadow: 0 20px 45px rgba(192, 124, 40, 0.18);
    border-color: var(--text-gold);
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    /* Letra maior */
    color: #1A1615;
    /* Tom escuro legível */
    line-height: 1.5;
    font-weight: 500;
    /* Mais encorpada */
    font-style: normal;
    /* Sem ser itálico */
}

/* Indicador de navegação no rodapé */
.scroll-helper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    margin-top: 10px;
}

.mouse-icon {
    color: var(--text-gold);
    animation: float 2s ease-in-out infinite;
}

.scroll-helper span {
    font-size: 0.75rem;
    color: #8C827A;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ========================================
   RESPONSIVIDADE DA RODA
   ======================================== */
@media (max-width: 900px) {
    .identify-scroll-section {
        height: 250vh;
        /* Mantém espaço confortável no mobile */
    }

    .identify-sticky-container {
        padding: 60px 15px 30px;
    }

    .wheel {
        width: 540px;
        height: 540px;
        bottom: -240px;
    }

    .card-item {
        width: 260px;
        height: 130px;
        margin-left: -130px;
        margin-top: -65px;
        transform: rotate(calc(var(--card-angle) * 1deg)) translateY(-270px);
        /* Raio menor */
    }

    .card-content {
        padding: 16px;
    }

    .card-item.active .card-content {
        transform: rotate(calc((var(--scroll-progress, 0) * 180deg) - 90deg - (var(--card-angle) * 1deg))) scale(1.05);
    }

    .card-content p {
        font-size: 0.95rem;
        /* Fonte maior no mobile */
        line-height: 1.45;
    }
}

/* ========================================
   SEÇÃO 3: SOBRE MIM
   ======================================== */
.about-section {
    background-color: var(--bg-dark);
    padding: 100px 20px;
    position: relative;
    width: 100%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
    /* Alinha verticalmente com o centro da foto */
}

/* --- FOTO DE PERFIL (Corte Inteligente) --- */
.about-photo-column {
    width: 100%;
}

.profile-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    /* Formato retrato vertical elegante */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 163, 89, 0.25);
    background: rgba(255, 255, 255, 0.02);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    /* Garante que o topo da cabeça nunca seja cortado */
    transform: none;
    /* Remove zoom para preservar o enquadramento original */
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25201E 0%, #1A1615 100%);
}

.profile-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--text-gold);
    opacity: 0.35;
}

/* --- INFORMAÇÕES E APRESENTAÇÃO --- */
.about-info-column {
    display: flex;
    flex-direction: column;
}

.crp-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-gold);
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.about-paragraphs p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-paragraphs p:last-child {
    margin-bottom: 0;
}

.about-paragraphs p strong {
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   SEÇÃO 4: ÁREAS DE ATUAÇÃO (DEDICADA)
   ======================================== */
.specialties-section {
    background-color: #F5F0EB;
    padding: 120px 20px;
    position: relative;
    width: 100%;
    overflow: visible;
}

.specialties-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

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

.specialties-header .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C07C28;
    /* Dourado escuro para legibilidade no fundo claro */
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.specialties-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #1A1615;
    /* Escuro */
    font-weight: 400;
    line-height: 1.25;
}

.specialties-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas espaçosas (para 6 itens) */
    gap: 30px;
    width: 100%;
    margin-bottom: 50px;
}

.specialty-card-new {
    background-color: #FFFFFF;
    border: 1px solid rgba(212, 163, 89, 0.15);
    /* Borda sutil */
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 12px 35px rgba(26, 22, 21, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease;
}

.specialty-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(192, 124, 40, 0.12);
    border-color: #D4A359;
    /* Brilho no hover */
}

/* Linha decorativa dourada no topo de cada card */
.specialty-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--btn-gold);
    opacity: 0.85;
}

/* Container do ícone */
.specialty-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 163, 89, 0.1);
    margin-bottom: 24px;
}

.specialty-icon {
    width: 24px;
    height: 24px;
}

.specialty-card-new h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1615;
    margin-bottom: 12px;
    line-height: 1.3;
}

.specialty-card-new p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5C5450;
    line-height: 1.65;
}

/* Centralização do Botão de Ação */
.specialties-action {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn-cta-gold-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-gold);
    color: #000000;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(192, 124, 40, 0.25);
}

.btn-cta-gold-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(192, 124, 40, 0.35);
}

/* ========================================
   RESPONSIVIDADE DAS DUAS SEÇÕES
   ======================================= */
@media (max-width: 1024px) {
    .specialties-grid-new {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 em telas médias/tablets */
        gap: 24px;
    }
}

@media (max-width: 900px) {

    /* Sobre Mim */
    .about-section {
        padding: 80px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    /* Especialidades */
    .specialties-section {
        padding: 80px 20px;
    }

    .specialties-grid-new {
        grid-template-columns: 1fr;
        /* 1 coluna no mobile */
        gap: 20px;
    }

    .specialty-card-new {
        padding: 30px 24px;
    }

    .btn-cta-gold-new {
        width: 100%;
    }
}

/* ========================================
   SEÇÃO: ROTINA E RELACIONAMENTO (SOBRECARGA) - RESTAURADA
   ======================================== */
.routine-burden-section {
    background-color: #F5F0EB;
    /* Creme quente */
    padding: 100px 20px;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(212, 163, 89, 0.15);
    /* Divisor sutil */
}

.routine-burden-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 360px;
    /* Coluna da foto ligeiramente menor para equilíbrio */
    gap: 60px;
    align-items: center;
}

.routine-info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.routine-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C07C28;
    /* Dourado escuro para contraste */
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}

.routine-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    color: #1A1615;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 20px;
}

.routine-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #5C5450;
    /* Cinza terroso */
    line-height: 1.75;
    margin-bottom: 28px;
}

.routine-action {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.routine-photo-column {
    width: 100%;
}

@media (max-width: 900px) {
    .routine-burden-section {
        padding: 80px 20px;
    }

    .routine-burden-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .routine-info-column {
        align-items: center;
        text-align: center;
    }

    .routine-subtitle {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .routine-title {
        margin-bottom: 16px;
    }

    .routine-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .routine-photo-column {
        max-width: 300px;
        margin: 0 auto;
        order: -1;
        /* Foto no topo no mobile */
    }

    .routine-action {
        justify-content: center;
    }

    .routine-action .btn-cta-gold-new {
        width: 100%;
    }
}

/* ========================================
   SEÇÕES DETALHADAS: TERAPIA ANSIEDADE E RELACIONAMENTOS (ÁREAS DE ATUAÇÃO)
   ======================================== */
.therapy-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.therapy-info-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.therapy-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #1A1615;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.therapy-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #5C5450;
    line-height: 1.7;
    margin-bottom: 24px;
}

.therapy-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Em duas colunas (de 2 em 2) */
    gap: 20px 30px;
    width: 100%;
    margin-bottom: 28px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(192, 124, 40, 0.1);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon {
    width: 14px;
    height: 14px;
}

.checklist-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4A4340;
    line-height: 1.5;
}

.therapy-outro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5C5450;
    line-height: 1.7;
    margin-bottom: 32px;
}

.therapy-action {
    display: flex;
    justify-content: flex-start;
}

.btn-therapy-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid #C07C28;
    color: #C07C28;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-therapy-action:hover {
    background-color: #C07C28;
    color: #FFFFFF;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    background-color: rgba(192, 124, 40, 0.15);
    border-radius: 50%;
    padding: 3px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-therapy-action:hover .arrow-icon {
    transform: translateX(4px);
    background-color: rgba(255, 255, 255, 0.2);
    stroke: #FFFFFF;
}

/* Imagens das terapias */
.therapy-photo-column {
    width: 100%;
}

.therapy-photo-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Formato paisagem sutil elegante do consultório */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(26, 22, 21, 0.06);
    border: 1px solid rgba(212, 163, 89, 0.15);
}

.therapy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsividade */
@media (max-width: 900px) {
    .therapy-detail-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .therapy-info-column {
        align-items: center;
        text-align: center;
    }

    .therapy-checklist {
        grid-template-columns: 1fr;
        /* Fica em 1 coluna no mobile */
        gap: 16px;
    }

    .checklist-item {
        text-align: left;
    }

    .therapy-photo-column {
        order: -1;
        /* Foto sempre no topo no mobile */
        max-width: 500px;
        margin: 0 auto;
    }

    .therapy-action {
        width: 100%;
        justify-content: center;
    }

    .btn-therapy-action {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   ÁREAS DE ATUAÇÃO — EDITORIAL EXPANDABLE
   ======================================== */
.area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    margin-bottom: 56px;
    border-top: 1px solid rgba(192, 124, 40, 0.15);
    border-left: 1px solid rgba(192, 124, 40, 0.15);
}

.area-card {
    padding: 40px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1px solid rgba(192, 124, 40, 0.15);
    border-bottom: 1px solid rgba(192, 124, 40, 0.15);
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: relative;
}

.area-card.open {
    background-color: #FFFFFF;
}

.area-accent-line {
    width: 32px;
    height: 2px;
    background-color: #C07C28;
    margin-bottom: 4px;
    transition: width 0.3s ease;
}

.area-card.open .area-accent-line {
    width: 48px;
}

.area-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1A1615;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.area-preview {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5C5450;
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

.area-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.area-card.open .area-expanded {
    max-height: 300px;
}

.area-expanded p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #5C5450;
    line-height: 1.7;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(192, 124, 40, 0.15);
}

.area-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    width: fit-content;
}

.toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #C07C28;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.toggle-icon {
    font-size: 1.1rem;
    color: #C07C28;
    line-height: 1;
    transition: transform 0.3s ease, color 0.2s ease;
    display: inline-block;
}

.area-card.open .toggle-icon {
    transform: rotate(45deg);
}

.area-toggle:hover .toggle-label,
.area-toggle:hover .toggle-icon {
    color: #D4A359;
}

@media (max-width: 900px) {
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .area-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .area-card {
        padding: 32px 20px 28px;
        border-left: none;
        border-right: none;
    }
}

/* ========================================
   BOOK FLIP CARDS — ÁREAS DE ATUAÇÃO
   ======================================== */

/* O grid já existe como .specialties-grid-new */
.specialties-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin-bottom: 50px;
    perspective: 2000px;
    overflow: visible;
}

.book {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    cursor: pointer;
    border-radius: 12px;
}

.book:hover {
    transform: rotateY(180deg);
}

/* ---- FACE FRENTE: Capa do livro ---- */
.cover {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background-color: #C8B49A;
    border-radius: 12px;
    border: 1px solid rgba(192, 124, 40, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(26, 22, 21, 0.08);
    overflow: hidden;
}

.book-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #2A1F1A;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.04em;
    margin: 0;
}

.book-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: relative;
}

/* ---- FACE VERSO: Conteúdo do card ---- */
.book-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    background-color: #FDFAF6;
    border-radius: 12px;
    border: 1px solid rgba(192, 124, 40, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 28px 22px;
    box-shadow: 4px 6px 22px rgba(26, 22, 21, 0.10);
}

.book-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #5C5450;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

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

@media (max-width: 600px) {
    .specialties-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .book {
        aspect-ratio: 3 / 4;
    }

    .book-icon {
        width: 30px;
        height: 30px;
    }

    .book-description {
        font-size: 0.8rem;
    }

    .book-title {
        font-size: 0.95rem;
    }
}

/* ========================================
   SEÇÃO: SOBRE MIM
   ======================================== */
.about-section {
    background-color: #FAF6F0;
    padding: 120px 20px;
    width: 100%;
    border-top: 1px solid rgba(212, 163, 89, 0.15);
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.about-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* Coluna da foto */
.about-photo-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-photo-frame {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(192, 124, 40, 0.25);
    background-color: #E8DDD0;
    box-shadow: 0 12px 36px rgba(58, 30, 10, 0.08);
    position: relative;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s ease;
}

.about-photo-frame:hover .about-photo {
    transform: scale(1.02);
}

.about-photo-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #C07C28;
    opacity: 0.4;
}

/* Coluna de Conteúdo */
.about-content-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.about-header-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #1A1615;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.01em;
}

.about-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #7A4520;
    font-weight: 500;
}

.about-meta-dot {
    color: #C07C28;
    opacity: 0.6;
}

.about-crp-tag {
    color: #C07C28;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.about-accent-line {
    width: 44px;
    height: 2px;
    background-color: #C07C28;
    margin-top: 10px;
    border-radius: 2px;
}

/* Textos da bio */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #4A3F3A;
    line-height: 1.75;
    margin: 0;
}

/* Destaques / Badges sutis */
.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
    padding: 16px 0;
    border-top: 1px solid rgba(192, 124, 40, 0.15);
    border-bottom: 1px solid rgba(192, 124, 40, 0.15);
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #5C5450;
    font-weight: 500;
}

.highlight-bullet {
    color: #C07C28;
    font-size: 0.75rem;
}

.about-cta-wrapper {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo-frame {
        max-width: 320px;
        aspect-ratio: 1 / 1;
    }

    .about-section {
        padding: 80px 20px;
    }

    .about-wrapper {
        gap: 36px;
    }

    .about-content-col {
        align-items: center;
        text-align: center;
    }

    .about-header-info {
        align-items: center;
    }

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

    .about-cta-wrapper {
        display: flex;
        justify-content: center;
    }
}

/* ========================================
   SEÇÃO 5: COMO FUNCIONA O PROCESSO
   ======================================== */
.how-it-works-section {
    background-color: #FFFFFF;
    padding: 120px 20px;
    width: 100%;
    border-top: 1px solid rgba(212, 163, 89, 0.12);
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

/* Linha conectora entre os passos */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 1px;
    background: linear-gradient(to right, rgba(192, 124, 40, 0.25), rgba(192, 124, 40, 0.5), rgba(192, 124, 40, 0.25));
    z-index: 0;
}

.step-card {
    background-color: #FDFAF6;
    border: 1px solid rgba(212, 163, 89, 0.15);
    border-radius: 16px;
    padding: 36px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(192, 124, 40, 0.10);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #C07C28;
    line-height: 1;
    background-color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(192, 124, 40, 0.3);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: #1A1615;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #5C5450;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .how-it-works-section {
        padding: 80px 20px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 500px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SEÇÃO 6: FAQ
   ======================================== */
.faq-section {
    background-color: #F5F0EB;
    padding: 120px 20px;
    width: 100%;
    border-top: 1px solid rgba(212, 163, 89, 0.12);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.faq-cta-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid rgba(212, 163, 89, 0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 8px 28px rgba(192, 124, 40, 0.10);
    border-color: rgba(192, 124, 40, 0.35);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1A1615;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #C07C28;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #C07C28;
    transition: transform 0.35s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 22px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #5C5450;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid rgba(212, 163, 89, 0.15);
    padding-top: 16px;
}

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

    .faq-question {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.open .faq-answer {
        padding: 0 20px 18px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background-color: #1A1615;
    width: 100%;
}

.footer-top {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-col--brand {
    flex: 0 0 auto;
    max-width: 320px;
}

.footer-col:not(.footer-col--brand) {
    flex: 0 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col--brand {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(237, 229, 216, 0.2);
    color: rgba(237, 229, 216, 0.6);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.footer-social-link:hover {
    border-color: #C07C28;
    color: #D4A359;
    background-color: rgba(192, 124, 40, 0.1);
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #EDE5D8;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(237, 229, 216, 0.5);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.footer-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1A1615;
    background-color: #C07C28;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.footer-cta:hover {
    background-color: #D4A359;
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(237, 229, 216, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(237, 229, 216, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.01em;
}

.footer-nav a:hover {
    color: #D4A359;
}

.footer-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: rgba(237, 229, 216, 0.6);
    padding-left: 14px;
    position: relative;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.footer-info-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #C07C28;
    font-size: 0.7rem;
    top: 3px;
}

.footer-divider {
    max-width: 1100px;
    margin: 0 auto;
    height: 1px;
    background: rgba(237, 229, 216, 0.08);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-crp {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(237, 229, 216, 0.4);
    letter-spacing: 0.04em;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(237, 229, 216, 0.25);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px;
        padding: 56px 20px 48px;
    }

    .footer-col--brand {
        max-width: 100%;
        align-items: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .footer-top {
        padding: 48px 20px 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.floating-whatsapp:hover .floating-whatsapp-icon {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Efeito de pulso / onda sutil */
.floating-whatsapp-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: wppPulse 2.4s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
}

@keyframes wppPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.28);
        opacity: 0;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.floating-whatsapp-tooltip {
    background: rgba(26, 22, 21, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-light);
    border: 1px solid rgba(212, 163, 89, 0.25);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp-icon {
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }

    .floating-whatsapp-tooltip {
        display: none;
    }
}