/* =========================================================================
   style.css — estilos da página da Lucélia
   ========================================================================= */

:root {
    /* ---------- CORES BRUTAS ---------- */
    --roxo:          #801F82;   /* PRIMÁRIO — roxo da marca (do PDF) */
    --roxo-escuro:   #5A1560;   /* hover / profundo */
    --lilas:         #A866BE;   /* lilás — acento claro */
    --lilas-claro:   #F0D0F5;   /* tinte muito claro */
    --salvia:        #727D5A;   /* SECUNDÁRIO — verde sálvia (da ref/PDF) */
    --salvia-escuro: #5E6849;
    --slate:         #28374E;   /* tinta forte / títulos */
    --slate-2:       #35445B;   /* tinta texto contorno */
    --bluegray:      #798E9D;   /* secundário / borda */
    --cream:         #FAF9F8;   /* fundo */
    --cream-2:       #F1ECE3;   /* superfície de card */
    --brown:         #483C33;   /* acento terroso */
    --olive:         #404733;
    --warmgray:      #5E5D5A;
    --white:         #FFFFFF;
    --line:          #E4DDD1;

    /* ---------- PAPÉIS SEMÂNTICOS ---------- */
    --c-primary:     var(--roxo);
    --c-secondary:   var(--salvia);
    --c-accent:      var(--bluegray);
    --c-bg:          var(--cream);
    --c-surface:     var(--cream-2);
    --c-text:        var(--slate);
    --c-muted:       #66707E;
    --c-success:     #5E7D52;
    --c-warning:     #B0894F;
    --c-error:       #A6493F;
    --c-info:        var(--bluegray);

    /* ---------- TIPOGRAFIA ---------- */
    --font: 'Onest', system-ui, -apple-system, Segoe UI, sans-serif;

    /* ---------- RAIOS (da referência) ---------- */
    --r-btn:   8px;     /* botão primário */
    --r-btn-2: 4px;     /* botão contorno */
    --r-input: 10px;
    --r-card:  22px;
    --r-lg:    32px;
    --r-pill:  999px;

    /* ---------- SOMBRAS ---------- */
    --sh-sm:   0 6px 18px -10px rgba(40,55,78,.35);
    --sh-card: 0 30px 60px -34px rgba(40,55,78,.45);
    --sh-soft: 0 22px 50px -30px rgba(40,55,78,.40);
    --glow-brand: 0 0 0 1px rgba(128,31,130,.18), 0 24px 60px -18px rgba(128,31,130,.55);

    /* ---------- MOVIMENTO ---------- */
    --t:   .45s cubic-bezier(.2,.7,.2,1);
    --t-slow: .9s cubic-bezier(.2,.7,.2,1);

    /* ---------- LAYOUT ---------- */
    --container: 1240px;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--salvia); color: #fff; }

body {
    font-family: var(--font);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Textura de grão global (humaniza) */
body::after {
    content: ""; position: fixed; inset: 0; z-index: 9000; pointer-events: none;
    opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================================
   ATMOSFERA / BACKGROUNDS ANIMADOS (reutilizáveis em todas as dobras)
   ========================================================================= */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.aurora .blob {
    position: absolute; border-radius: 50%;
    filter: blur(60px); opacity: .55;
    will-change: transform;
}
.blob.sage  { width: 46rem; height: 46rem; background: radial-gradient(circle, #9aa57e 0%, rgba(114,125,90,0) 70%); animation: drift1 22s ease-in-out infinite; }
.blob.blue  { width: 40rem; height: 40rem; background: radial-gradient(circle, #9fb4c2 0%, rgba(121,142,157,0) 70%); animation: drift2 26s ease-in-out infinite; }
.blob.cream { width: 34rem; height: 34rem; background: radial-gradient(circle, #efe2cf 0%, rgba(239,226,207,0) 70%); animation: drift3 30s ease-in-out infinite; }
.blob.roxo  { width: 42rem; height: 42rem; background: radial-gradient(circle, #c47fce 0%, rgba(128,31,130,0) 70%); animation: drift2 24s ease-in-out infinite; }

@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(6rem,-4rem) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1.05); } 50% { transform: translate(-7rem,5rem) scale(.92); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4rem,6rem) scale(1.15); } }

/* Textura de padrão (da referência: pattern.webp) por cima do fundo */
.pattern-layer {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: url("../images/pattern.webp") center/520px repeat;
    opacity: .05; mix-blend-mode: multiply;
}

/* =========================================================================
   TIPOGRAFIA — ESCALA (só Onest)
   ========================================================================= */
h1,h2,h3,h4,h5,h6 { color: var(--slate); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.h1, h1 { font-size: clamp(1.8rem, 3.75vw, 3.75rem); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; }
.h2, h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); font-weight: 800; line-height: 1.06; letter-spacing: -.03em; }
.h3, h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.15; }
.h4, h4 { font-size: 1.45rem; font-weight: 700; line-height: 1.2; }
.h5, h5 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.h6, h6 { font-size: .82rem; font-weight: 700; line-height: 1.4; letter-spacing: .18em; text-transform: uppercase; color: var(--roxo); }
.body-lg { font-size: 1.2rem; line-height: 1.7; font-weight: 400; }
.body    { font-size: 1rem; line-height: 1.65; }
.body-sm { font-size: .9rem; line-height: 1.6; }
.caption { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); }
.helper  { font-size: .82rem; color: var(--c-muted); }
.muted   { color: var(--c-muted); }
strong, b { font-weight: 700; color: var(--slate); }

/* Eyebrow (rótulo de seção) */
.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--roxo); }
.eyebrow::before { content: ""; width: 2rem; height: 2px; background: currentColor; border-radius: 2px; }

/* =========================================================================
   LAYOUT E ANCORAGEM
   ========================================================================= */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 2.5rem); position: relative; z-index: 1; }
section.block { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }
section.block + section.block { border-top: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 3.5rem; }
.section-head h2 { margin: .8rem 0 .6rem; }
.grid { display: grid; gap: 1.5rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ 
    .cols-2 { grid-template-columns: 1fr; }
    .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 620px){ 
    .cols-3, .cols-4 { grid-template-columns: 1fr; } 
}

/* =========================================================================
   BARRA DE URGÊNCIA (URGENCY BANNER)
   ========================================================================= */
.urgency-banner {
    background: var(--roxo);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    position: relative;
    z-index: 150;
}
.urgency-banner a {
    text-decoration: underline;
    font-weight: 600;
    margin-left: 0.3rem;
    transition: opacity var(--t);
}
.urgency-banner a:hover {
    opacity: 0.85;
}

/* =========================================================================
   FLOATING NAVBAR (Scroll com blur e pílula)
   ========================================================================= */
.floating-nav {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 90%;
    max-width: 960px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.4s var(--t), opacity 0.4s var(--t);
}
.floating-nav.scrolled {
    top: 20px;
    opacity: 1;
    pointer-events: auto;
}
.floating-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(246, 245, 243, 0.85); /* Fundo claro da referencia */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    padding: 0.6rem 2rem 0.6rem 0.8rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.floating-nav .brand-logo img {
    height: 48px;
    width: auto;
}
.floating-nav .links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}
.floating-nav .links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warmgray);
    transition: color var(--t);
}
.floating-nav .links a:hover {
    color: var(--roxo);
}
@media (max-width: 860px) {
    .floating-nav { width: auto; max-width: max-content; }
    .floating-nav .links { display: none; }
    .floating-nav .nav-inner { padding: 0.4rem 1.2rem; justify-content: center; }
    .floating-nav .brand-logo img { height: 40px; }
}

/* =========================================================================
   BOTÕES — EXATAMENTE COMO A REFERÊNCIA (.elementor-button)
   ========================================================================= */
.elementor-button {
    display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
    background-color: #801F82;            /* primário — roxo da marca (PDF) */
    color: #fff; fill: #fff;
    font-family: "Onest", sans-serif; font-size: 1.15rem; font-weight: 500; line-height: 1;
    border: 0; border-radius: 8px;        /* radius da ref */
    padding: 20px 50px;                   /* padding da ref */
    text-decoration: none; cursor: pointer;
    box-shadow: 0 4px 14px rgba(128,31,130,0.15);
}
.elementor-button.elementor-size-sm { font-size: 1.05rem; padding: 18px 36px; }
.elementor-button-content-wrapper { display: inline-flex; align-items: center; gap: .6rem; }

/* Animação de hover da referência: SHRINK (scale .9) */
.elementor-animation-shrink { transition: transform .3s, box-shadow .3s, background-color .3s; }
.elementor-animation-shrink:hover,
.elementor-animation-shrink:focus,
.elementor-animation-shrink:active { transform: scale(.9); }

/* Realce extra (glow) — fora da caixa, mantém a base idêntica */
.elementor-button.is-glow:hover { box-shadow: var(--glow-brand); background-color: var(--roxo-escuro); }
@media (max-width: 980px) {
    .elementor-button { 
        min-height: 48px; 
        padding: 16px 24px; /* Reduz padding lateral para caber o texto */
        white-space: nowrap; /* Impede a quebra de linha */
    } 
    .elementor-button.is-glow { animation: soft-pulse-wa 2.5s infinite ease-in-out; }
    @keyframes soft-pulse-wa {
        0%, 100% { box-shadow: 0 4px 14px rgba(128,31,130,0.15); }
        50% { box-shadow: 0 0 0 1px rgba(128,31,130,.18), 0 12px 30px -10px rgba(128,31,130,.4); }
    }
}

/* Variação CONTORNO — mesma forma do 2º botão da ref (radius 4px), em roxo */
.elementor-button.is-outline {
    background-color: transparent; color: #801F82; fill: #801F82;
    border: 1px solid #801F82; border-radius: 4px; padding: 18px 40px;
    box-shadow: none;
}
.elementor-button.is-outline:hover { background-color: #801F82; color: #fff; border-color: #801F82; }

/* Botão de texto / link com seta */
.btn-text { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--roxo); cursor: pointer; }
.btn-text .arw { transition: transform var(--t); }
.btn-text:hover .arw { transform: translateX(6px); }

/* =========================================================================
   BADGES / PILLS / TAGS
   ========================================================================= */
.badge { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem .85rem; font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border-radius: var(--r-pill); background: var(--cream-2); color: var(--brown); border: 1px solid var(--line); }
.badge.sage  { background: rgba(114,125,90,.14); color: var(--salvia-escuro); border-color: rgba(114,125,90,.3); }
.badge.slate { background: rgba(53,68,91,.1); color: var(--slate-2); border-color: rgba(53,68,91,.25); }
.badge.roxo { background: rgba(128,31,130,.1); color: var(--roxo); border-color: rgba(128,31,130,.28); }
.badge.solid { background: var(--roxo); color: #fff; border-color: transparent; }
.badge .dot { width: .5rem; height: .5rem; border-radius: 50%; background: currentColor; }
.badge .dot.live { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 currentColor; opacity:1;} 50% { box-shadow: 0 0 0 5px transparent; opacity:.6;} }

/* =========================================================================
   CARDS
   ========================================================================= */
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: 2rem; box-shadow: var(--sh-soft); transition: transform var(--t), box-shadow var(--t); position: relative; overflow: hidden; z-index: 1; }
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-card); }
.card .ico-badge { width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 14px; background: rgba(128,31,130,.12); color: var(--roxo); margin-bottom: 1.1rem; }

/* Card de evento */
.card-evento::before { content:""; position:absolute; inset:0; background: radial-gradient(24rem 16rem at 120% -20%, rgba(128,31,130,.14), transparent 60%); pointer-events:none; }
.card-evento h3 { margin: .8rem 0; max-width: 22ch; }
.card-evento .detalhes { display:flex; flex-wrap:wrap; gap:.4rem 1.4rem; color: var(--c-muted); font-size:.92rem; margin-bottom: 1.2rem; }
.card-evento .detalhes b { color: var(--slate); }
.card-evento ul { list-style:none; display:grid; gap:.55rem; margin: 1.2rem 0; }
.card-evento li { position:relative; padding-left:1.5rem; color:var(--c-muted); }
.card-evento li::before { content:""; position:absolute; left:0; top:.6em; width:.7rem; height:2px; background:var(--roxo); }
.card-evento .rodape { display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; margin-top:1.4rem; padding-top:1.4rem; border-top:1px solid var(--line); }
.card-evento .preco { font-size:1.7rem; font-weight:800; color:var(--roxo-escuro); letter-spacing:-.02em; }
.card-evento .preco span { font-size:.82rem; font-weight:500; color:var(--c-muted); }

/* Card de jornada (numerado) */
.card-jornada .num { font-size: 3.2rem; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--lilas); margin-bottom: .6rem; transition: color var(--t), -webkit-text-stroke-color var(--t); }
.card-jornada:hover .num { color: var(--roxo); -webkit-text-stroke-color: var(--roxo); }
.card-jornada .rotulo { color: var(--roxo-escuro); font-weight: 600; font-size: .9rem; display:block; margin-bottom:.5rem; text-transform: uppercase; letter-spacing: 0.05em;}
.card-jornada p { color: var(--c-muted); margin: .4rem 0 1.2rem; }

/* Card de depoimento */
.card-depo { background: var(--cream-2); }
.card-depo .stars { color: var(--c-warning); letter-spacing: .15em; margin-bottom: .8rem; }
.card-depo blockquote { font-size: 1.1rem; color: var(--slate); margin-bottom: 1.2rem; font-style: italic; }
.card-depo .quem b { color: var(--salvia-escuro); }
.card-depo .quem { font-size: .9rem; color: var(--c-muted); }

/* =========================================================================
   INPUTS / FORM
   ========================================================================= */
.field { margin-bottom: 1.3rem; }
.field label { display:block; font-size:.82rem; font-weight:600; color:var(--slate); margin-bottom:.5rem; }
.input, .field input, .field textarea, .field select {
    width:100%; padding: .95rem 1.1rem; font:inherit; color:var(--slate);
    background:var(--white); border:1.5px solid var(--line); border-radius:var(--r-input);
    transition: border-color var(--t), box-shadow var(--t);
}
.field input::placeholder, .field textarea::placeholder { color:#A7A299; }
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color:var(--roxo); box-shadow:0 0 0 4px rgba(128,31,130,.14); }
.check { display:flex; align-items:center; gap:.6rem; cursor:pointer; }
.check input { width:1.15rem; height:1.15rem; accent-color: var(--roxo); }

/* =========================================================================
   MODAL
   ========================================================================= */
.modal-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 1.5rem; background: rgba(40,55,78,.45); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity var(--t); }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--white); border-radius: var(--r-lg); padding: 2.4rem; max-width: 460px; width: 100%; box-shadow: var(--sh-card); transform: translateY(18px) scale(.97); transition: transform var(--t); position: relative; }
.modal-overlay.open .modal { transform: none; }
.modal .close { position: absolute; top: 1rem; right: 1rem; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center; color: var(--c-muted); transition: background var(--t); }
.modal .close:hover { background: var(--cream-2); }
@media (max-width: 480px) {
    .modal { padding: 1.5rem; }
    .modal .close { top: 0.5rem; right: 0.5rem; }
}

/* =========================================================================
   ÍCONES
   ========================================================================= */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================================
   ANIMAÇÕES DE SURGIMENTO (reveal) — em TODAS as dobras
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@keyframes floatY { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
@keyframes spinSlow { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity:1; transform:none; transition:none; }
    .blob, .hero-photo, [class*="anim"] { animation: none !important; }
}

/* =========================================================================
   HERO (PRIMEIRA DOBRA) — layout criativo, expert.png harmônica
   ========================================================================= */
.hero { position: relative; min-height: 90vh; max-height: 900px; display: flex; align-items: center; padding: 6rem 0 4rem; overflow: hidden; }
.hero .aurora .blob.sage  { top: -14rem; left: -10rem; }
.hero .aurora .blob.blue  { bottom: -16rem; right: -8rem; }
.hero .aurora .blob.cream { top: 20%; right: 25%; }
.hero .aurora .blob.roxo  { top: 26%; left: 28%; opacity:.32; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
@media (max-width: 980px){ 
    .hero { min-height: 100vh; max-height: none; padding: 4rem 0; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; } 
}

.hero-badge { display: inline-flex; align-items: center; gap: .6rem; padding: .5rem .9rem .5rem .6rem; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: var(--r-pill); box-shadow: var(--sh-sm); font-size: .85rem; font-weight: 600; color: var(--slate); backdrop-filter: blur(8px); }
.hero-badge .stars { color: var(--c-warning); letter-spacing: .1em; }
.hero h1 { margin: 1.4rem 0 0; }
.hero h1 .accent { color: var(--roxo); position: relative; }
.hero h1 .accent::after { content:""; position:absolute; left:0; right:0; bottom:.08em; height:.16em; background: rgba(128,31,130,.25); border-radius: 4px; transform: scaleX(0); transform-origin:left; animation: underline 1s ease 1.1s forwards; }
@keyframes underline { to { transform: scaleX(1); } }
.hero p.lead { margin: 1.6rem 0 0; max-width: 52ch; color: var(--c-muted); }
@media (max-width:980px){ .hero p.lead { margin-inline: auto; } }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
@media (max-width:980px){ .hero .cta-row { justify-content: center; } }
.hero .trust { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.4rem; color: var(--c-muted); font-size: .85rem; flex-wrap: wrap; }
@media (max-width:980px){ .hero .trust { justify-content:center; } }
.hero .trust .sep { width: 1px; height: 1.4rem; background: var(--line); }

/* Coluna da imagem da Expert — Card Clean */
.hero-figure { position: relative; justify-self: center; z-index: 1; width: 100%; max-width: 560px; }
.hero-photo-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.06); width: 100%; margin: 0 auto; display: flex; flex-direction: column; }
.card-img-wrapper { width: 100%; aspect-ratio: 4/5; background: #e5e5e5; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.card-info-wrapper { padding: 1.4rem; text-align: center; background: var(--white); flex-shrink: 0; }
.card-info-wrapper b { display: block; font-size: 1.25rem; color: var(--slate); margin-bottom: 0.2rem; font-weight: 700; }
.card-info-wrapper span { display: block; font-size: 0.85rem; color: #777; font-weight: 500; }
@media (max-width: 980px) {
    .hero-figure { max-width: 400px; }
}
@media (max-width: 480px) {
    .hero-figure { max-width: 320px; }
}

/* Botões do Hero inspirados no anexo */
.btn-bluegray { background-color: #6a829a !important; color: #fff !important; box-shadow: none !important; }
.btn-bluegray:hover { background-color: #556c82 !important; }
.btn-outline-bluegray { background-color: transparent !important; color: #6a829a !important; border-color: #6a829a !important; }
.btn-outline-bluegray:hover { background-color: rgba(106, 130, 154, 0.05) !important; color: #556c82 !important; }

/* Indicador de scroll */
.scroll-ind { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); display: grid; place-items: center; gap: .5rem; color: var(--c-muted); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; animation: floatY 2.4s ease-in-out infinite; z-index: 1; }
.scroll-ind .mouse { width: 22px; height: 36px; border: 2px solid var(--bluegray); border-radius: 12px; position: relative; }
.scroll-ind .mouse::after { content:""; position:absolute; top:6px; left:50%; transform:translateX(-50%); width:4px; height:6px; background:var(--bluegray); border-radius:2px; animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0%{opacity:1; top:6px;} 60%{opacity:0; top:16px;} 100%{opacity:0;} }

/* Surgimento sequencial do hero ao carregar */
.hero .enter { opacity: 0; animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes rise { from { opacity:0; transform: translateY(28px);} to { opacity:1; transform:none;} }
.hero .enter.d1 { animation-delay:.1s; } 
.hero .enter.d2 { animation-delay:.24s; }
.hero .enter.d3 { animation-delay:.38s; } 
.hero .enter.d4 { animation-delay:.52s; }
.hero .enter.d5 { animation-delay:.66s; }

/* =========================================================================
   DIVISOR ONDULADO (atomik-divisor style — transição orgânica entre seções)
   ========================================================================= */
.wave-divider {
    display: block;
    line-height: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* =========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--t), box-shadow var(--t), background-color var(--t);
    animation: float-wa 3s ease-in-out infinite;
}
.floating-whatsapp svg {
    width: 34px;
    height: 34px;
}
.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.08);
    background-color: #128C7E;
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.5);
    animation-play-state: paused;
}
@keyframes float-wa {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 54px;
        height: 54px;
    }
    .floating-whatsapp svg {
        width: 30px;
        height: 30px;
    }
}
.wave-divider.hero-intro {
    background: var(--white);
    margin-top: -1px;
}
@media (max-width: 620px) {
    .wave-divider svg { height: 64px; }
}

/* =========================================================================
   SEÇÃO INTRO (MANIFESTO)
   ========================================================================= */
.section-intro {
    text-align: center;
    background-color: var(--white);
    border-top: none !important;
}
.intro-content {
    max-width: 800px;
    margin: 0 auto;
}
.intro-quote {
    font-size: clamp(1.45rem, 3.2vw, 2.1rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--roxo);
    font-style: italic;
    margin-bottom: 2rem;
}
.intro-line {
    width: 80px;
    height: 2px;
    background: var(--lilas);
    margin: 2rem auto;
    border-radius: 2px;
}
.intro-description {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--c-muted);
    line-height: 1.75;
}

/* =========================================================================
   SEÇÃO PALESTRA DESTAQUE
   ========================================================================= */
.section-palestra {
    background-color: var(--roxo);
    border-radius: 60px;
    margin: 2rem clamp(1.2rem, 5vw, 2.5rem);
    padding: clamp(5rem, 9vw, 7rem) 0;
}
@media (max-width: 768px) {
    .section-palestra {
        border-radius: 30px;
        padding: clamp(4rem, 9vw, 6rem) 1.2rem;
    }
}
.section-palestra .pattern-layer { opacity: 0.05; mix-blend-mode: overlay; }
.section-palestra .aurora { display: none; }
.section-palestra .eyebrow { color: var(--lilas-claro); }
.section-palestra h2 { color: var(--white); }
.section-palestra .palestra-description { color: rgba(255, 255, 255, 0.85); }
.section-palestra .meta-item span { color: var(--lilas-claro); }
.section-palestra .meta-item b { color: var(--white); }

/* Override do botão para a cor sálvia da identidade para dar destaque no roxo */
.section-palestra .elementor-button {
    background-color: var(--salvia);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(114, 125, 90, 0.2);
}
.section-palestra .elementor-button.is-glow:hover {
    background-color: var(--salvia-escuro);
    box-shadow: 0 0 0 1px rgba(114, 125, 90, 0.18), 0 24px 60px -18px rgba(114, 125, 90, 0.55);
}
.palestra-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 980px) {
    .palestra-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.palestra-head .eyebrow {
    margin-bottom: 1rem;
}
.palestra-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1.8rem;
    max-width: 25ch;
}
.palestra-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.meta-item span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--roxo);
}
.meta-item b {
    font-size: 1.5rem;
    color: var(--slate);
    font-weight: 800;
}
.palestra-description {
    color: var(--c-muted);
    margin-bottom: 2.2rem;
}

/* =========================================================================
   SEÇÃO SOBRE A EXPERT
   ========================================================================= */
.sobre-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: stretch;
}
@media (max-width: 980px) {
    .sobre-grid { grid-template-columns: 1fr; gap: 3rem; align-items: start; }
}
.sobre-figure {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}
@media (max-width: 980px) {
    .sobre-figure { height: auto; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .sobre-figure { max-width: 100%; }
}
.sobre-photo {
    width: 100%;
    height: 100%;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--sh-card);
    border: 6px solid #fff;
    background: linear-gradient(160deg,#cdd3bf,#aeb9c4);
}
@media (max-width: 980px) {
    .sobre-photo { aspect-ratio: 4/5; height: auto; }
}
.sobre-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sobre-figure .ring {
    position: absolute;
    inset: -1.5rem;
    border: 1.5px dashed rgba(114,125,90,.3);
    border-radius: 54px;
    z-index: -1;
}
@media (max-width: 480px) {
    .sobre-figure .ring { inset: -0.8rem; }
}
.sobre-content h2 {
    margin: 0.6rem 0 1.5rem;
}
.sobre-text p {
    color: var(--c-muted);
    margin-bottom: 1.5rem;
}
.sobre-bullets {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}
.sobre-bullets li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--slate);
    font-weight: 500;
    font-size: 0.95rem;
}
.sobre-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--roxo);
    font-weight: 900;
    font-size: 1.15rem;
}

/* =========================================================================
   SEÇÃO CTA FINAL
   ========================================================================= */
.cta-final {
    background: 
        linear-gradient(135deg, rgba(128, 31, 130, 0.85) 0%, rgba(68, 16, 69, 0.95) 100%),
        url('../images/office_bg.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-final .wrap {
    z-index: 2;
}
.cta-final h2, .cta-final p, .cta-final strong {
    color: var(--white);
}
.cta-final .section-head {
    max-width: 900px; /* Ajuste para caber o h2 em 2 linhas */
    margin-inline: auto;
    margin-bottom: 2.5rem;
}
.cta-final .section-head .eyebrow {
    color: var(--lilas-claro);
}
.cta-final .section-head .eyebrow::before {
    background: var(--lilas-claro);
}
.cta-final h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    font-weight: 800;
}
.cta-final p.lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-top: 1rem;
}
.cta-final p.text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.8;
}
.cta-final .elementor-button {
    background-color: var(--white);
    color: var(--roxo-escuro);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.cta-final .elementor-button:hover {
    background-color: var(--cream-2);
}

/* =========================================================================
   FOOTER (RODAPÉ)
   ========================================================================= */
.footer {
    background: var(--slate);
    color: var(--white);
    padding: 4rem 0 3rem;
    border-top: none !important;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
    font-size: 1.45rem;
    font-weight: 800;
}
.footer-brand span {
    color: var(--lilas);
}
.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity var(--t), color var(--t);
}
.footer-links a:hover {
    opacity: 1;
    color: var(--lilas-claro);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}
@media (max-width: 620px) {
    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
}
