/* ===================================================================
   ISEC — PSICOTERAPIA TELEPRESENCIAL PREMIUM
   Stylesheet completo (v4)
   =================================================================== */

:root {
    --bg-body: #FAFAFA;
    --bg-card: #FFFFFF;
    --primary-dark: #070B14;
    --primary-deep: #0B1322;
    --primary: #1E293B;
    --accent: #D4AF37;
    --accent-soft: #E6C76B;
    --accent-deep: #B8941F;
    --accent-hover: #C59B27;
    --text-main: #334155;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --border-subtle: rgba(10, 15, 28, 0.08);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-premium: 0 10px 40px -10px rgba(0,0,0,0.06);
    --shadow-hover: 0 24px 48px -16px rgba(212, 175, 55, 0.18);
    --shadow-card: 0 30px 60px -20px rgba(7, 11, 20, 0.18);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* --- LAYOUT GERAL --- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 110px 0; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-deep);
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 50px;
}

.section-eyebrow.centered { display: inline-block; }

.section-eyebrow.on-dark {
    color: var(--accent);
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.32);
}

.section-header h2 {
    font-size: 46px;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.accent-text {
    color: var(--accent-deep);
    font-style: italic;
    font-weight: 600;
}

/* --- ANIMAÇÕES --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }

@keyframes pulsePremium {
    0%   { transform: scale(1);    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); }
    50%  { transform: scale(1.03); box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45); }
    100% { transform: scale(1);    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); }
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%      { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

@keyframes auroraFloat {
    0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.55; }
    50%      { transform: translate3d(40px, -30px, 0) scale(1.15); opacity: 0.85; }
}

@keyframes auroraFloat2 {
    0%, 100% { transform: translate3d(0,0,0) scale(1); opacity: 0.4; }
    50%      { transform: translate3d(-40px, 30px, 0) scale(1.2); opacity: 0.7; }
}

@keyframes wordIn {
    0%   { opacity: 0; transform: translateY(20px); filter: blur(6px); }
    100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes wordOut {
    0%   { opacity: 1; transform: translateY(0);     filter: blur(0); }
    100% { opacity: 0; transform: translateY(-20px); filter: blur(6px); }
}

@keyframes shineOnce {
    0%   { transform: translateX(-120%) skewX(-20deg); }
    100% { transform: translateX(220%)  skewX(-20deg); }
}

@keyframes slideUpFade {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* --- ANNOUNCEMENT BAR --- */
.announce-bar {
    background: linear-gradient(90deg, #070B14 0%, #1A2236 50%, #070B14 100%);
    color: #E2E8F0;
    font-size: 13px;
    padding: 9px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
    letter-spacing: 0.2px;
}
.announce-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.announce-bar strong {
    color: var(--accent);
    font-weight: 600;
}
.announce-sep { color: rgba(255,255,255,0.25); }
.announce-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    animation: pulseDot 2.2s infinite;
}

/* --- HEADER --- */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-subtle);
    transition: padding 0.4s var(--ease-out-expo), box-shadow 0.4s ease, background 0.4s ease;
}
header.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
}
header .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--primary-dark);
    line-height: 1.1;
}
.logo img { height: 46px; width: auto; }

.cta-header {
    background: var(--primary-dark);
    color: #fff;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13.5px;
    transition: all 0.3s var(--ease-out-expo);
    border: 1px solid transparent;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(7, 11, 20, 0.15);
}
.cta-header:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}

/* ===================================================================
   HERO — CONVERSÃO IMEDIATA
   =================================================================== */
.hero {
    background:
        radial-gradient(ellipse at 80% 0%, rgba(212,175,55,0.09) 0%, transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(212,175,55,0.06) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #F9F6F0 100%);
    background-color: #F9F6F0;
    color: var(--primary-dark);
    padding: 70px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

/* Aurora suave no hero claro */
.aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.aurora-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.45;
}
.aurora-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(212,175,55,0.22) 0%, rgba(212,175,55,0) 70%);
    top: -80px; left: -100px;
    animation: auroraFloat 14s ease-in-out infinite;
}
.aurora-2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, rgba(212,175,55,0) 70%);
    top: 40%; right: -120px;
    animation: auroraFloat2 16s ease-in-out infinite;
}
.aurora-3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, rgba(212,175,55,0) 70%);
    bottom: -100px; left: 30%;
    animation: auroraFloat 20s ease-in-out infinite;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.06'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

.hero .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Eyebrow do hero */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent-deep);
    margin-bottom: 28px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 50px;
}
.eyebrow-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(212,175,55,0.6);
    animation: pulseDot 2s infinite;
}

.hero h1 {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1.4px;
    line-height: 1.08;
}
.hero h1 .hero-h1-italic {
    color: var(--accent-deep);
    font-style: italic;
    font-weight: 600;
    display: inline-block;
    font-size: 0.62em;
    margin-top: 8px;
    line-height: 1.2;
}

/* Hero highlights — micro provas sociais */
.hero-highlights {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    list-style: none;
    justify-content: center;
    margin: 0 auto 36px;
    padding: 0;
}
.hero-highlights li {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 7px;
}
.hero-highlights li::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* WORD ROTATOR — palavra dinâmica */
.word-rotator {
    position: relative;
    display: inline-block;
    vertical-align: baseline;
    height: 1.15em;
    overflow: hidden;
    min-width: 800px;
    text-align: left;
    font-style: italic;
    font-size: 0.58em;
    color: var(--accent);
    padding-right: 8px;
}
.word-rotator .word {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    white-space: nowrap;
    line-height: 1.15;
}
.word-rotator .word.is-in {
    animation: wordIn 0.6s var(--ease-out-expo) forwards;
}
.word-rotator .word.is-out {
    animation: wordOut 0.5s var(--ease-out-expo) forwards;
}

.hero .subtitle {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.75;
}
.hero .subtitle strong {
    color: var(--primary-dark);
    font-weight: 600;
}

/* Trust bar — métricas animadas */
.hero-trust-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 18px 36px;
    background: #fff;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.1);
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}
.trust-star {
    color: var(--accent-deep);
    margin-left: 4px;
    font-size: 0.85em;
}
.trust-label {
    font-size: 11.5px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(212,175,55,0.25);
}

/* CTA BLOCK CARD — onde acontece a conversão */
.hero-cta-block {
    background: #FFFFFF;
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: var(--radius-xl);
    padding: 44px 36px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(212,175,55,0.15), 0 4px 20px rgba(0,0,0,0.04);
}
.hero-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-block-header {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.cta-block-title {
    font-size: 28px;
    color: var(--primary-dark);
    margin: 14px 0 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.cta-block-sub {
    font-size: 15.5px;
    color: var(--text-light);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.65;
}

.step-indicator {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Strip de disponibilidade */
.availability-strip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 50px;
    padding: 9px 20px;
    margin-bottom: 32px;
    font-size: 13.5px;
    color: #BEF264;
    position: relative;
    z-index: 1;
}
.avail-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}
.avail-text strong { color: #DCFCE7; font-weight: 600; }

/* Label escolha do especialista */
.hero-choose-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.micro-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--accent-deep);
    font-weight: 600;
}

/* CARDS DOS PROFISSIONAIS */
.hero-prof-cards {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.hero-prof-card {
    flex: 1;
    background: var(--bg-body);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.4s var(--ease-luxe);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-prof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* Brilho que percorre o card no hover */
.hero-prof-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.08) 50%, transparent 100%);
    transform: translateX(-120%) skewX(-20deg);
    pointer-events: none;
    transition: transform 0.9s var(--ease-luxe);
}

.hero-prof-card:hover {
    background: #fff;
    border-color: rgba(212, 175, 55, 0.55);
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px -16px rgba(0,0,0,0.12),
        0 0 0 1px rgba(212,175,55,0.25),
        0 0 40px -10px rgba(212,175,55,0.14);
}

.hero-prof-card:hover::before { opacity: 1; }
.hero-prof-card:hover::after {
    animation: shineOnce 1.1s var(--ease-luxe) forwards;
}

.hero-prof-photo-wrap {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 4px;
}

.prof-status-dot {
    position: absolute;
    bottom: 4px; left: 64px;
    width: 14px; height: 14px;
    background: #22C55E;
    border: 3px solid var(--bg-body);
    border-radius: 50%;
    z-index: 2;
    animation: pulseDot 2.4s infinite;
}

.hero-prof-photo {
    width: 84px; height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.3);
    transition: transform 0.5s var(--ease-luxe);
}
.hero-prof-card:hover .hero-prof-photo {
    transform: scale(1.06);
}

.hero-prof-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-prof-credential {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-prof-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.hero-prof-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.65;
}
.hero-prof-desc strong { color: var(--primary-dark); font-weight: 600; }

.hero-prof-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.hero-prof-tags span {
    font-size: 11.5px;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.22);
    color: var(--text-main);
    padding: 4px 11px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.hero-prof-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 14px 18px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.28);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent-deep);
    transition: all 0.3s var(--ease-out-expo);
}
.hero-prof-card:hover .hero-prof-cta {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}
.hero-prof-cta svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.hero-prof-card:hover .hero-prof-cta svg {
    transform: translateX(4px);
}

/* DIVISOR "OU" */
.hero-or {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 64px;
    position: relative;
}
.hero-or::before, .hero-or::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(212,175,55,0.3), transparent);
    transform: translateX(-50%);
}
.hero-or::before { top: 0; height: calc(50% - 22px); }
.hero-or::after  { bottom: 0; height: calc(50% - 22px); }
.hero-or span {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.24);
    color: var(--text-light);
    font-size: 12.5px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    letter-spacing: 0.04em;
}

.hero-microcopy {
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.2px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 10px;
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 8px;
}
.hero-microcopy > span:not(.dot-sep) { white-space: normal; }
.hero-microcopy .dot-sep { color: rgba(212,175,55,0.4); }

/* ===================================================================
   SEÇÃO: COMO FUNCIONA
   =================================================================== */
.section-how-it-works {
    background: linear-gradient(180deg, #fff 0%, var(--bg-body) 100%);
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 16%; right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.4) 20%, rgba(212,175,55,0.4) 80%, transparent 100%);
    z-index: 0;
}
.how-step {
    background: #fff;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-premium);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}
.how-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(212,175,55,0.3);
}
.how-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    margin: 0 auto 22px;
    background: var(--primary-dark);
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px rgba(212,175,55,0.4), 0 12px 24px rgba(7,11,20,0.15);
}
.how-step h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18.5px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.how-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
}
.how-cta {
    text-align: center;
    margin-top: 16px;
}

/* ===================================================================
   SEÇÃO: BENEFÍCIOS (POR QUE TELEPRESENCIAL)
   =================================================================== */
.section-online-benefits { background: #fff; }

.grid-3-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--bg-body);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: var(--accent);
    transition: width 0.5s var(--ease-out-expo);
}
.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.32);
    background: #fff;
}
.benefit-card:hover::before { width: 100%; }
.benefit-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--primary-dark);
}
.benefit-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- ÁREAS DE DESENVOLVIMENTO --- */
.section-problema { background: var(--bg-body); }

.grid-6-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card-premium {
    background: var(--bg-card);
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out-expo);
}
.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 175, 55, 0.32);
}
.card-premium:hover::before { transform: scaleX(1); }

.icon-box {
    width: 56px; height: 56px;
    background: #F8FAFC;
    color: var(--accent-deep);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out-expo);
}
.card-premium:hover .icon-box,
.benefit-card:hover .icon-box,
.how-step:hover .icon-box {
    background: var(--primary-dark);
    color: var(--accent);
    transform: scale(1.06) rotate(-3deg);
    border-color: var(--primary-dark);
}
.card-premium h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.card-premium p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===================================================================
   ESPECIALISTAS (CORPO CLÍNICO)
   =================================================================== */
.section-credibilidade { background: #FFF; }

.profissionais {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.prof-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--bg-body) 0%, #fff 100%);
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.prof-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.prof-card:hover {
    box-shadow: var(--shadow-card);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
}

.prof-avatar {
    width: 130px; height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.22);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.prof-info h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}
.prof-info p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.7;
    margin: 14px 0 22px;
}
.prof-info p strong { color: var(--primary-dark); font-weight: 600; }

.credential {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    line-height: 1.6;
}

.prof-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.tag {
    font-size: 12.5px;
    font-weight: 500;
    background: #F8FAFC;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 5px 12px;
    border-radius: 50px;
}

.prof-action { margin-top: auto; }

/* ===================================================================
   BOTÃO PADRÃO
   =================================================================== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    border: 1px solid transparent;
    line-height: 1.2;
}
.cta-btn.primary {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}
.cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s var(--ease-out-expo);
}
.cta-btn.primary:hover {
    background: var(--accent-soft);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(212, 175, 55, 0.45);
}
.cta-btn.primary:hover::before { left: 100%; }

.cta-btn.small { padding: 12px 22px; font-size: 13.5px; }
.cta-btn.large { padding: 20px 38px; font-size: 16px; }

/* ===================================================================
   DEPOIMENTOS — DARK SECTION
   =================================================================== */
.section-dark {
    background: linear-gradient(180deg, #070B14 0%, #0E1626 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(86,116,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: var(--text-muted); }

.grid-3-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    backdrop-filter: blur(10px);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(212,175,55,0.3);
    box-shadow: 0 24px 50px -16px rgba(0,0,0,0.4);
}
.quote-mark {
    position: absolute;
    top: -8px; left: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    pointer-events: none;
}
.testimonial-card .stars {
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testimonial-card p {
    color: #CBD5E1;
    font-size: 15.5px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}
.author-block {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
}
.testimonial-card .author {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 2px;
}
.testimonial-card .role {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.02em;
}

/* ===================================================================
   CTA FINAL
   =================================================================== */
.section-cta-final {
    background: var(--bg-body);
    padding: 70px 0;
}
.cta-final-box {
    background: linear-gradient(135deg, #070B14 0%, #1A2438 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(7,11,20,0.4);
}
.cta-final-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% -20%, rgba(212,175,55,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(86,116,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.cta-final-box > * { position: relative; z-index: 1; }
.cta-final-box h2 {
    font-size: 42px;
    color: #fff;
    margin: 16px 0 14px;
    font-weight: 600;
    letter-spacing: -0.5px;
}
.cta-final-box p {
    color: #CBD5E1;
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-final-box p strong { color: #fff; font-weight: 500; }
.ctas-hero {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.final-microcopy {
    font-size: 15px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    letter-spacing: 0.2px;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 760px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.final-microcopy > span:not(.dot-sep) { white-space: normal; }
.final-microcopy .dot-sep { color: rgba(255,255,255,0.32); }

/* ===================================================================
   FAQ
   =================================================================== */
.section-faq { background: #fff; }
.faq-container {
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
    background: var(--bg-body);
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
}
.faq-item:hover {
    border-color: rgba(212,175,55,0.3);
    background: #fff;
    box-shadow: var(--shadow-premium);
}
.faq-item.active {
    background: #fff;
    border-color: rgba(212,175,55,0.4);
    box-shadow: var(--shadow-premium);
}
.faq-question {
    padding: 22px 28px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: 1.4;
    user-select: none;
}
.faq-icon {
    color: var(--accent-deep);
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.3s var(--ease-out-expo);
    flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 320px;
    padding: 0 28px 24px;
}
.faq-answer p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.75;
}
.faq-answer p strong { color: var(--primary-dark); font-weight: 600; }

/* ===================================================================
   STICKY CTA — APARECE NO SCROLL
   =================================================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    background: rgba(7, 11, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212,175,55,0.25);
    z-index: 999;
    padding: 14px 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s var(--ease-luxe), opacity 0.5s ease;
    pointer-events: none;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
}
.sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.sticky-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.sticky-cta-text {
    color: #E2E8F0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.sticky-cta-text strong { color: var(--accent); font-weight: 600; }
.sticky-cta-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22C55E;
    animation: pulseDot 2.2s infinite;
    flex-shrink: 0;
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
    background: var(--primary-dark);
    color: #94A3B8;
    text-align: center;
    padding: 60px 0 80px;
    font-size: 14px;
}
.footer-logo { margin-bottom: 24px; }
.footer-logo img { height: 60px; margin: 0 auto; opacity: 0.85; }
footer p { line-height: 1.8; }
footer p strong { color: #fff; font-weight: 600; }

/* ===================================================================
   RESPONSIVO
   =================================================================== */
@media (max-width: 980px) {
    section { padding: 80px 0; }
    .section-header h2 { font-size: 36px; }

    .hero { padding: 50px 16px 70px; }
    .hero h1 { font-size: 44px; }
    .word-rotator { min-width: 360px; font-size: 0.9em; }

    .hero-trust-bar {
        gap: 16px;
        padding: 14px 20px;
    }
    .trust-num { font-size: 22px; }
    .trust-divider { height: 22px; }

    .hero-cta-block { padding: 32px 20px 28px; }
    .cta-block-title { font-size: 26px; }

    .hero-prof-cards {
        flex-direction: column;
        gap: 18px;
    }
    .hero-or {
        width: 100%;
        height: 40px;
        flex-direction: row;
    }
    .hero-or::before, .hero-or::after {
        position: absolute;
        top: 50%;
        left: auto;
        height: 1px;
        width: calc(50% - 30px);
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        transform: translateY(-50%);
    }
    .hero-or::before { left: 0; }
    .hero-or::after  { right: 0; }

    .grid-3-benefits,
    .grid-6-cards,
    .how-steps,
    .grid-3-cards { grid-template-columns: 1fr; }
    .how-steps::before { display: none; }

    .profissionais { grid-template-columns: 1fr; }
    .prof-card { padding: 32px 24px; }

    .cta-final-box { padding: 48px 24px; }
    .cta-final-box h2 { font-size: 32px; }
    .ctas-hero { flex-direction: column; }
    .ctas-hero .cta-btn { width: 100%; justify-content: center; }

    .sticky-hide-mobile { display: none; }
    .sticky-cta-text { font-size: 13px; }
}

@media (max-width: 640px) {
    .announce-bar { font-size: 12px; padding: 8px 0; }
    .announce-sep { display: none; }

    header { padding: 10px 0; }
    .logo span { display: none; }
    .cta-header {
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero h1 { font-size: 36px; }
    .hero h1 .hero-h1-italic { font-size: 0.7em; }
    .word-rotator { min-width: 270px; font-size: 0.88em; }
    .hero .subtitle { font-size: 17px; }

    .final-microcopy { font-size: 13px !important; gap: 8px 12px; }

    .section-header h2 { font-size: 28px; }
    .cta-block-title { font-size: 22px; }
    .cta-final-box h2 { font-size: 26px; }

    .trust-divider { display: none; }
    .hero-trust-bar {
        flex-direction: column;
        gap: 14px;
        border-radius: 24px;
    }

    .hero-prof-card { padding: 28px 22px 24px; }
    .hero-prof-name { font-size: 21px; }
}

/* Reduce motion respeito */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   V5 ADDITIONS — Conversion-focused components
   =================================================================== */

button.cta-header,
button.hero-prof-card,
button.card-premium,
button.footer-link {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    color: inherit;
    text-align: left;
}
button.cta-header { text-align: center; }

.hero-primary-cta { margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cta-btn.xlarge {
    padding: 22px 42px; font-size: 17px; font-weight: 600; letter-spacing: 0.01em;
    box-shadow: 0 16px 40px -12px rgba(212,175,55,0.55);
    animation: pulsePremium 3.6s ease-in-out infinite;
}
.cta-btn.xlarge:hover { animation: none; }
.hero-primary-cta-sub { font-size: 13px; color: #94A3B8; letter-spacing: 0.02em; }

.hero-choose-sublabel {
    max-width: 640px; margin: 0 auto 22px; font-size: 13.5px; color: var(--text-light);
    text-align: center; line-height: 1.6; padding: 12px 18px;
    background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.15); border-radius: 14px;
}
.hero-choose-sublabel strong { color: var(--primary-dark); font-weight: 600; }
.info-icon { color: var(--accent-deep); font-size: 14px; margin-right: 6px; }

button.card-premium { display: block; width: 100%; text-align: left; }
.card-premium .card-cta {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
    font-size: 13.5px; font-weight: 600; color: var(--accent-deep);
    opacity: 0; transform: translateY(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.card-premium:hover .card-cta { opacity: 1; transform: translateY(0); }
@media (hover: none) { .card-premium .card-cta { opacity: 1; transform: none; } }

.prof-credentials-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
    margin: 22px 0; padding: 18px;
    background: rgba(212,175,55,0.04); border: 1px solid rgba(212,175,55,0.18);
    border-radius: var(--radius-md);
}
.cred-item { display: flex; flex-direction: column; gap: 4px; }
.cred-label { font-size: 10.5px; font-weight: 700; color: var(--accent-deep); text-transform: uppercase; letter-spacing: 0.12em; }
.cred-value { font-size: 13.5px; color: var(--primary-dark); font-weight: 500; line-height: 1.45; }
.prof-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 22px; }
.prof-link {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
    color: var(--text-light); padding: 6px 12px; border-radius: 50px;
    border: 1px solid var(--border-subtle); background: #fff;
    transition: all 0.25s var(--ease-out-expo);
}
.prof-link:hover { color: var(--accent-deep); border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.04); }

.trust-seals { margin-top: 64px; text-align: center; padding-top: 48px; border-top: 1px solid var(--border-subtle); }
.trust-seals-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 24px; }
.seals-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.seal {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 18px 12px 12px; background: #fff;
    border: 1px solid var(--border-subtle); border-radius: 14px;
    transition: all 0.3s var(--ease-out-expo);
}
.seal:hover { border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow-premium); transform: translateY(-2px); }
.seal-mark {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-dark); color: var(--accent);
    font-family: 'Playfair Display', serif; font-weight: 700;
    font-size: 14px; letter-spacing: 0.5px; border-radius: 10px; flex-shrink: 0;
}
.seal span { font-size: 12px; color: var(--text-light); font-weight: 500; line-height: 1.45; text-align: left; }

.t-rating { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 10px; }
.t-rating .stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.t-source { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.t-quote { color: #CBD5E1; font-size: 16px; line-height: 1.7; font-style: italic; margin-bottom: 28px; min-height: 110px; }
.t-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); }
.t-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--avatar-bg, linear-gradient(135deg, #3b4d6b, #1e293b));
    color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    border: 2px solid rgba(212,175,55,0.5);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.t-author-info { display: flex; flex-direction: column; gap: 2px; }
.t-name { color: #fff; font-weight: 600; font-size: 15px; }
.t-role { color: var(--text-muted); font-size: 12.5px; letter-spacing: 0.02em; }

.wa-fab {
    position: fixed; bottom: 84px; right: 22px; z-index: 998;
    background: #25D366; color: #fff;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 18px 14px 14px; border-radius: 100px;
    box-shadow: 0 16px 40px -8px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s var(--ease-out-expo);
    text-decoration: none; font-weight: 600; font-size: 14px;
}
.wa-fab svg { flex-shrink: 0; }
.wa-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 50px -10px rgba(37,211,102,0.65), 0 6px 16px rgba(0,0,0,0.25); }
.wa-fab::before {
    content: ''; position: absolute; inset: -4px; border-radius: 100px;
    border: 2px solid rgba(37,211,102,0.4);
    animation: pulseDot 2.4s infinite; pointer-events: none;
}
.wa-fab-label { white-space: nowrap; }
@media (max-width: 640px) { .wa-fab { bottom: 78px; right: 14px; padding: 12px; } .wa-fab-label { display: none; } }

.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(7,11,20,0.78);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 60px 20px; overflow-y: auto;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease-out-expo);
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal {
    background: #fff; border-radius: var(--radius-xl);
    width: 100%; max-width: 720px; position: relative;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s var(--ease-luxe);
    margin-bottom: 40px;
}
.modal.modal-narrow { max-width: 560px; }
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute; top: 18px; right: 18px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(7,11,20,0.06); border: none;
    color: var(--primary-dark); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease; z-index: 2;
}
.modal-close:hover { background: rgba(7,11,20,0.12); transform: rotate(90deg); }
.modal-header {
    padding: 44px 44px 24px;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(180deg, rgba(212,175,55,0.05), transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.modal-eyebrow {
    display: inline-block; font-size: 11px; font-weight: 700;
    color: var(--accent-deep); text-transform: uppercase; letter-spacing: 0.18em;
    padding: 5px 12px; background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25); border-radius: 50px;
    margin-bottom: 14px;
}
.modal-header h2 { font-size: 30px; color: var(--primary-dark); font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.modal-prof-label { color: var(--accent-deep); font-style: italic; }
.modal-sub { color: var(--text-light); font-size: 15px; line-height: 1.6; }

.modal-stepper { display: flex; align-items: center; gap: 8px; margin-top: 22px; }
.stepper-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--text-muted); transition: color 0.3s ease; }
.stepper-item span {
    width: 24px; height: 24px; border-radius: 50%;
    background: #F1F5F9; color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 11.5px; transition: all 0.3s ease;
}
.stepper-item.is-active { color: var(--primary-dark); }
.stepper-item.is-active span { background: var(--accent); color: var(--primary-dark); }
.stepper-item.is-done span { background: var(--primary-dark); color: var(--accent); }
.stepper-line { flex: 1; height: 1px; background: var(--border-subtle); }

.modal-form { padding: 32px 44px 44px; }
.form-step { display: none; border: none; padding: 0; margin: 0; }
.form-step.is-active { display: block; }
.form-step-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--primary-dark); margin-bottom: 18px; padding: 0; }
.form-row { margin-bottom: 18px; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-2col .form-row { margin-bottom: 0; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13.5px; font-weight: 600; color: var(--primary-dark); display: block; margin-bottom: 4px; }
.form-label em { color: #DC2626; font-style: normal; font-weight: 600; margin-left: 2px; }
.form-helper { display: block; font-size: 12.5px; color: var(--text-light); line-height: 1.5; margin-bottom: 8px; }
.form-field input, .form-field textarea {
    font-family: inherit; font-size: 15px;
    color: var(--primary-dark); padding: 13px 16px;
    border: 1.5px solid var(--border-subtle);
    background: var(--bg-body); border-radius: 12px;
    transition: all 0.25s var(--ease-out-expo); width: 100%;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(212,175,55,0.12); }
.form-field input.is-invalid, .form-field textarea.is-invalid { border-color: #DC2626; background: #FEF2F2; }
.form-field textarea { resize: vertical; min-height: 96px; }

.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.radio-card {
    display: grid; grid-template-columns: 24px 1fr auto;
    align-items: center; gap: 14px; padding: 14px 18px;
    background: var(--bg-body); border: 1.5px solid var(--border-subtle);
    border-radius: 14px; cursor: pointer;
    transition: all 0.25s var(--ease-out-expo);
    position: relative;
}
.radio-card:hover { border-color: rgba(212,175,55,0.4); background: #fff; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card .radio-dot {
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid var(--text-muted); position: relative;
    transition: all 0.25s ease; flex-shrink: 0;
}
.radio-card .radio-dot::after {
    content: ''; position: absolute; inset: 4px; border-radius: 50%;
    background: var(--accent); transform: scale(0);
    transition: transform 0.2s ease;
}
.radio-card input:checked ~ .radio-dot { border-color: var(--accent); }
.radio-card input:checked ~ .radio-dot::after { transform: scale(1); }
.radio-card:has(input:checked) { border-color: var(--accent); background: rgba(212,175,55,0.06); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
.radio-label { font-size: 15px; font-weight: 600; color: var(--primary-dark); }
.radio-route { font-size: 12px; color: var(--text-light); font-style: italic; }

.radio-group-pill { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill { cursor: pointer; position: relative; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span {
    display: inline-block; padding: 9px 16px;
    background: var(--bg-body); border: 1.5px solid var(--border-subtle);
    border-radius: 50px; font-size: 13.5px; font-weight: 500;
    color: var(--text-main); transition: all 0.2s ease;
}
.radio-pill:hover span { border-color: rgba(212,175,55,0.45); }
.radio-pill input:checked + span { background: var(--primary-dark); color: var(--accent); border-color: var(--primary-dark); }

.form-checkbox {
    display: grid; grid-template-columns: 22px 1fr; gap: 12px;
    align-items: flex-start; cursor: pointer;
    padding: 14px 16px; background: var(--bg-body);
    border: 1.5px solid var(--border-subtle);
    border-radius: 12px; font-size: 13.5px;
    color: var(--text-main); line-height: 1.55;
    position: relative;
}
.form-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.form-checkbox .check-mark {
    width: 22px; height: 22px; border-radius: 6px;
    border: 2px solid var(--text-muted); background: #fff;
    position: relative; flex-shrink: 0; margin-top: 1px;
    transition: all 0.2s ease;
}
.form-checkbox .check-mark::after {
    content: ''; position: absolute;
    left: 6px; top: 2px; width: 5px; height: 10px;
    border: solid #fff; border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}
.form-checkbox input:checked + .check-mark { background: var(--accent); border-color: var(--accent); }
.form-checkbox input:checked + .check-mark::after { transform: rotate(45deg) scale(1); }
.form-checkbox strong { color: var(--primary-dark); font-weight: 600; }

.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border-subtle); }
.cta-btn.ghost { background: transparent; color: var(--text-light); border: 1.5px solid var(--border-subtle); box-shadow: none; }
.cta-btn.ghost:hover { border-color: var(--text-light); color: var(--primary-dark); background: var(--bg-body); }

.success-block { text-align: center; padding: 22px 0; }
.success-icon {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 36px -8px rgba(34,197,94,0.5);
    animation: pulsePremium 2.4s ease-in-out infinite;
}
.success-block h3 { font-size: 28px; font-weight: 600; color: var(--primary-dark); margin-bottom: 12px; }
.success-prof { font-size: 15px; color: var(--text-light); margin-bottom: 8px; }
.success-prof strong { color: var(--accent-deep); }
.success-text { font-size: 15px; color: var(--text-light); line-height: 1.65; margin-bottom: 28px; max-width: 460px; margin-left: auto; margin-right: auto; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.success-mini { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; }

.modal-body-text { padding: 24px 44px 44px; }
.modal-body-text p { color: var(--text-main); font-size: 14.5px; line-height: 1.7; margin-bottom: 14px; }
.modal-body-text strong { color: var(--primary-dark); font-weight: 600; }
.modal-body-text a { color: var(--accent-deep); text-decoration: underline; }

footer { padding: 56px 0 30px; text-align: left; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 9px; font-size: 13.5px; line-height: 1.6; color: #94A3B8; }
.footer-col a, .footer-link { color: #94A3B8; transition: color 0.2s ease; background: none; border: none; padding: 0; font-family: inherit; font-size: inherit; cursor: pointer; text-align: left; }
.footer-col a:hover, .footer-link:hover { color: var(--accent); }
.footer-col-brand .footer-logo { margin-bottom: 16px; }
.footer-col-brand .footer-logo img { height: 56px; opacity: 0.9; margin: 0; }
.footer-name { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; font-weight: 600; margin-bottom: 12px; line-height: 1.25; }
.footer-tagline { font-size: 13.5px; color: #94A3B8; line-height: 1.6; max-width: 280px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 18px; }
.footer-bottom p { font-size: 12.5px; color: #64748B; margin: 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08); color: #94A3B8;
    transition: all 0.25s ease;
}
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); transform: translateY(-2px); }

@media (max-width: 980px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .prof-credentials-grid { grid-template-columns: 1fr; }
    .modal-header { padding: 36px 24px 20px; }
    .modal-form { padding: 24px; }
    .modal-body-text { padding: 20px 24px 36px; }
    .modal-header h2 { font-size: 24px; }
    .seals-row { gap: 14px; }
    .form-row-2col { grid-template-columns: 1fr; }
    .modal-stepper .stepper-item:not(.is-active) { display: none; }
    .modal-stepper .stepper-line { display: none; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cta-btn.xlarge { padding: 18px 28px; font-size: 15px; }
    .modal-backdrop { padding: 20px 12px; }
    .modal { border-radius: 20px; }
    .modal-header { padding: 32px 20px 18px; border-radius: 20px 20px 0 0; }
    .modal-header h2 { font-size: 22px; }
    .modal-form { padding: 20px; }
    .form-actions { flex-direction: column-reverse; }
    .form-actions .cta-btn { width: 100%; justify-content: center; }
    .seal { padding: 10px 14px 10px 10px; }
    .seal-mark { width: 38px; height: 38px; font-size: 12px; }
    .seal span { font-size: 11px; }
    .t-quote { min-height: auto; }
}


/* Validation flash + group invalid */
@keyframes shakeInvalid {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}
.is-flashing { animation: shakeInvalid 0.55s ease; }
.is-invalid-group {
    border-radius: 14px;
    box-shadow: 0 0 0 2px #DC2626, 0 0 0 5px rgba(220,38,38,0.12) !important;
}
.form-row.is-invalid-group { padding: 6px; margin-left: -6px; margin-right: -6px; }


/* WhatsApp destaque — bloco logo após envio do formulário */
.wa-success-box {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1.5px solid #86efac;
    border-radius: 18px;
    padding: 26px 28px;
    margin: 22px 0 0;
    text-align: center;
}
.wa-success-msg {
    font-size: 15px;
    line-height: 1.6;
    color: #14532d;
    margin-bottom: 18px;
}
.wa-success-msg strong {
    color: #166534;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    font-size: 15.5px;
}
.wa-success-btn {
    background: #16a34a !important;
    box-shadow: 0 8px 24px rgba(22,163,74,0.3) !important;
    width: 100%;
    justify-content: center;
    font-size: 16px !important;
    gap: 10px;
}
.wa-success-btn:hover {
    background: #15803d !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(22,163,74,0.45) !important;
}
@media (max-width: 600px) {
    .wa-success-box { padding: 20px 18px; }
}

/* Pré-agendamento box (success step) */
.pre-agendamento-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.10), rgba(212,175,55,0.04));
    border: 1.5px solid rgba(212,175,55,0.45);
    border-radius: 18px;
    padding: 26px 28px;
    margin: 28px 0 22px;
    text-align: left;
}
.pre-agendamento-box .pa-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B45309;
    margin-bottom: 8px;
}
.pre-agendamento-box h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.25;
    color: var(--text-strong);
    margin: 0 0 10px;
}
.pre-agendamento-box p {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-default);
    margin: 0 0 16px;
}
.pre-agendamento-box .cta-btn {
    width: 100%;
    justify-content: center;
}
@media (max-width: 600px) {
    .pre-agendamento-box { padding: 22px 20px; }
    .pre-agendamento-box h4 { font-size: 19px; }
}
