/* ============================================================
   Bruna Lessa Psicloga - Visual Premium v4.0
   Design Acolhedor, Clean e Dinmico
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS - Nova Paleta Acolhedora
   ============================================================ */
:root {
    /* Paleta Principal - Tons Suaves e Acolhedores */
    --forest:        #2D4A42;
    --forest-deep:   #1F332A;
    --forest-mist:   #3D5F52;
    --sage:          #7A9B8A;
    --sage-light:    #9BB5A9;
    --sage-pale:     #C8D5CD;
    --sage-mist:     #E8EDEA;
    --sand:          #C9A88E;
    --sand-light:    #DBC4AE;
    --sand-pale:     #EDE3D7;
    --cream:         #FAF8F4;
    --cream-warm:    #F5F1EA;
    --cream-deep:    #EBE5DA;
    
    /* Cores de Acento - Suavizadas */
    --lavender:      #A8B4D6;
    --lavender-soft: #C5CDE6;
    --rose-soft:     #D4A5A5;
    --warm-beige:    #C4B5A3;
    
    /* Texto */
    --ink:           #2A3230;
    --ink-soft:      #4A5552;
    --text:          #3D4744;
    --text-light:    #6B7874;
    --text-muted:    #9AABA5;
    --white:         #FFFFFF;
    
    /* Gradientes */
    --grad-forest:   linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
    --grad-sage:     linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
    --grad-sand:     linear-gradient(135deg, var(--sand) 0%, var(--sand-light) 100%);
    --grad-cream:    linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 100%);
    --grad-lavender: linear-gradient(135deg, var(--lavender) 0%, var(--lavender-soft) 100%);
    --grad-hero:     linear-gradient(165deg, var(--forest) 0%, var(--forest-mist) 50%, #4A6B5C 100%);
    
    /* Sombras - Mais suaves e difusas */
    --sh-xs:         0 2px 8px rgba(0,0,0,.04);
    --sh-sm:         0 4px 16px rgba(0,0,0,.06);
    --sh-md:         0 8px 32px rgba(0,0,0,.08);
    --sh-lg:         0 16px 56px rgba(0,0,0,.12);
    --sh-xl:         0 24px 80px rgba(0,0,0,.16);
    --sh-green:      0 8px 32px rgba(45,74,66,.25);
    --sh-sand:       0 8px 32px rgba(201,168,142,.3);
    --sh-lavender:   0 8px 32px rgba(168,180,214,.3);
    
    /* Bordas orgânicas */
    --r:             16px;
    --r-lg:          28px;
    --r-xl:          40px;
    --r-pill:        9999px;
    
    /* Transições - Suavizadas */
    --ease:          cubic-bezier(.25,.46,.45,.94);
    --spring:        cubic-bezier(.34,1.56,.64,1);
    --bounce:        cubic-bezier(.68,-.55,.265,1.55);
    --t-fast:        180ms;
    --t-base:        300ms;
    --t-smooth:      500ms;
    --t-slow:        700ms;
    
    /* Tipografia */
    --f-head:        'Playfair Display', Georgia, serif;
    --f-body:        'Poppins', -apple-system, sans-serif;
    
    /* Layout */
    --nav-h:         82px;
    --max-w:         1220px;
    --px:            clamp(20px, 4vw, 48px);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-head);
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-base) var(--ease);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--f-body);
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--sage);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ============================================================
   3. LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--px);
}

section {
    padding-block: clamp(80px, 10vw, 120px);
    position: relative;
}

/* ============================================================
   4. TIPOGRAFIA
   ============================================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .70rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: var(--sage-mist);
    border-radius: var(--r-pill);
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--grad-sage);
    border-radius: var(--r-pill);
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--ink);
    margin-bottom: .5em;
    line-height: 1.2;
    font-weight: 600;
}

.section-title em {
    font-style: italic;
    color: var(--sage);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-inline: auto;
    margin-bottom: clamp(52px, 7vw, 76px);
}

.section-header .section-label {
    display: block;
    text-align: center;
}

.section-header .section-label::before {
    display: inline-block;
    margin-right: 8px;
}

.section-header .section-subtitle {
    margin-inline: auto;
}

.title-line {
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
}

.title-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--grad-sage);
    border-radius: var(--r-pill);
}

/* ============================================================
   5. BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    font-family: var(--f-body);
    font-size: .90rem;
    font-weight: 500;
    border-radius: var(--r);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1;
    white-space: nowrap;
    transition:
        transform var(--t-base) var(--spring),
        box-shadow var(--t-base) var(--ease),
        background var(--t-base) var(--ease),
        border-color var(--t-base) var(--ease),
        color var(--t-base) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .6s var(--ease);
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn:active {
    transform: translateY(-1px) scale(.99);
}

.btn-primary {
    background: var(--grad-sage);
    color: var(--white);
    border-color: var(--sage);
}

.btn-primary:hover {
    box-shadow: var(--sh-green);
}

.btn-forest {
    background: var(--grad-forest);
    color: var(--white);
    border-color: var(--forest);
}

.btn-forest:hover {
    box-shadow: var(--sh-green);
    background: linear-gradient(135deg, var(--forest-deep), var(--forest));
}

.btn-sand {
    background: var(--grad-sand);
    color: var(--white);
    border-color: var(--sand);
}

.btn-sand:hover {
    box-shadow: var(--sh-sand);
    background: linear-gradient(135deg, var(--sand-light), var(--sand));
}

.btn-outline {
    background: transparent;
    color: var(--sage);
    border-color: var(--sage);
}

.btn-outline:hover {
    background: var(--sage);
    color: var(--white);
    box-shadow: var(--sh-green);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}

.btn-sm {
    padding: 12px 24px;
    font-size: .82rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.05rem;
    border-radius: var(--r-lg);
}

.btn-block {
    width: 100%;
}

/* ============================================================
   6. HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(45,74,66,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}

.header.scrolled {
    background: rgba(31,51,42,.99);
    box-shadow: 0 4px 40px rgba(0,0,0,.2);
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo img {
    height: 46px;
    width: auto;
    filter: brightness(1.1);
    transition: transform var(--t-base) var(--spring);
}

.nav-logo:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.logo-text {
    font-family: var(--f-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.logo-subtitle {
    font-size: .66rem;
    color: var(--sage-pale);
    font-weight: 400;
    letter-spacing: .04em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list {
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-link {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    padding: 8px 14px;
    border-radius: 10px;
    white-space: nowrap;
    position: relative;
    transition: color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--sand-light);
    border-radius: var(--r-pill);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--t-base) var(--ease);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,.05);
}

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

.nav-btn {
    padding: 12px 24px;
    font-size: .82rem;
    background: var(--grad-sand);
    color: var(--white);
    border-color: var(--sand);
}

.nav-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--sh-sand);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    cursor: pointer;
    color: var(--white);
    font-size: 1.25rem;
    z-index: 1002;
    transition: background var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}

.nav-toggle:hover {
    background: rgba(255,255,255,.15);
    transform: scale(1.05);
}

.nav-toggle:active {
    transform: scale(.95);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--t-slow) var(--ease);
    cursor: pointer;
}

.nav-overlay.active {
    opacity: 1;
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-block: calc(var(--nav-h) + 60px) 0;
    background: var(--grad-hero);
    overflow: hidden;
}

/* Textura granulada sutil */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Brilhos decorativos */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 85% 45%, rgba(122,155,138,.15) 0%, transparent 60%),
        radial-gradient(ellipse 35% 35% at 12% 75%, rgba(201,168,142,.12) 0%, transparent 50%),
        radial-gradient(ellipse 25% 25% at 70% 85%, rgba(168,180,214,.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Shapes orgânicas flutuantes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .4;
    animation: floatShape 12s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--sage);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: var(--sand);
    bottom: 10%;
    left: -5%;
    animation-delay: -4s;
}

.hero-shape-3 {
    width: 180px;
    height: 180px;
    background: var(--lavender);
    top: 40%;
    left: 20%;
    animation-delay: -8s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(.95); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: clamp(70px, 9vw, 120px);
}

.hero-text {
    max-width: 580px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r-pill);
    padding: 8px 18px;
    font-size: .74rem;
    font-weight: 500;
    color: var(--sand-light);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 26px;
    animation: fadeInUp 1s var(--ease) forwards;
    opacity: 0;
}

.hero-tag i {
    font-size: .7rem;
    color: var(--sand);
}

.hero-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--sand-light);
    margin-bottom: 12px;
    font-family: var(--f-body);
    letter-spacing: .02em;
    animation: fadeInUp 1s var(--ease) .1s forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 1s var(--ease) .2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.12rem);
    color: rgba(255,255,255,.75);
    margin-bottom: 40px;
    line-height: 1.9;
    animation: fadeInUp 1s var(--ease) .3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s var(--ease) .4s forwards;
    opacity: 0;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .80rem;
    color: rgba(255,255,255,.5);
    animation: fadeInUp 1s var(--ease) .5s forwards;
    opacity: 0;
}

.hero-trust i {
    color: var(--sand);
    font-size: .75rem;
}

/* Stats bar */
.hero-stats {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 48px;
    animation: fadeInUp 1s var(--ease) .6s forwards;
    opacity: 0;
}

.hero-stat {
    flex: 1;
    padding: 22px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.06);
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-num {
    display: block;
    font-family: var(--f-head);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: .70rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Hero image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    animation: fadeInRight 1.2s var(--ease) .3s forwards;
    opacity: 0;
    margin-top: -30px;
}

.hero-img-frame {
    position: relative;
    width: clamp(300px, 40vw, 440px);
}

/* Blob decorativo */
.hero-blob {
    position: absolute;
    bottom: -15px;
    left: -25px;
    width: 115%;
    height: 115%;
    background: rgba(122,155,138,.2);
    border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
    z-index: 0;
    animation: blobMorph 10s ease-in-out infinite;
}

.hero-img-inner {
    position: relative;
    z-index: 1;
    border-radius: 52% 48% 46% 54% / 48% 46% 54% 52%;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.4), 0 0 0 8px rgba(122,155,138,.2);
    animation: blobMorph 10s ease-in-out infinite;
}

.hero-img-inner img {
    width: 100%;
    aspect-ratio: .85;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Badge flutuante */
.hero-badge-float {
    position: absolute;
    bottom: 35px;
    left: -35px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 18px 22px;
    box-shadow: var(--sh-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 200px;
    animation: floatBadge 5s ease-in-out infinite, fadeInScale 1s var(--ease) .8s forwards;
    opacity: 0;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--grad-sage);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--sh-green);
}

.hero-badge-text strong {
    display: block;
    font-size: .86rem;
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 600;
}

.hero-badge-text span {
    font-size: .72rem;
    color: var(--text-light);
}

/* Wave separadora */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    color: var(--white);
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: clamp(70px, 8vw, 100px);
    display: block;
}

/* Animações do Hero */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes blobMorph {
    0%, 100% { border-radius: 52% 48% 46% 54% / 48% 46% 54% 52%; }
    33% { border-radius: 55% 45% 52% 48% / 45% 55% 48% 52%; }
    66% { border-radius: 48% 52% 54% 46% / 52% 48% 46% 54%; }
}

/* ============================================================
   8. CREDIBILITY STRIP
   ============================================================ */
.credibility-strip {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid rgba(122,155,138,.08);
}

.credibility-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(36px, 6vw, 80px);
    flex-wrap: wrap;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .84rem;
    color: var(--text-light);
    font-weight: 500;
    transition: transform var(--t-base) var(--ease);
}

.credibility-item:hover {
    transform: translateY(-2px);
}

.credibility-item i {
    color: var(--sage);
    font-size: .95rem;
}

/* ============================================================
   9. TALVEZ VOCÊ ESTEJA
   ============================================================ */
.talvez {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.talvez::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168,180,214,.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.talvez::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201,168,142,.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.talvez-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    margin-bottom: clamp(36px, 5vw, 56px);
}

.talvez-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: clamp(20px, 3vw, 28px);
    box-shadow: var(--sh-xs);
    border: 1px solid rgba(122,155,138,.06);
    transition: transform var(--t-smooth) var(--ease), box-shadow var(--t-smooth) var(--ease), border-color var(--t-base) var(--ease);
}

.talvez-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-md);
    border-color: rgba(122,155,138,.2);
}

.talvez-item i {
    color: var(--sage);
    font-size: 1.3rem;
    margin-top: 4px;
    flex-shrink: 0;
    transition: transform var(--t-base) var(--spring);
}

.talvez-item:hover i {
    transform: scale(1.15);
}

.talvez-item span {
    font-size: .98rem;
    color: var(--text);
    line-height: 1.6;
}

.talvez-final {
    text-align: center;
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    color: var(--sage);
    font-style: italic;
    font-family: var(--f-head);
    max-width: 700px;
    margin-inline: auto;
}

/* ============================================================
   10. ÁREAS
   ============================================================ */
.areas {
    background: var(--white);
}

.areas-atuacao {
    background: linear-gradient(165deg, var(--sage-mist) 0%, rgba(232,237,234,.5) 100%);
    padding: clamp(36px, 6vw, 68px) clamp(28px, 5vw, 64px);
    border-radius: var(--r-xl);
    position: relative;
    overflow: hidden;
}

.areas-atuacao::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168,180,214,.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.areas-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.areas-header .section-label {
    display: block;
    text-align: center;
}

.areas-title {
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
    color: var(--ink);
    margin-bottom: 12px;
}

.areas-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 540px;
    margin-inline: auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.area-card {
    background: var(--white);
    padding: 30px 26px;
    border-radius: var(--r-lg);
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-smooth) var(--ease), box-shadow var(--t-smooth) var(--ease);
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-sand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-smooth) var(--ease);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
}

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

.area-icon {
    width: 52px;
    height: 52px;
    background: var(--grad-sand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--sh-sand);
    transition: transform var(--t-base) var(--spring);
}

.area-card:hover .area-icon {
    transform: scale(1.1) rotate(5deg);
}

.area-card h3 {
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 10px;
    font-family: var(--f-body);
    font-weight: 600;
}

.area-card p {
    font-size: .84rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Band */
.cta-band {
    background: var(--forest);
    padding: clamp(40px, 6vw, 68px) clamp(32px, 6vw, 64px);
    border-radius: var(--r-xl);
    margin-top: clamp(40px, 6vw, 64px);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -35%;
    right: -8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(122,155,138,.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,168,142,.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-band-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(36px, 6vw, 64px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-band-text h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.35;
}

.cta-band-text p {
    font-size: 1rem;
    color: rgba(255,255,255,.72);
    margin-bottom: 32px;
    line-height: 1.9;
}

.cta-note {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
    margin-top: 12px;
}

.instagram-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    padding: 32px 28px;
    border-radius: var(--r-lg);
    text-align: center;
    transition: background var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}

.instagram-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-4px);
}

.instagram-icon {
    font-size: 2.6rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 14px;
}

.instagram-card h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
    font-family: var(--f-body);
    font-weight: 600;
}

.instagram-card p {
    font-size: .84rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ============================================================
   11. O QUE É A PSICANÁLISE
   ============================================================ */
.psicanalise {
    background: var(--cream-warm);
    position: relative;
    overflow: hidden;
}

.psicanalise::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(122,155,138,.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.psicanalise-content {
    max-width: 800px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.psicanalise-text {
    font-size: clamp(1.05rem, 2.2vw, 1.18rem);
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: clamp(28px, 4vw, 42px);
    text-align: center;
}

.psicanalise-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-left: 4px solid var(--sage);
    border-radius: 0 var(--r) var(--r) 0;
    padding: clamp(24px, 4vw, 38px) clamp(24px, 4vw, 42px);
    box-shadow: var(--sh-sm);
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}

.psicanalise-box:hover {
    transform: translateX(4px);
    box-shadow: var(--sh-md);
}

.psicanalise-box-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--sage-mist);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.psicanalise-box p {
    font-size: clamp(.98rem, 1.8vw, 1.08rem);
    color: var(--ink);
    line-height: 1.8;
}

/* ============================================================
   12. SOBRE
   ============================================================ */
.sobre {
    background: var(--grad-cream);
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(168,180,214,.05) 100%);
    pointer-events: none;
}

.sobre-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: clamp(52px, 7vw, 96px);
    align-items: start;
    position: relative;
    z-index: 1;
}

.sobre-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.sobre-img-wrapper {
    width: 100%;
    max-width: 380px;
    position: relative;
}

/* Moldura orgânica */
.sobre-img-frame {
    width: 100%;
    aspect-ratio: .9;
    border-radius: 48% 52% 42% 58% / 52% 42% 58% 48%;
    overflow: hidden;
    background: var(--grad-sage);
    box-shadow: var(--sh-xl);
    position: relative;
    transition: border-radius 4s var(--ease);
}

.sobre-img-frame:hover {
    border-radius: 52% 48% 58% 42% / 48% 52% 42% 58%;
}

.sobre-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    inset: 0;
}

/* Círculo decorativo */
.sobre-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 85%;
    height: 85%;
    border: 2px solid rgba(122,155,138,.15);
    border-radius: 50%;
    z-index: -1;
}

.sobre-quote {
    background: var(--white);
    padding: 26px 26px 26px 30px;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    border-left: 4px solid var(--sage);
    max-width: 380px;
    position: relative;
    transition: transform var(--t-base) var(--ease);
}

.sobre-quote:hover {
    transform: translateY(-4px);
}

.sobre-quote::before {
    content: '\201C';
    position: absolute;
    top: -14px;
    left: 20px;
    font-family: var(--f-head);
    font-size: 4.5rem;
    line-height: 1;
    color: var(--sage-pale);
}

.quote-text {
    font-family: var(--f-head);
    font-size: .92rem;
    font-style: italic;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 12px;
}

.quote-author {
    font-size: .74rem;
    color: var(--sage);
    font-weight: 600;
    letter-spacing: .04em;
}

.sobre-info {
    max-width: 600px;
}

.sobre-intro {
    font-size: 1.08rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.9;
}

.sobre-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 26px 24px;
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xs);
    border: 1px solid rgba(122,155,138,.06);
    transition: transform var(--t-smooth) var(--ease), box-shadow var(--t-smooth) var(--ease), border-color var(--t-base) var(--ease);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md);
    border-color: rgba(122,155,138,.2);
}

.detail-item i {
    width: 48px;
    height: 48px;
    background: var(--grad-sage);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--sh-green);
    transition: transform var(--t-base) var(--spring);
}

.detail-item:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.detail-item h4 {
    font-size: .88rem;
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 600;
    margin-bottom: 3px;
}

.detail-item p {
    font-size: .80rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ============================================================
   13. COMO FUNCIONA
   ============================================================ */
.como-funciona {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122,155,138,.1) 0%, transparent 70%);
    border-radius: 50%;
}

.como-funciona::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,142,.08) 0%, transparent 70%);
    border-radius: 50%;
}

.como-funciona .section-label {
    color: var(--sand-light);
    background: rgba(201,168,142,.15);
}

.como-funciona .section-label::before {
    background: var(--grad-sand);
}

.como-funciona .section-title {
    color: var(--white);
}

.como-funciona .section-subtitle {
    color: rgba(255,255,255,.65);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: clamp(44px, 6vw, 68px);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    padding: 36px 24px;
    border-radius: var(--r-lg);
    text-align: center;
    transition:
        transform var(--t-smooth) var(--ease),
        background var(--t-smooth) var(--ease),
        border-color var(--t-smooth) var(--ease),
        box-shadow var(--t-base) var(--ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,.08);
    border-color: rgba(122,155,138,.4);
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
}

.feature-icon {
    width: 68px;
    height: 68px;
    background: var(--grad-sand);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--sh-sand);
    transition: transform var(--t-base) var(--spring);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 12px;
    font-family: var(--f-body);
    font-weight: 600;
}

.feature-card p {
    font-size: .86rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* Etapas */
.etapas-container {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    padding: clamp(36px, 6vw, 60px);
    border-radius: var(--r-xl);
    position: relative;
    z-index: 1;
}

.etapas-title {
    text-align: center;
    font-size: clamp(1.4rem, 2.8vw, 1.75rem);
    color: var(--white);
    margin-bottom: clamp(32px, 5vw, 50px);
}

.etapas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.etapas-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.667% + 28px);
    right: calc(16.667% + 28px);
    height: 2px;
    background: linear-gradient(90deg, rgba(122,155,138,.4), rgba(122,155,138,.4));
    border-top: 1px dashed rgba(122,155,138,.35);
}

.etapa-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    padding: 36px 26px;
    border-radius: var(--r-lg);
    text-align: center;
    transition: background var(--t-smooth) var(--ease), transform var(--t-smooth) var(--ease), box-shadow var(--t-base) var(--ease);
}

.etapa-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,.15);
}

.etapa-number {
    width: 52px;
    height: 52px;
    background: var(--grad-sand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
    font-family: var(--f-head);
    box-shadow: var(--sh-sand);
    transition: transform var(--t-base) var(--spring);
}

.etapa-card:hover .etapa-number {
    transform: scale(1.1) rotate(5deg);
}

.etapa-card h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
    font-family: var(--f-body);
    font-weight: 600;
}

.etapa-card p {
    font-size: .86rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* ============================================================
   14. ATENDIMENTO
   ============================================================ */
.atendimento {
    background: var(--cream-warm);
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.atendimento-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(122,155,138,.08);
    transition: transform var(--t-smooth) var(--ease), box-shadow var(--t-smooth) var(--ease);
}

.atendimento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sh-xl);
}

.atendimento-card-top {
    background: var(--grad-forest);
    padding: 42px 32px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.atendimento-card-top::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 24px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.atendimento-card-top::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -8%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none;
}

.atendimento-icon {
    width: 84px;
    height: 84px;
    background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: 2rem;
    transition: transform var(--t-base) var(--spring);
}

.atendimento-card:hover .atendimento-icon {
    transform: scale(1.1) rotate(-5deg);
}

.atendimento-card-top h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 6px;
}

.atendimento-location {
    font-size: .88rem;
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.atendimento-location i {
    font-size: .8rem;
}

.atendimento-card-body {
    padding: 32px 32px 42px;
    text-align: center;
}

.atendimento-card-body p {
    font-size: .94rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.8;
}

/* ============================================================
   15. ARTIGOS
   ============================================================ */
.artigos {
    background: var(--white);
    position: relative;
}

.artigos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
    pointer-events: none;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.artigo-card {
    background: var(--cream);
    padding: 36px 32px;
    border-radius: var(--r-xl);
    border: 1px solid rgba(122,155,138,.08);
    position: relative;
    overflow: hidden;
    transition: transform var(--t-smooth) var(--ease), box-shadow var(--t-smooth) var(--ease);
}

.artigo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-smooth) var(--ease);
}

.artigo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
}

.artigo-card:hover::after {
    transform: scaleX(1);
}

.artigo-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    color: var(--sage);
    margin-bottom: 16px;
    font-weight: 500;
}

.artigo-title {
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.45;
}

.artigo-type {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .74rem;
    color: var(--sand);
    font-weight: 600;
    background: rgba(201,168,142,.1);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}

.artigo-description {
    font-size: .88rem;
    color: var(--text-light);
    margin-bottom: 22px;
    line-height: 1.75;
}

/* ============================================================
   16. FAQ
   ============================================================ */
.faq {
    background: var(--sage-mist);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168,180,214,.12) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-list {
    max-width: 840px;
    margin-inline: auto;
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-item {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(122,155,138,.08);
    transition: box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}

.faq-item.active {
    box-shadow: var(--sh-md);
    border-color: rgba(122,155,138,.25);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: .96rem;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    font-family: var(--f-body);
    transition: color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}

.faq-question:hover {
    color: var(--sage);
    background: rgba(122,155,138,.03);
}

.faq-icon {
    color: var(--sage);
    font-size: .8rem;
    flex-shrink: 0;
    transition: transform var(--t-base) var(--ease);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 26px;
    font-size: .90rem;
    color: var(--text-light);
    line-height: 1.85;
}

/* ============================================================
   17. CONTATO
   ============================================================ */
.contato {
    background: var(--grad-forest);
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 90% 10%, rgba(122,155,138,.12) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 10% 90%, rgba(201,168,142,.1) 0%, transparent 50%);
    pointer-events: none;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(44px, 6vw, 72px);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contato-info .section-label {
    color: var(--sand-light);
    background: rgba(201,168,142,.15);
}

.contato-info .section-label::before {
    background: var(--grad-sand);
}

.contato-info .section-title {
    color: var(--white);
}

.contato-info > p {
    font-size: 1rem;
    color: rgba(255,255,255,.72);
    margin-bottom: 36px;
    line-height: 1.85;
}

.contato-details {
    display: grid;
    gap: 18px;
    margin-bottom: 36px;
}

.contato-item {
    display: flex;
    gap: 16px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding: 12px;
    border-radius: var(--r);
    transition: background var(--t-base) var(--ease);
}

.contato-item:hover {
    background: rgba(255,255,255,.05);
}

.contato-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}

.contato-item:hover .contato-icon {
    background: rgba(255,255,255,.18);
    transform: scale(1.05);
}

.contato-item h4 {
    font-size: .78rem;
    font-weight: 500;
    opacity: .6;
    font-family: var(--f-body);
    margin-bottom: 2px;
    color: var(--white);
}

.contato-item p {
    font-size: .96rem;
    font-weight: 500;
    color: var(--white);
}

.contato-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}

.social-link:hover {
    background: var(--white);
    color: var(--forest);
    transform: translateY(-4px);
}

.contato-form {
    background: var(--white);
    padding: clamp(34px, 5vw, 54px) clamp(28px, 4vw, 46px);
    border-radius: var(--r-xl);
    box-shadow: 0 32px 100px rgba(0,0,0,.2);
    color: var(--ink);
}

.contato-form h3 {
    font-size: 1.6rem;
    margin-bottom: 28px;
    text-align: center;
    color: var(--ink);
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    font-family: var(--f-body);
    font-size: .90rem;
    border: 1.5px solid #E8E8E6;
    border-radius: var(--r);
    transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease);
    background: var(--white);
    color: var(--ink);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(122,155,138,.12);
    background: rgba(122,155,138,.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%236B7874' d='M7 9L0 0h14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 42px;
    cursor: pointer;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: var(--white);
    padding-top: clamp(60px, 8vw, 90px);
    padding-bottom: 36px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(40px, 6vw, 68px);
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    color: var(--sage-light);
    margin-bottom: 6px;
}

.footer-crp {
    font-size: .78rem;
    opacity: .4;
    margin-bottom: 6px;
}

.footer-approach {
    font-size: .82rem;
    color: var(--sage-pale);
    opacity: .7;
    font-style: italic;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease), transform var(--t-base) var(--spring);
}

.footer-social-link:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: .70rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--f-body);
    font-weight: 600;
    color: rgba(255,255,255,.35);
}

.footer-links ul {
    display: grid;
    gap: 10px;
}

.footer-links a {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    transition: color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}

.footer-links a:hover {
    color: var(--sage-light);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--sage-light);
    width: 18px;
    flex-shrink: 0;
}

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

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

.footer-bottom strong {
    color: rgba(255,255,255,.5);
}

.footer-created {
    margin-top: 6px;
}

.footer-created a {
    color: var(--sage-light);
    opacity: .7;
    transition: opacity var(--t-base);
}

.footer-created a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ============================================================
   19. FLOATING BUTTONS
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--grad-sage);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--sh-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t-slow) var(--ease), visibility var(--t-slow) var(--ease), transform var(--t-base) var(--spring), box-shadow var(--t-base) var(--ease);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--sh-lg);
}

.whatsapp-float {
    position: fixed;
    bottom: 94px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    z-index: 997;
    text-decoration: none;
    transition: transform var(--t-base) var(--spring), box-shadow var(--t-base) var(--ease);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(37,211,102,.2);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* ============================================================
   20. ANIMAÇÕES DE SCROLL
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade {
    opacity: 0;
    transition: opacity 1s var(--ease);
}

.animate-fade.visible {
    opacity: 1;
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }

/* ============================================================
   21. PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .animate-on-scroll,
    .animate-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .hero-img-inner,
    .hero-badge-float,
    .hero-shape {
        animation: none;
    }
}

/* ============================================================
   22. RESPONSIVE 1024px
   ============================================================ */
@media screen and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
        padding-bottom: 90px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-stats {
        max-width: 520px;
        margin-inline: auto;
    }
    
    .hero-badge-float {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .sobre-image {
        align-items: center;
    }
    
    .sobre-img-wrapper {
        max-width: 340px;
    }
    
    .sobre-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-item {
        align-items: center;
        text-align: center;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .cta-band-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .credibility-inner {
        gap: 28px;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   23. RESPONSIVE 768px
   ============================================================ */
@media screen and (max-width: 768px) {
    :root {
        --nav-h: 72px;
    }
    
    section {
        padding-block: clamp(56px, 9vw, 88px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 90vw);
        height: 100dvh;
        background: var(--forest);
        flex-direction: column;
        justify-content: center;
        padding: 48px 32px;
        box-shadow: var(--sh-xl);
        transition: right var(--t-slow) var(--ease);
        z-index: 1001;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-bottom: 32px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.05rem;
        padding: 14px 20px;
        width: 100%;
        text-align: center;
        color: rgba(255,255,255,.8);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-overlay {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        border-radius: var(--r-lg);
    }
    
    .hero-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    
    .hero-stat:last-child {
        border-bottom: none;
    }
    
    .hero-badge-float {
        display: none;
    }
    
    .talvez-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .etapas-grid {
        grid-template-columns: 1fr;
    }
    
    .etapas-grid::before {
        display: none;
    }
    
    .atendimento-grid {
        grid-template-columns: 1fr;
    }
    
    .artigos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: unset;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .credibility-strip {
        display: none;
    }
    
    .scroll-top {
        bottom: 90px;
    }
    
    .whatsapp-float {
        bottom: 28px;
    }
    
    .psicanalise-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================================
   24. RESPONSIVE 480px
   ============================================================ */
@media screen and (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .areas-atuacao {
        padding: 30px 20px;
    }
    
    .cta-band {
        padding: 32px 24px;
    }
    
    .etapas-container {
        padding: 32px 20px;
    }
    
    .talvez-grid {
        grid-template-columns: 1fr;
    }
    
    .sobre-details {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-top,
    .whatsapp-float {
        right: 16px;
    }
    
    .hero-stats {
        display: none;
    }
}
