/* ============================================
   VARIÁVEIS
   ============================================ */
:root {
    --red: #db0b04;
    --red-hover: #e80c04;
    --red-dark: #a80803;
    --red-gradient: linear-gradient(180deg, #db0b04 0%, #b00903 100%);
    --red-gradient-hover: linear-gradient(180deg, #e80c04 0%, #db0b04 100%);

    --bg-primary: #0b0b0b;
    --bg-secondary: #101010;
    --bg-card: #151515;
    --bg-elevated: #1a1a1a;

    --text-white: #ffffff;
    --text-light: #d0d0d0;
    --text-body: #b0b0b0;
    --text-muted: #777777;
    --text-faint: #555555;

    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-red: rgba(219, 11, 4, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ============================================
   TIPOGRAFIA — HIERARQUIA
   ============================================ */

/* Space Grotesk — Títulos de seção */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 28px;
    text-align: center;
}

/* Inter — Corpo do texto */
.body-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: center;
}

.body-text.left {
    text-align: left;
}

.body-text.highlight {
    color: var(--text-white);
    font-weight: 500;
}

.body-text.muted {
    color: var(--text-muted);
}

.body-text.accent {
    color: var(--red);
}

/* ============================================
   BOTÕES CTA — PADRÃO
   ============================================
   Uso:
   - .btn-cta ...................... primário (hero, proposta, informações)
   - .btn-cta.btn-cta--large ...... destaque final (uma vez, seção CTA final)
   - .btn-cta.btn-cta--outline ..... secundário (borda vermelha, preenchido no hover)
   - .btn-cta.modal-btn ............ dentro do modal (full width, mesmo estilo)
   - .cta-wrap ..................... wrapper centralizado com margem (envolve o botão)
   ============================================ */

/* Base — primário */
.btn-cta {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 15px 36px;
    background: var(--red-gradient);
    color: var(--text-white);
    text-decoration: none;
    border: 2px solid var(--red);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.25s ease,
        box-shadow 0.3s ease;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.04) 55%,
        transparent 100%
    );
    transform: skewX(-18deg);
    pointer-events: none;
}

.btn-cta:hover {
    background: var(--red-gradient-hover);
    border-color: var(--red-hover);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(219, 11, 4, 0.35),
        0 14px 44px rgba(219, 11, 4, 0.15);
}

.btn-cta:hover::after {
    animation: ctaShimmer 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.06s forwards;
}

.btn-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(219, 11, 4, 0.25);
    transition-duration: 0.1s;
}

@keyframes ctaShimmer {
    0%   { left: -80%; opacity: 0; }
    20%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* Modificador: outline (secundário) */
.btn-cta--outline {
    background-color: transparent;
    color: var(--red);
}

.btn-cta--outline:hover {
    background: var(--red-gradient);
    color: var(--text-white);
}

/* Modificador: large (destaque — usar só no CTA final) */
.btn-cta--large {
    padding: 18px 48px;
    font-size: 1.2rem;
}

/* Wrapper de CTA (centraliza e afasta do bloco anterior) */
.cta-wrap {
    text-align: center;
    margin-top: 36px;
}

/* ============================================
   SEPARADOR
   ============================================ */
.sep {
    width: 60px;
    height: 1px;
    background: rgba(192, 57, 43, 0.3);
    margin: 0 auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    background-color: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-image: url('_img/gilberto2.png');
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    filter: grayscale(15%) contrast(1.05);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 140px;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 32px;
    padding-bottom: 40px;
}

.hero-logo {
    max-width: 100px;
    height: auto;
    display: block;
    opacity: 0.85;
    flex-shrink: 0;
}

.hero-row {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-sub {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.hero-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-faint);
    margin-bottom: 28px;
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 540px;
}

/* Hero — Lista de ênfase ("A forma como você...") */
.hero-emphasis {
    list-style: none;
    margin: 20px 0 28px;
    max-width: 540px;
}

.hero-emphasis li {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 6px 0;
    line-height: 1.6;
}

.hero-emphasis li strong {
    color: var(--text-white);
    font-weight: 600;
}

/* Hero — "Porque hoje" */
.hero-porque {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}

/* Hero — Lista de acento vermelho */
.hero-accent-list {
    list-style: none;
    margin: 0 0 36px;
    max-width: 540px;
}

.hero-accent-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--red);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
}

.hero-accent-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
}

/* Foto do hero (background na row) */
.hero-photo-col {
    min-height: 1px;
}

/* ============================================
   SEÇÃO DE ESTATÍSTICAS
   ============================================ */
.sec-stats {
    padding: 56px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.stats-intro {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-faint);
    text-align: center;
    margin-bottom: 36px;
    font-weight: 500;
}

.stat-block {
    text-align: center;
    padding: 12px 16px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--red);
    display: block;
    line-height: 1.1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: block;
}

/* ============================================
   SEÇÕES DE CONTEÚDO — GERAIS
   ============================================ */
.sec-porque-hoje,
.sec-diferencial,
.sec-proposta,
.sec-speaker,
.sec-para-quem,
.sec-pilares,
.sec-pilar,
.sec-resultados,
.sec-posicionamento,
.sec-investimento,
.sec-info,
.sec-nao-e,
.sec-cta-final {
    padding: 72px 0;
}

/* ============================================
   PORQUE HOJE — SEÇÃO DE TRANSIÇÃO
   ============================================ */
.sec-porque-hoje {
    text-align: center;
}

.porque-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.porque-titulo {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.porque-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.porque-lista li {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--red);
    font-weight: 500;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
}

.porque-lista li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
}

/* ============================================
   A PROPOSTA — FERRAMENTAS DE PNL
   ============================================ */
.proposta-tools {
    list-style: none;
    margin: 20px auto 32px;
    max-width: 520px;
}

.proposta-tools li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-light);
    padding: 7px 0 7px 24px;
    position: relative;
    line-height: 1.7;
}

.proposta-tools li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Proposta — Ênfase "Nada teórico..." */
.proposta-emphasis {
    margin: 28px 0;
    text-align: center;
}

.proposta-emphasis p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
    line-height: 1.6;
}

/* ============================================
   SPEAKER
   ============================================ */
.speaker-card {
    margin-top: 28px;
    background-color: #0d0d0d;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
}

.speaker-photo-wrap {
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.speaker-info {
    padding: 32px;
}

.speaker-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.speaker-role {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ============================================
   PARA QUEM — GRID DE AUDIÊNCIA
   ============================================ */
.audience-grid {
    margin-top: 28px;
}

.audience-item {
    padding: 24px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--red);
    border-radius: 6px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.audience-item:hover {
    border-color: var(--border-red);
    border-left-color: var(--red-hover);
}

.audience-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.audience-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PILARES — SEÇÃO UNIFICADA (cards + resultados)
   ============================================ */

/* Grid de cards */
.pilares-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
}

.pilar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--red);
    border-radius: 6px;
    padding: 28px 28px 24px;
    text-align: left;
}

.pilar-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.pilar-card-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 16px;
}

.pilar-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pilar-card-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-body);
    padding: 5px 0 5px 22px;
    position: relative;
    line-height: 1.65;
}

.pilar-card-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 600;
}

/* Resultados (abaixo dos cards) */
.pilares-resultados {
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.pilares-resultados-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
}

.resultado-list {
    list-style: none;
    margin: 16px auto 0;
    max-width: 580px;
}

.resultado-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    padding: 6px 0 6px 28px;
    position: relative;
    line-height: 1.7;
    text-align: left;
}

.resultado-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 0.9rem;
}

/* ============================================
   POSICIONAMENTO
   ============================================ */
.sec-posicionamento {
    text-align: center;
}

/* ============================================
   INFORMAÇÕES — GRID 4 COLUNAS
   ============================================ */
.info-grid {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 32px 0;
    margin-top: 20px;
}

.info-item {
    text-align: center;
    padding: 12px 8px;
}

.info-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-faint);
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 600;
}

.info-value--small {
    font-size: 1rem;
    line-height: 1.4;
}

/* ============================================
   PARA QUEM NÃO É
   ============================================ */
.nao-list {
    list-style: none;
    margin: 16px auto;
    max-width: 560px;
}

.nao-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--text-body);
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.nao-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ============================================
   CTA FINAL
   ============================================ */
.sec-cta-final {
    padding: 80px 0;
    text-align: center;
}

.sec-cta-final .section-title {
    font-size: 2.4rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-logo {
    max-width: 90px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
    opacity: 0.5;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-faint);
    font-weight: 300;
}

/* ============================================
   MODAL DE INSCRIÇÃO
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    position: relative;
    background: #111112;
    border: 1px solid var(--border-red);
    border-radius: 10px;
    max-width: 440px;
    width: 100%;
    padding: 44px 36px 36px;
    text-align: center;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(192, 57, 43, 0.06);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    padding: 4px 8px;
}

.modal-close:hover {
    color: var(--red);
}

.modal-logo {
    max-width: 72px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    opacity: 0.8;
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.modal-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 26px;
    line-height: 1.6;
}

.modal-sub em {
    color: var(--red);
    font-style: italic;
}

.modal-sub.accent {
    color: var(--red);
    margin-top: 16px;
}

.modal-field {
    text-align: left;
    margin-bottom: 16px;
}

.modal-field label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 500;
}

.modal-field input {
    width: 100%;
    padding: 13px 16px;
    background: #0a0a0b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.modal-field input::placeholder {
    color: #555;
}

.modal-field input:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

.modal-field input.input-error {
    border-color: #e74c3c;
}

.field-hint {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 0;
}

.label-opcional {
    font-weight: 300;
    color: #555;
    font-size: 0.78rem;
    letter-spacing: 0;
    text-transform: none;
}

.modal-erro {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #e74c3c;
    min-height: 20px;
    margin-bottom: 6px;
}

.modal-btn {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    font-size: 1.05rem;
    margin-top: 6px;
}

.modal-btn:disabled {
    opacity: 0.55;
    cursor: wait;
    transform: none !important;
    box-shadow: none !important;
}

.modal-btn:disabled:hover::after {
    animation: none;
}

.modal-privacy {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #555;
    margin-top: 18px;
    font-weight: 300;
}

.modal-privacy.modal-recaptcha {
    margin-top: 8px;
}

.modal-privacy.modal-recaptcha a {
    color: var(--red);
    text-decoration: none;
}

.modal-privacy.modal-recaptcha a:hover {
    text-decoration: underline;
}

/* Estado de sucesso */
.modal-success-state {
    display: none;
}

.modal-success-state.active {
    display: block;
}

.modal-form-state.hidden {
    display: none;
}

.modal-check-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.1);
    border: 2px solid var(--red);
    color: var(--red);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: checkPop 0.4s ease;
}

@keyframes checkPop {
    0%   { transform: scale(0.3); opacity: 0; }
    60%  { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

/* ============================================
   TRIÂNGULOS DECORATIVOS — profundidade + glow
   ============================================ */
.tri-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.tri {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, filter;
}

/* Camadas de profundidade */
.tri--far {
    opacity: 0.12;
    filter: blur(3px);
    animation: triFloat 8s ease-in-out infinite;
}

.tri--mid {
    opacity: 0.2;
    filter: blur(1.5px);
    animation: triFloat 6s ease-in-out infinite;
}

.tri--near {
    opacity: 0.35;
    filter: blur(0px);
    animation: triFloat 5s ease-in-out infinite;
}

@keyframes triFloat {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -6px; }
}

/* ============================================
   reCAPTCHA v3 — ocultar badge
   ============================================ */
.grecaptcha-badge {
    visibility: hidden !important;
}

/* ============================================
   ANIMAÇÕES — FADE IN
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* Hero — Ultra-wide (2560px+ e 3440px+): foto mais próxima do texto, não da borda */
@media (min-width: 2560px) {
    .hero .container {
        max-width: 1400px;
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero::before {
        background-size: auto 85vh;
        background-position: 78% center;
    }

    .hero-title {
        font-size: 4.4rem;
    }

    .hero-desc,
    .hero-emphasis {
        max-width: 580px;
    }
}

@media (min-width: 3440px) {
    .hero .container {
        max-width: 1600px;
        padding-left: 64px;
        padding-right: 64px;
    }

    .hero::before {
        background-size: auto 80vh;
        background-position: 75% center;
    }

    .hero-title {
        font-size: 4.8rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .sec-cta-final .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-container {
        min-height: auto;
    }

    .hero-row {
        flex-direction: column;
    }

    .hero::before {
        background-position: center bottom;
        opacity: 0.15;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        margin: 0 auto 24px;
    }

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

    .hero-title {
        font-size: 2.8rem;
        text-align: center;
    }

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

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

    .hero-desc {
        text-align: center;
        max-width: 100%;
    }

    .hero-emphasis {
        max-width: 100%;
        text-align: center;
    }

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

    .hero-accent-list {
        max-width: 100%;
    }

    .hero-accent-list li {
        text-align: center;
        padding-left: 0;
    }

    .hero-accent-list li::before {
        display: none;
    }

    .hero-photo-col {
        margin-top: 0;
    }

    .modal-card {
        padding: 36px 24px 28px;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .sec-cta-final .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .speaker-card {
        flex-direction: column;
    }

    .speaker-photo-wrap {
        min-height: 220px;
    }

    .speaker-info {
        padding: 24px;
    }

    .speaker-info .body-text.left {
        text-align: center;
    }

    .speaker-name,
    .speaker-role {
        text-align: center;
    }

    .sec-porque-hoje,
    .sec-diferencial,
    .sec-proposta,
    .sec-speaker,
    .sec-para-quem,
    .sec-pilares,
    .sec-pilar,
    .sec-resultados,
    .sec-posicionamento,
    .sec-investimento,
    .sec-info,
    .sec-nao-e,
    .sec-cta-final {
        padding: 52px 0;
    }

    .porque-desc {
        font-size: 1.1rem;
    }

    .info-item {
        margin-bottom: 14px;
    }

    .nao-list {
        text-align: left;
    }

    .proposta-tools {
        max-width: 100%;
    }

    .resultado-list {
        max-width: 100%;
    }

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

    .pilar-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .sec-cta-final .section-title {
        font-size: 1.5rem;
    }

    .btn-cta {
        padding: 13px 28px;
        font-size: 1rem;
    }

    .btn-cta--large {
        padding: 15px 36px;
        font-size: 1.05rem;
    }

    .modal-card {
        padding: 30px 18px 24px;
        margin: 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .speaker-photo-wrap {
        min-height: 200px;
    }

    .pilar-card-title {
        font-size: 1.1rem;
    }

    .pilar-card-list li {
        font-size: 0.9rem;
    }

    .pilares-resultados-title {
        font-size: 1.3rem;
    }
}
