/* ═══════════════════════════════════════════════════════
   FOOD SMART · RT Class · Agenda Regulatória ANVISA 2026
   Landing page de captação · Aula gratuita com Fabiana Leal
   ═══════════════════════════════════════════════════════ */

:root {
    /* ── Paleta oficial Food Smart (Brandbook v1.0) ── */
    --fs-navy:   #1D223B;
    --fs-navy-dark: #14182B;
    --fs-navy-mid:  #2A3157;
    --fs-red:    #EE3C30;
    --fs-red-dark: #C92E24;
    --fs-orange: #FF7A00;
    --fs-orange-dark: #E65100;
    --fs-cyan:   #2DD2E3;
    --fs-lime:   #BFF60C;
    --fs-gray-light: #F7F8FA;
    --fs-gray-mid:   #C7D2EA;
    --fs-gray-dark:  #6A7A9C;

    /* ── Tipografia oficial ── */
    --font-title:     'Poppins', system-ui, sans-serif;     /* 900 = Black */
    --font-body:      'Poppins', system-ui, sans-serif;     /* 400 = Regular */
    --font-highlight: 'Bw Beto', 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--fs-navy);
    color: #fff;
    font-size: 16px;            /* evita zoom iOS */
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, iframe, picture, svg { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; }

/* ── Helpers ── */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.container-narrow { max-width: 880px; }

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

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.75rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.75rem; }
.mb-5 { margin-bottom: 2.5rem; }

h1, h2, h3, h4, h5 { font-family: var(--font-title); font-weight: 900; }

/* ── Assinatura tipográfica: Bw Beto Bold Italic colorida ── */
.fs-highlight {
    font-family: var(--font-highlight);
    font-style: italic;
    font-weight: 800;
    color: var(--fs-red);
}
.fs-highlight-lime {
    font-family: var(--font-highlight);
    font-style: italic;
    font-weight: 800;
    color: var(--fs-lime);
}
.fs-highlight-cyan {
    font-family: var(--font-highlight);
    font-style: italic;
    font-weight: 800;
    color: var(--fs-cyan);
}

/* ═══════════════════════════════════════════════════════
   CTA — Botão vermelho oficial Food Smart
   ═══════════════════════════════════════════════════════ */
.cta-button {
    display: inline-block;
    background: var(--fs-red);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(238, 60, 48, 0.35);
    text-align: center;
    line-height: 1.2;
    width: auto;
    min-height: 56px;
}
.cta-button:hover {
    background: var(--fs-red-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 36px rgba(238, 60, 48, 0.5);
}
.cta-button:active { transform: translateY(0) scale(1); }
.cta-button.is-loading {
    opacity: 0.85;
    pointer-events: none;
    position: relative;
}
.cta-button.is-loading::after {
    content: '';
    display: inline-block;
    width: 18px; height: 18px;
    margin-left: 12px;
    vertical-align: middle;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════
   Section base
   ═══════════════════════════════════════════════════════ */
section { padding: 90px 0; position: relative; overflow: hidden; }

.section-dark  { background: var(--fs-navy); color: #fff; }
.section-light { background: #fff; color: var(--fs-navy); }
.section-gray  { background: var(--fs-gray-light); color: var(--fs-navy); }
.section-red   { background: var(--fs-red); color: #fff; }

.section-title {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1.18;
    margin-bottom: 1.25rem;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fs-cyan);
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--fs-gray-mid);
    max-width: 720px;
}
.section-light .section-lead,
.section-gray .section-lead { color: #444; }

/* ═══════════════════════════════════════════════════════
   Logo "RT Class" flutuante (decoração de fundo)
   ═══════════════════════════════════════════════════════ */
.rt-watermark {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rt-watermark span {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(180px, 30vw, 460px);
    line-height: 0.9;
    color: #fff;
    opacity: 0.045;
    letter-spacing: -8px;
    transform: rotate(-8deg);
    animation: floatY 4s ease-in-out infinite;
    white-space: nowrap;
}
.hero .rt-watermark span { opacity: 0.035; }

/* Variant navy — usado em seções de fundo claro (ex.: .pain) */
.rt-watermark--navy span {
    color: var(--fs-navy);
    opacity: 0.085;
}
.pain { position: relative; overflow: hidden; }
.pain .container { position: relative; z-index: 3; }
.learn { position: relative; overflow: hidden; }
.learn .container { position: relative; z-index: 3; }
@keyframes floatY {
    0%, 100% { transform: rotate(-8deg) translateY(-8px); }
    50%      { transform: rotate(-8deg) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════
   Floating particles (decoração sutil hero/dark sections)
   ═══════════════════════════════════════════════════════ */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particles::before,
.particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.particles::before {
    width: 480px; height: 480px;
    background: radial-gradient(circle, var(--fs-cyan), transparent 60%);
    top: -160px; right: -120px;
    animation: floatBlob 14s ease-in-out infinite;
}
.particles::after {
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--fs-red), transparent 60%);
    bottom: -120px; left: -100px;
    animation: floatBlob 18s ease-in-out infinite reverse;
}
@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(40px, -30px); }
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    min-height: min(100vh, 920px);
    padding: 90px 0 60px;
    background: linear-gradient(135deg, var(--fs-navy-dark) 0%, var(--fs-navy) 60%, var(--fs-navy-mid) 100%);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: stretch;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-logo {
    width: 110px;
    margin-bottom: 28px;
    opacity: 0.95;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    align-items: center;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45, 210, 227, 0.12);
    border: 1px solid rgba(45, 210, 227, 0.35);
    color: var(--fs-cyan);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}
.hero-pill.pill-red {
    background: rgba(238, 60, 48, 0.15);
    border-color: rgba(238, 60, 48, 0.45);
    color: #FF8B82;
}

.hero-headline {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
    color: #fff;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}
.hero-headline .fs-highlight,
.hero-headline .fs-highlight-lime {
    font-size: 1em;
}

.hero-sub-headline {
    font-size: 1.55rem;
    font-family: var(--font-title);
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.25;
    animation: fadeInUp 0.6s ease 0.15s both;
}

.hero-paragraph {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--fs-gray-mid);
    margin-bottom: 28px;
    max-width: 580px;
    animation: fadeInUp 0.6s ease 0.25s both;
}
.hero-paragraph strong { color: #fff; font-weight: 700; }

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease 0.35s both;
}
.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: 50px;
}
.hero-meta-item .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--fs-lime);
    box-shadow: 0 0 10px var(--fs-lime);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}

/* Hero form (desktop) / botão único (mobile) */
.hero-form-wrap {
    animation: fadeInUp 0.6s ease 0.45s both;
}

.hero-cta-mobile { display: none; }

.hero-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px;
    max-width: 520px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-form .field { margin-bottom: 12px; }
.hero-form .cta-button { width: 100%; margin-top: 6px; }
.hero-form .form-disclaimer {
    color: var(--fs-gray-mid);
    font-size: 0.78rem;
    margin-top: 12px;
    line-height: 1.5;
    text-align: center;
}

/* Foto Fabiana */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fabiana-frame {
    position: relative;
    border-radius: 28px;
    padding: 4px;
    background: linear-gradient(135deg, var(--fs-red), var(--fs-cyan), var(--fs-lime), var(--fs-red));
    background-size: 300% 300%;
    animation: frameGlow 8s ease-in-out infinite;
    box-shadow:
        0 0 30px rgba(238, 60, 48, 0.35),
        0 0 60px rgba(45, 210, 227, 0.18),
        0 30px 80px rgba(0, 0, 0, 0.6);
    max-width: 100%;
}
@keyframes frameGlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.fabiana-frame::before {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--fs-red);
    top: -7px; left: 36px;
    box-shadow: 0 0 14px var(--fs-red);
    animation: dotPulse 2.5s ease-in-out infinite;
}
.fabiana-frame::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--fs-cyan);
    top: -5px; right: 36px;
    box-shadow: 0 0 12px var(--fs-cyan);
    animation: dotPulse 2.5s ease-in-out infinite 1.2s;
}
@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.6); opacity: 0.5; }
}
.fabiana-photo {
    display: block;
    width: 400px;
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 25px;
    background: var(--fs-navy-dark);
}
.fabiana-caption {
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    background: rgba(20, 24, 43, 0.85);
    border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 10px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
    z-index: 4;
}
.fabiana-caption strong {
    font-family: var(--font-title);
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.fabiana-caption span {
    font-size: 0.7rem;
    color: var(--fs-cyan);
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════
   FORM elements (compartilhado hero + final)
   ═══════════════════════════════════════════════════════ */
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--fs-gray-mid);
}
.field input,
.field select {
    width: 100%;
    background: rgba(255,255,255,0.95);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--fs-navy);
    transition: border-color 0.18s, box-shadow 0.18s;
    appearance: none;
    -webkit-appearance: none;
}
.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--fs-red);
    box-shadow: 0 0 0 4px rgba(238, 60, 48, 0.18);
}
.field input::placeholder { color: #97A0BD; }
.field select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%231D223B'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}
.field.has-error input,
.field.has-error select {
    border-color: var(--fs-red);
    background: #FFF3F2;
}
.field .field-error {
    font-size: 0.78rem;
    color: var(--fs-red);
    font-weight: 600;
    margin-top: 2px;
    min-height: 1em;
}

.field-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--fs-gray-mid);
}
.field-checkbox input {
    width: 18px; height: 18px;
    margin-top: 2px;
    accent-color: var(--fs-red);
    flex-shrink: 0;
    cursor: pointer;
}
.field-checkbox a { color: var(--fs-cyan); text-decoration: underline; }

/* Form light (sobre fundo claro / no card final) */
.form-light .field input,
.form-light .field select {
    background: #fff;
    border-color: #E1E6F2;
    color: var(--fs-navy);
}
.form-light .field input:focus,
.form-light .field select:focus {
    border-color: var(--fs-red);
}
.form-light .field label { color: var(--fs-navy); }
.form-light .field-checkbox { color: #555; }

/* ═══════════════════════════════════════════════════════
   SEÇÃO 2 — Identificação da dor
   ═══════════════════════════════════════════════════════ */
.pain {
    padding: 90px 0;
    background: #fff;
    color: var(--fs-navy);
}
.pain-inner { max-width: 760px; margin: 0 auto; }

/* Grid 2-cols com poster à esquerda */
.pain-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.5fr);
    gap: 60px;
    align-items: center;
}
.pain-poster-col {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pain-poster-wrap {
    position: relative;
    max-width: 380px;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(29, 34, 59, 0.18),
        0 8px 20px rgba(29, 34, 59, 0.08);
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.45s ease;
}
.pain-poster-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(29, 34, 59, 0.06);
    pointer-events: none;
}
.pain-poster-wrap:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 80px rgba(29, 34, 59, 0.25),
        0 12px 30px rgba(238, 60, 48, 0.12);
}
.pain-poster {
    display: block;
    width: 100%;
    height: auto;
}
/* Quando o grid existe, o conteúdo perde o margin: 0 auto pra ficar à esquerda */
.pain-grid .pain-inner { margin: 0; max-width: 100%; }

/* Tablet — poster menor */
@media (max-width: 1024px) and (min-width: 821px) {
    .pain-grid { grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr); gap: 40px; }
    .pain-poster-wrap { max-width: 320px; }
}

/* Mobile — stack, poster centralizado e menor */
@media (max-width: 820px) {
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .pain-poster-wrap { max-width: 280px; margin: 0 auto; }
    .pain-grid .pain-inner { text-align: left; }
}

@media (max-width: 480px) {
    .pain-poster-wrap { max-width: 240px; }
}
.pain h2 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--fs-navy);
}
.pain p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 1.1rem;
}
.pain p em { font-style: italic; color: var(--fs-red); font-weight: 600; }
.pain p strong { font-weight: 700; color: var(--fs-navy); }
.pain ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.pain ul li {
    position: relative;
    padding: 12px 0 12px 36px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    border-bottom: 1px dashed #E1E6F2;
}
.pain ul li:last-child { border-bottom: none; }
.pain ul li::before {
    content: '✕';
    position: absolute;
    left: 0; top: 12px;
    color: var(--fs-red);
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1.4;
    width: 26px; height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(238, 60, 48, 0.1);
    border-radius: 50%;
}
.pain-closer {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--fs-navy);
    text-align: center;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--fs-red);
    background: var(--fs-gray-light);
    border-radius: 0 12px 12px 0;
}

/* ═══════════════════════════════════════════════════════
   SEÇÃO 3 — Por que entender AGORA (3 cards)
   ═══════════════════════════════════════════════════════ */
.why-now {
    background: linear-gradient(180deg, var(--fs-navy) 0%, var(--fs-navy-dark) 100%);
    color: #fff;
    isolation: isolate;   /* contém blend-modes do vídeo */
}
.why-now .container { position: relative; z-index: 3; }

/* ── Vídeo de fundo ── */
.why-now-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.18;
    mix-blend-mode: luminosity;
    pointer-events: none;
    filter: saturate(0.55);
    will-change: opacity;
}

/* Veil — gradiente vertical + radial pra manter texto legível
   e amarrar o vídeo ao tom navy do background */
.why-now-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(20, 24, 43, 0.92) 0%,
            rgba(20, 24, 43, 0.72) 18%,
            rgba(20, 24, 43, 0.72) 82%,
            rgba(10, 13, 36, 0.95) 100%),
        radial-gradient(ellipse 80% 60% at 50% 50%,
            transparent 0%, rgba(10, 13, 36, 0.65) 100%);
}

/* ── Retrato corpo-inteiro (lateral direita) ── */
.why-now-portrait {
    position: absolute;
    right: -2%;
    bottom: 0;
    height: 92%;
    width: auto;
    max-height: 720px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.92;
    /* Fade da esquerda pra direita — dissolve no bg */
    -webkit-mask-image: linear-gradient(95deg,
        transparent 0%, rgba(0,0,0,0.35) 18%, rgba(0,0,0,0.85) 45%, #000 65%);
            mask-image: linear-gradient(95deg,
        transparent 0%, rgba(0,0,0,0.35) 18%, rgba(0,0,0,0.85) 45%, #000 65%);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
}

/* Em telas largas, dá espaço pros cards não competirem com o retrato */
@media (min-width: 1100px) {
    .why-now .container {
        padding-right: 320px;
    }
}
@media (min-width: 1400px) {
    .why-now .container {
        padding-right: 380px;
    }
}

/* Tablets — retrato menor e mais transparente */
@media (max-width: 1099px) and (min-width: 821px) {
    .why-now-portrait {
        max-height: 540px;
        height: 80%;
        right: -6%;
        opacity: 0.55;
    }
    .why-now-video { opacity: 0.12; }
}

/* Mobile — retrato vira accent decorativo bem sutil */
@media (max-width: 820px) {
    .why-now-portrait {
        height: auto;
        max-height: 380px;
        right: -12%;
        bottom: auto;
        top: 8%;
        opacity: 0.18;
        -webkit-mask-image: linear-gradient(90deg,
            transparent 0%, rgba(0,0,0,0.4) 25%, rgba(0,0,0,0.9) 60%, #000 100%);
                mask-image: linear-gradient(90deg,
            transparent 0%, rgba(0,0,0,0.4) 25%, rgba(0,0,0,0.9) 60%, #000 100%);
    }
    .why-now-video {
        opacity: 0.10;
    }
    .why-now-veil {
        background: linear-gradient(180deg,
            rgba(20, 24, 43, 0.95) 0%,
            rgba(20, 24, 43, 0.88) 50%,
            rgba(10, 13, 36, 0.98) 100%);
    }
}

@media (max-width: 480px) {
    .why-now-portrait { max-height: 320px; opacity: 0.12; right: -20%; }
}

/* Reduced motion — pausa o vídeo (sem autoplay visual) */
@media (prefers-reduced-motion: reduce) {
    .why-now-video { display: none; }
}
.why-now h2 {
    text-align: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.18;
    margin-bottom: 3rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 36px 28px;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, background 0.3s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%),
        rgba(238, 60, 48, 0.10) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--fs-red);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.why-card:hover::before { opacity: 1; }
.why-card:hover .why-card-seal {
    transform: scale(1.08) rotate(-3deg);
}
.why-card-seal {
    width: 72px; height: 72px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fs-red), var(--fs-red-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(238, 60, 48, 0.35);
    position: relative;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.why-card-seal svg { width: 36px; height: 36px; }
.why-card-seal.cyan { background: linear-gradient(135deg, var(--fs-cyan), #1AA9B8); box-shadow: 0 10px 24px rgba(45, 210, 227, 0.35); }
.why-card-seal.lime { background: linear-gradient(135deg, var(--fs-lime), #8ECF09); color: var(--fs-navy); box-shadow: 0 10px 24px rgba(191, 246, 12, 0.35); }
.why-card h3 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #fff;
    line-height: 1.3;
}
.why-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--fs-gray-mid);
}
.why-closer {
    text-align: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.3;
    margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════
   SEÇÃO 4 — O que vai aprender
   ═══════════════════════════════════════════════════════ */
.learn { background: #fff; color: var(--fs-navy); }
.learn-inner { max-width: 820px; margin: 0 auto; }
.learn h2 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--fs-navy);
}
.learn-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.learn-list li {
    position: relative;
    padding: 14px 0 14px 44px;
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.6;
    color: #2D3450;
    border-bottom: 1px solid #EEF1F8;
}
.learn-list li:last-child { border-bottom: none; }
.learn-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 14px;
    width: 28px; height: 28px;
    background: var(--fs-red);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 6px 14px rgba(238, 60, 48, 0.3);
}
.learn-closer {
    background: var(--fs-gray-light);
    border-left: 4px solid var(--fs-red);
    border-radius: 0 12px 12px 0;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--fs-navy);
}

/* ═══════════════════════════════════════════════════════
   SEÇÃO 5 — Para quem é
   ═══════════════════════════════════════════════════════ */
.audience { background: var(--fs-gray-light); color: var(--fs-navy); }
.audience h2 {
    text-align: center;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.7rem, 3.2vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: var(--fs-navy);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.audience-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(29, 34, 59, 0.06);
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}
.audience-card::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fs-red), var(--fs-cyan));
    border-radius: 0 0 14px 14px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(29, 34, 59, 0.15);
}
.audience-card:hover::after { transform: scaleX(1); }
.audience-card:hover .audience-icon {
    transform: scale(1.08);
    background: rgba(45, 210, 227, 0.25);
}
.audience-icon {
    width: 52px; height: 52px;
    background: rgba(45, 210, 227, 0.15);
    color: var(--fs-cyan);
    border-radius: 12px;
    transition: transform 0.3s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.audience-icon svg { width: 28px; height: 28px; }
.audience-card h3 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--fs-navy);
    margin: 0;
    line-height: 1.3;
}
.audience-card p {
    font-family: var(--font-body);
    font-size: 0.93rem;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   SEÇÃO 6 — Mentora
   ═══════════════════════════════════════════════════════ */
.mentor {
    background: linear-gradient(135deg, var(--fs-navy-dark) 0%, var(--fs-navy) 60%, var(--fs-navy-mid) 100%);
    color: #fff;
}
.mentor-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.mentor-eyebrow {
    color: var(--fs-cyan);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.mentor-content h2 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.mentor-content .role {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--fs-cyan);
    margin-bottom: 1.5rem;
}
.mentor-content p {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--fs-gray-mid);
    margin-bottom: 1rem;
}
.mentor-content p strong { color: #fff; font-weight: 700; }
.mentor-image {
    position: relative;
    display: flex;
    justify-content: center;
}
.mentor-image .fabiana-frame { max-width: 380px; }
.mentor-image .fabiana-photo { width: 380px; height: 460px; }



/* ═══════════════════════════════════════════════════════
   SEÇÃO 8 — CTA final + form completo
   ═══════════════════════════════════════════════════════ */
.final {
    background: var(--fs-gray-light);
    color: var(--fs-navy);
    padding: 100px 0;
}
.final-inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}
.final-text h2 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    line-height: 1.18;
    margin-bottom: 1.25rem;
}
.final-text p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--fs-gray-dark);
    margin-bottom: 1rem;
}
.final-text .badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}
.final .hero-pill {
    background: rgba(238, 60, 48, 0.08);
    border: 1px solid rgba(238, 60, 48, 0.25);
    color: var(--fs-red);
}
.final-card {
    background: #fff;
    color: var(--fs-navy);
    border-radius: 18px;
    padding: 32px 30px;
    max-width: 540px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.final-card h3 {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 0.4rem;
    color: var(--fs-navy);
}
.final-card .sub {
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: #5B6680;
    margin-bottom: 1.25rem;
}

.formacao-radio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.formacao-radio label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--fs-gray-light);
    border: 1.5px solid transparent;
    border-radius: 10px;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: #2D3450;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
    text-transform: none;
    letter-spacing: normal;
}
.formacao-radio label:hover { border-color: var(--fs-red); }
.formacao-radio input[type="radio"] {
    accent-color: var(--fs-red);
    width: 16px; height: 16px;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}
.formacao-radio input[type="radio"]:checked + span { font-weight: 700; color: var(--fs-red); }
.formacao-radio label:has(input:checked) {
    background: rgba(238, 60, 48, 0.08);
    border-color: var(--fs-red);
}

/* ═══════════════════════════════════════════════════════
   Sticky CTA mobile
   ═══════════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(20, 24, 43, 0.96);
    border-top: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
    display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .cta-button {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.92rem;
    min-height: 52px;
    box-shadow: 0 6px 16px rgba(238, 60, 48, 0.5);
}
.sticky-cta .microcopy {
    text-align: center;
    color: var(--fs-gray-mid);
    font-size: 0.72rem;
    margin-top: 6px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════ */
footer {
    background: var(--fs-navy-dark);
    color: var(--fs-gray-dark);
    padding: 36px 0;
    text-align: center;
}
.footer-logo {
    width: 100px;
    margin-bottom: 14px;
    opacity: 0.7;
}
footer p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 6px;
}
footer a { color: var(--fs-cyan); }


/* ═══════════════════════════════════════════════════════
   Reveal on scroll (stagger)
   ═══════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }
.reveal[data-delay="7"] { transition-delay: 0.56s; }
.reveal[data-delay="8"] { transition-delay: 0.64s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVIDADE — breakpoints: 1200/1024/820/640/480/360
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .container { max-width: 1040px; }
    .hero-grid { gap: 40px; }
    .fabiana-photo { width: 360px; height: 460px; }
}

@media (max-width: 1024px) {
    .container { max-width: 920px; }
    section { padding: 70px 0; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 32px; }
    .hero-headline { font-size: 2.1rem; }
    .hero-sub-headline { font-size: 1.3rem; }
    .fabiana-photo { width: 320px; height: 410px; }
    .mentor-image .fabiana-photo { width: 320px; height: 400px; }
    .why-cards { gap: 18px; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
    .final-inner { gap: 36px; }
}

@media (max-width: 820px) {
    section { padding: 56px 0; }
    .hero {
        padding: 80px 0 50px;
        text-align: center;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-content { order: 2; }
    .hero-image { order: 1; }
    .hero-paragraph { margin-left: auto; margin-right: auto; }
    .hero-badge-row,
    .hero-meta { justify-content: center; }
    .hero-form-wrap { display: none; }   /* esconde form no mobile */
    .hero-cta-mobile {
        display: block;
        animation: fadeInUp 0.6s ease 0.45s both;
    }
    .hero-cta-mobile .cta-button { width: 100%; }
    .hero-logo { margin-left: auto; margin-right: auto; }

    .fabiana-photo { width: 280px; height: 340px; }
    .fabiana-caption { padding: 8px 20px; }
    .fabiana-caption strong { font-size: 0.88rem; }

    .why-cards { grid-template-columns: 1fr; gap: 16px; }
    .audience-grid { grid-template-columns: 1fr; }

    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .mentor-image .fabiana-photo { width: 280px; height: 340px; }



    .final-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .final-card { margin: 0 auto; }

    .sticky-cta { display: block; }
    body.has-sticky-cta { padding-bottom: 92px; }
}

@media (max-width: 640px) {
    section { padding: 48px 0; }
    .container { width: 100%; padding: 0 18px; }
    .hero { padding: 72px 0 40px; }
    .hero-headline {
        font-size: clamp(1.35rem, 5.2vw, 1.7rem);
        letter-spacing: -0.3px;
    }
    .hero-sub-headline { font-size: 1.05rem; }
    .hero-paragraph { font-size: 0.95rem; }

    .pain h2 { font-size: 1.4rem; }
    .pain p { font-size: 0.97rem; }
    .pain-closer { font-size: 1rem; padding: 1.1rem; }

    .why-card { padding: 28px 22px; }
    .why-card h3 { font-size: 1.08rem; }
    .why-closer { font-size: 1.2rem; }

    .learn-list li { font-size: 0.95rem; padding: 12px 0 12px 40px; }

    .audience-card { padding: 22px 20px; }



    .final-card { padding: 26px 22px; }
    .final-card h3 { font-size: 1.2rem; }
    .formacao-radio { grid-template-columns: 1fr; }

    .cta-button {
        width: 100%;
        padding: 16px 22px;
        font-size: 0.92rem;
    }

}

@media (max-width: 480px) {
    .hero-logo { width: 88px; }
    .hero-headline { font-size: clamp(1.25rem, 5.6vw, 1.55rem); }
    .hero-sub-headline { font-size: 1rem; }
    .section-title, .pain h2, .why-now h2, .learn h2, .audience h2, .mentor-content h2, .final-text h2 {
        font-size: 1.4rem;
    }
    .hero-pill {
        font-size: 0.66rem;
        padding: 5px 11px;
        letter-spacing: 0.8px;
    }
    .hero-meta-item { font-size: 0.8rem; padding: 6px 11px; }
    .why-card-seal { width: 60px; height: 60px; }
    .why-card-seal svg { width: 30px; height: 30px; }
}

@media (max-width: 360px) {
    .container { padding: 0 14px; }
    .hero-headline { font-size: 2.2rem; }
    .hero-badge-row,
    .hero-meta {
        flex-direction: column;
        align-items: center;
    }
    .hero-pill,
    .hero-meta-item { width: max-content; max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   NOVO LAYOUT HERO BASEADO NAS FOTOS
   ═══════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════
   HERO V3 — Background elegante em camadas
   ═══════════════════════════════════════════════════════
   Stack (do topo para baixo):
     1. Dot-grid sutil (textura)
     2. Streak diagonal vermelha (accent linear)
     3. Radial blob vermelho (canto inferior-direito)
     4. Radial blob cyan (canto superior-esquerdo)
     5. Base navy-deep gradient
*/
.hero {
    background-color: #06081A;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0),
        linear-gradient(118deg, transparent 38%, rgba(238, 60, 48, 0.05) 50%, transparent 62%),
        radial-gradient(ellipse 65% 55% at 92% 88%, rgba(238, 60, 48, 0.16), transparent 70%),
        radial-gradient(ellipse 70% 60% at 8% 12%, rgba(45, 210, 227, 0.08), transparent 70%),
        linear-gradient(140deg, #04061A 0%, #0A0D24 45%, #11163A 100%);
    background-size:
        28px 28px,
        auto, auto, auto, auto;
    background-attachment: fixed, scroll, scroll, scroll, scroll;
    position: relative;
}
/* Vignette suave nos cantos — adiciona profundidade */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 50%, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

/* ── Stack de vídeos do hero (cortes rápidos) ── */
.hero-video-stack {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.55s ease;
    mix-blend-mode: luminosity;
    filter: saturate(0.6) contrast(1.05);
    will-change: opacity;
}
.hero-video.is-active { opacity: 0.28; }
/* Cut flash — usado pelo JS pra mascarar seeks bruscos */
.hero-video.is-cutting { opacity: 0; transition: opacity 0.10s ease; }

.hero-video-veil {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(6, 8, 26, 0.70) 0%,
            rgba(6, 8, 26, 0.48) 20%,
            rgba(6, 8, 26, 0.48) 75%,
            rgba(6, 8, 26, 0.92) 100%),
        radial-gradient(ellipse 70% 55% at 35% 50%,
            rgba(6, 8, 26, 0.78) 0%,
            rgba(6, 8, 26, 0.22) 60%,
            transparent 100%);
}

@media (max-width: 820px) {
    .hero-video.is-active { opacity: 0.18; }
    .hero-video-veil {
        background:
            linear-gradient(180deg,
                rgba(6, 8, 26, 0.86) 0%,
                rgba(6, 8, 26, 0.66) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video-stack { display: none; }
}

/* Ambient backdrop glow do hero (atrás do retrato) */
.hero-glow {
    position: absolute;
    top: 50%;
    right: -4%;
    transform: translateY(-50%);
    width: 620px;
    height: 620px;
    max-width: 64vw;
    max-height: 64vw;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(238, 60, 48, 0.22) 0%,
        rgba(238, 60, 48, 0.10) 32%,
        transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
    animation: heroGlowDrift 14s ease-in-out infinite;
}
@keyframes heroGlowDrift {
    0%, 100% { transform: translate(0, -50%) scale(1); opacity: 0.85; }
    50%      { transform: translate(-1%, -52%) scale(1.04); opacity: 1; }
}

/* ── Brand row desktop ── */
.hero-brand-desktop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-bottom: 40px;
}
.rt-class-logo {
    height: 132px;
    width: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(238, 60, 48, 0.30));
    /* O logo tem texto "Class" em branco/cinza claro — funciona no navy */
}
/* Mantidos por compatibilidade caso o markup antigo ressurja */
.hero-brand-desktop .brand-rt {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.bracket-mark {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 3.4rem;
    color: var(--fs-red);
    line-height: 0.85;
}
.academy-text {
    font-family: var(--font-highlight);
    font-style: italic;
    font-weight: 800;
    font-size: 2.6rem;
    color: #fff;
    line-height: 0.85;
    margin: 0 6px;
}
.brand-com-fabiana {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
    border-left: 2px solid rgba(238, 60, 48, 0.5);
    padding-left: 18px;
}
.com-text {
    font-family: var(--font-highlight);
    font-style: italic;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--fs-red);
    line-height: 1;
}
.nome-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 0.2px;
}

/* ── AULA pill ── */
.hero-badge-row { margin-top: 8px; margin-bottom: 26px; }
.badge-aula {
    background: var(--fs-red);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(238, 60, 48, 0.4);
    text-transform: uppercase;
}

/* ── Headline ANVISA ── */
.hero-headline {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: clamp(2.4rem, 4.4vw, 3.8rem);
    line-height: 0.98;
    letter-spacing: -1.2px;
    color: #fff;
    margin: 0 0 14px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.highlight-anvisa {
    color: var(--fs-red);
    position: relative;
    display: inline-block;
}
.highlight-anvisa::before,
.highlight-anvisa::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid var(--fs-red);
}
.highlight-anvisa::before {
    top: -6px; left: -10px;
    border-right: none;
    border-bottom: none;
}
.highlight-anvisa::after {
    bottom: -6px; right: -10px;
    border-left: none;
    border-top: none;
}

/* ── Tagline (subheadline) ── */
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.45vw, 1.32rem);
    font-weight: 500;
    line-height: 1.55;
    color: #E8ECF7;
    margin-bottom: 32px;
    max-width: 560px;
}
.hero-tagline strong { color: #fff; font-weight: 700; }

/* ── Date row + bell ── */
.hero-date-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.date-pill {
    background: rgba(238, 60, 48, 0.12);
    border: 1.5px solid var(--fs-red);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.05rem;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(238, 60, 48, 0.18);
}
.date-pill .date-day { color: #fff; }
.date-pill .date-sep { color: rgba(255,255,255,0.4); font-weight: 400; }
.date-pill .date-time { color: var(--fs-lime); }

.reminder-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    transition: transform 0.2s ease;
}
.reminder-action:hover { transform: scale(1.05); }
.reminder-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.88rem;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bell-icon {
    font-size: 1.9rem;
    filter: drop-shadow(0 0 14px rgba(238, 60, 48, 0.6));
    animation: bellShake 3s ease-in-out infinite;
}
@keyframes bellShake {
    0%, 92%, 100% { transform: rotate(0); }
    94%           { transform: rotate(14deg); }
    96%           { transform: rotate(-14deg); }
    98%           { transform: rotate(8deg); }
}

/* ── Hero CTA (botão único + alerta) ── */
.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
    margin-top: 4px;
}
.hero-cta .cta-button {
    width: 100%;
    font-size: 1.05rem;
    padding: 20px 30px;
    letter-spacing: 0.6px;
}
.hero-cta-alert {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(238, 60, 48, 0.12);
    border: 1px solid rgba(238, 60, 48, 0.35);
    color: #FFD4D0;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px 7px 12px;
    border-radius: 50px;
    margin: 0;
    line-height: 1;
}
.hero-cta-alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fs-red);
    box-shadow: 0 0 10px var(--fs-red);
    animation: pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .hero-cta { align-items: center; }
    .hero-cta-alert { font-size: 0.72rem; }
}

/* ── Hero form card (mantido por compatibilidade) ── */
.hero-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 20px 16px;
    max-width: 500px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.hero-form .field { margin-bottom: 10px; }
.hero-form .field label {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--fs-gray-mid);
    margin-bottom: 4px;
}
.hero-form .field input,
.hero-form .field select {
    background: rgba(255, 255, 255, 0.96);
    color: var(--fs-navy);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.94rem;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.hero-form .field input:focus,
.hero-form .field select:focus {
    background: #fff;
    border-color: var(--fs-red);
    box-shadow: 0 0 0 4px rgba(238, 60, 48, 0.18);
    outline: none;
}
.hero-form .field input::placeholder { color: #8E96B0; }

.hero-form-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}
.lime-dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--fs-lime);
    box-shadow: 0 0 12px var(--fs-lime);
    animation: pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-form-disclaimer {
    color: var(--fs-gray-mid);
    font-size: 0.74rem;
    margin-top: 10px;
    text-align: center;
    line-height: 1.5;
}
.hero-form-disclaimer a { color: var(--fs-cyan); text-decoration: underline; }

/* Primary CTA dentro do form */
.hero-form .hero-primary-cta {
    width: 100%;
    margin-top: 8px;
}

.hero-primary-cta {
    font-size: 1rem;
    padding: 17px 28px;
    box-shadow: 0 16px 36px rgba(238, 60, 48, 0.45), 0 0 0 0 rgba(238, 60, 48, 0.7);
    animation: heroPulse 2.6s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { box-shadow: 0 16px 36px rgba(238, 60, 48, 0.45), 0 0 0 0 rgba(238, 60, 48, 0.6); }
    50%      { box-shadow: 0 16px 36px rgba(238, 60, 48, 0.45), 0 0 0 14px rgba(238, 60, 48, 0); }
}

/* ── Hero image (retrato circular) ── */
.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    align-self: stretch;
}
.hero-portrait {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-portrait-img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Sombra única, mais discreta e sem glow vermelho — preserva nitidez */
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
    /* Renderização nítida: força camada GPU sem sub-pixel blur */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
}
/* Halo radial atrás do retrato */
.hero-portrait-halo {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
        rgba(238, 60, 48, 0.45) 0%,
        rgba(238, 60, 48, 0.20) 28%,
        rgba(191, 246, 12, 0.08) 50%,
        transparent 68%);
    filter: blur(30px);
    z-index: 1;
    pointer-events: none;
    animation: portraitHaloPulse 5s ease-in-out infinite;
}
@keyframes portraitHaloPulse {
    0%, 100% { transform: scale(1);    opacity: 0.75; }
    50%      { transform: scale(1.06); opacity: 1;    }
}
/* Anel decorativo tracejado em rotação suave */
.hero-portrait-ring {
    position: absolute;
    inset: -4%;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.18);
    z-index: 2;
    pointer-events: none;
    animation: portraitRingSpin 38s linear infinite;
}
@keyframes portraitRingSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
/* Badge flutuante no canto do retrato */
.hero-portrait-badge {
    position: absolute;
    z-index: 4;
    bottom: 6%;
    right: -4%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 24, 43, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 9px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    animation: portraitBadgeFloat 4.5s ease-in-out infinite;
}
.hero-portrait-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fs-lime);
    box-shadow: 0 0 10px var(--fs-lime);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes portraitBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

/* ── Mobile switch (retrato no topo, texto abaixo) ── */
@media (max-width: 820px) {
    .hero {
        padding: 64px 0 48px;
        text-align: center;
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .hero-image { order: 1; }
    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    /* Reordenar elementos do hero-content para mobile */
    .hero-content .hero-brand-desktop { order: 1; justify-content: center; }
    .hero-content .hero-badge-row     { order: 2; justify-content: center; }
    .hero-content .hero-headline      { order: 3; }
    .hero-content .hero-tagline       { order: 4; }
    .hero-content .hero-date-row      { order: 5; justify-content: center; }
    .hero-content .hero-form,
    .hero-content .hero-cta           { order: 6; }

    .hero-portrait { max-width: 360px; }
    .hero-portrait-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -6%;
        font-size: 0.72rem;
        padding: 8px 14px;
    }
    @keyframes portraitBadgeFloat {
        0%, 100% { transform: translate(50%, 0); }
        50%      { transform: translate(50%, -6px); }
    }
    .hero-brand-desktop { gap: 12px 18px; justify-content: center; }
    .rt-class-logo  { height: 100px; }
    .bracket-mark   { font-size: 2.6rem; }
    .academy-text   { font-size: 2rem; }
    .brand-com-fabiana { padding-left: 14px; }
    .com-text  { font-size: 1.1rem; }
    .nome-text { font-size: 1.2rem; }

    .hero-headline {
        font-size: clamp(1.9rem, 6.4vw, 2.6rem);
        line-height: 1.05;
    }
    .hero-tagline {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }
    .hero-form,
    .hero-cta {
        max-width: 460px;
        width: 100%;
        margin: 16px auto 0;
        text-align: left;
    }
    .hero-form-title { justify-content: center; text-align: left; }
    .hero-primary-cta { width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
    .hero-portrait { max-width: 300px; }
    .date-pill { font-size: 0.92rem; padding: 9px 16px; }
    .reminder-text { font-size: 0.78rem; }
    .bell-icon { font-size: 1.6rem; }
    .hero-form { padding: 18px 16px 16px; }
    .rt-class-logo { height: 82px; }
    .bracket-mark { font-size: 2.2rem; }
    .academy-text { font-size: 1.7rem; }
}

@media (max-width: 360px) {
    .hero-portrait { max-width: 260px; }
    .hero-tagline { font-size: 0.92rem; }
    .hero-date-row { gap: 12px; }
}

/* ═══════════════════════════════════════════════════════
   Mentor section — variação 04 (3:4 card)
   ═══════════════════════════════════════════════════════ */
.mentor-card-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
    display: block;
    margin: 0 auto;
    animation: fadeInUp 0.7s ease 0.2s both;
}

/* ═══════════════════════════════════════════════════════
   Final CTA — variação 05 (4:3) como elemento de autoridade
   ═══════════════════════════════════════════════════════ */
.final-image {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    margin-bottom: 28px;
    display: block;
}
@media (max-width: 820px) {
    .final-image { max-width: 360px; margin: 0 auto 24px; }
}

/* ═══════════════════════════════════════════════════════
   Acessibilidade — reduced motion
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   YAYFORMS INTEGRATION STYLING
   ═══════════════════════════════════════════════════════ */
/* Oculta o botão flutuante padrão do Yayforms sidetab para podermos dispará-lo programaticamente com os nossos botões de ação premium */
.yf-v1-sidetab-button {
    display: none !important;
}
