/* ═══════════════════════════════════════════════════
   AGILIZAPROF — styles.css (revisado v2)
   ═══════════════════════════════════════════════════ */

/* ─── VARIÁVEIS ─────────────────────────────────── */
:root {
    --c-purple: #8B3DFF;
    --c-purple-deep: #4a1e9e;
    --c-dark: #0F0820;
    --c-dark-bg: #1a0a3a;
    --c-cyan: #0fafff;
    --c-cyan-bright: #00e5ff;
    --c-yellow: #ffffff; /* removido a pedido - era #ffd370 */
    --c-text: #ffffff;
    --c-muted: rgba(255, 255, 255, 0.9);
    --c-navy: #0a1d52;
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --radius: 24px;
    --radius-sm: 16px;
    --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.45);
    /* Tamanho único para todos os títulos de seção */
    --title-size: clamp(1.9rem, 3.2vw, 2.5rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    overflow-x: hidden;
    width: 100%;
}

/* Desativa scroll-snap no mobile para rolagem livre e natural */
@media (max-width: 900px) {
    html {
        scroll-snap-type: none;
    }
    section, header.hero {
        scroll-snap-align: none;
    }
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Cada seção vira um "painel" de navegação */
section,
header.hero {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

body {
    font-family: var(--font-main);
    color: var(--c-text);
    background:
        radial-gradient(ellipse at 20% 0%, rgba(170, 110, 255, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(80, 30, 180, 0.5) 0%, transparent 50%),
        linear-gradient(160deg, #5e23c4 0%, #3b1490 40%, #1a0a3a 100%);
    background-attachment: fixed;
    line-height: 1.7;
    letter-spacing: 0.1px;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

p {
    color: rgba(255, 255, 255, 0.92);
}

img,
video {
    max-width: 100%;
    display: block;
    border: none !important;
    outline: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Container largo para seções de imagens */
.container-wide {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2%;
}

section,
header {
    scroll-margin-top: 90px;
}

/* ─── REVEAL ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ─── BOTÕES ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: 800;
    font-size: clamp(0.82rem, 2.4vw, 0.95rem);
    letter-spacing: 0.8px;
    padding: clamp(12px, 3.2vw, 15px) clamp(20px, 5.5vw, 36px);
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    text-transform: uppercase;
    white-space: normal;
    max-width: 100%;
    line-height: 1.25;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-cyan {
    background: linear-gradient(180deg, #1977ff 0%, #5ecfff 70%);
    color: #fff;
    /* glow azul igual ao botão de referência */
    box-shadow:
        0 0 0 2px rgba(94, 207, 255, 0.35),
        0 10px 32px rgba(25, 119, 255, 0.55);
}

.btn-cyan:hover {
    filter: brightness(1.12);
    transform: translateY(-3px);
    box-shadow:
        0 0 0 2px rgba(94, 207, 255, 0.5),
        0 16px 44px rgba(25, 119, 255, 0.7);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-large {
    padding: clamp(15px, 3.8vw, 20px) clamp(28px, 7vw, 52px);
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    letter-spacing: 1.2px;
}

.btn-login {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 22px;
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 4, 32, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: padding 0.3s ease, background 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}

.logo img {
    height: 38px;
    width: 38px;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding: 120px 0 110px;
    text-align: center;
    position: relative;
    /* sem background próprio — usa o degradiente do body */
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero > .container {
    width: 96%;
    max-width: 1400px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 61, 255, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin: 0 auto 22px;
    font-style: italic;
}

.hero p.hero-sub {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.55;
    max-width: 760px;
    margin: 0 auto 32px;
    opacity: 0.92;
}

.hero-cta {
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 30px;
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 20px;
    font-size: 1.25rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    z-index: 2;
}

.hero-stats .star {
    color: #ffd700;
    margin-right: 4px;
}

.hero-stats b {
    color: #fff;
    font-weight: 800;
}

.hero-stats .sep {
    opacity: 0.35;
}

/* FUNDO ÚNICO — gerido pelo body; .page-bg é wrapper transparente */
.page-bg {
    color: #fff;
}

/* ─── PILL TÍTULO ───────────────────────────────── */
.pill-section {
    padding: 70px 20px 30px;
    text-align: center;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
}

.pill-container {
    display: inline-flex;
    max-width: 90vw;
    background: #0a0420;
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 18px 40px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.pill-container h1,
.pill-container h2 {
    font-size: var(--title-size);
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
    line-height: 1.3;
    /* Permite quebra quando necessário */
    white-space: normal;
    word-break: break-word;
}

.pill-container span {
    color: var(--c-yellow);
}

/* ═══════════════════════════════════════════════════
   FEATURE BLOCKS
   ═══════════════════════════════════════════════════ */
.fb {
    padding: 70px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

/* Painel visual — conteúdo "encaixado" com fundo sutil */
.fb > .container,
.sp > .container,
.tt > .container,
.pricing > .container,
.news > .container {
    background: rgba(15, 8, 40, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 48px 36px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.fb-head {
    text-align: center;
    margin-bottom: 28px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.fb-title {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.fb-sub {
    font-size: clamp(1.2rem, 1.9vw, 1.4rem);
    color: var(--c-muted);
    line-height: 1.6;
}

.fb-cta {
    margin-top: 28px;
    text-align: center;
}

/* ═══════════════════════════════════════════════════
   IMAGENS — tamanho natural em todas as seções
   (sem height forçado, sem min-height, sem cover)
   ═══════════════════════════════════════════════════ */

/* Reset global de imagens de feature — tamanho natural */
.card-white img,
.fb-reports-img img,
.fb-agenda img,
.fb-agenda-extra img,
.fb-assist-img img,
.fb-inclusao-hero img,
.fb-step img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 0;
    max-height: none;
    object-fit: unset;
    border: none !important;
    border-radius: 14px;
    background: transparent;
    flex: unset;
}

/* Cards que contêm imagens: moldura consistente */
.card-white,
.fb-reports-img,
.fb-agenda > *,
.fb-agenda-extra,
.fb-assist-img,
.fb-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-white:hover,
.fb-reports-img:hover,
.fb-agenda > *:hover,
.fb-agenda-extra:hover,
.fb-assist-img:hover,
.fb-step:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 61, 255, 0.35);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

/* Reset do VIDEO separado — sem sobrescrever estilo customizado */
.card-white video {
    width: 100% !important;
    display: block;
    background: transparent;
    border: none !important;
    flex: unset;
}

/* ── PLANEJAMENTO: 2 colunas lado a lado ── */
.fb-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.fb-2col .card-white {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fb-2col .card-white img,
.fb-2col .card-white video {
    width: 100%;
    object-fit: contain;
    min-height: 0;
}

.card-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.card-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 209, 255, 0.12);
    color: #e8f9ff;
    border: 1px solid rgba(0, 209, 255, 0.45);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-note {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* Vídeo dentro do card-white: tamanho natural, sem barras pretas */
.card-white video {
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    width: 100% !important;
    height: auto;
    display: block;
    background: #ffffff;
    border: none !important;
}

/* Proporção fixa vertical para o card do vídeo */
.card-white.is-video {
    overflow: hidden;
    border-radius: 12px;
}

.fb-2col .card-label {
    text-align: center;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    font-size: 1rem;
}

.fb-2col .card-label small {
    display: block;
    font-weight: 500;
    font-size: 0.82rem;
    margin-top: 3px;
    color: var(--c-muted);
    text-transform: none;
}

/* ── RELATÓRIOS: img | seta | img ── */
.fb-reports {
    display: grid;
    grid-template-columns: 1fr 88px 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fb-reports-img {
    display: block;
}

.fb-reports-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.fb-arrow-svg {
    width: 100%;
    max-width: 72px;
    height: auto;
    filter: drop-shadow(0 0 14px rgba(255, 51, 85, 0.55));
    animation: arrowPulse 2.4s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); filter: drop-shadow(0 0 10px rgba(255, 51, 85, 0.45)); }
    50%      { transform: translateX(4px); filter: drop-shadow(0 0 18px rgba(255, 77, 109, 0.75)); }
}

/* ── INCLUSÃO: hero + 3 passos ── */
.fb-inclusao-hero {
    display: block;
    max-width: 960px;
    margin: 0 auto 32px;
    padding: 10px;
}

.fb-inclusao-hero img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 14px;
    object-fit: cover;
    object-position: center top;
    max-height: 160px;
}

.fb-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.fb-step {
    background: transparent;
    text-align: center;
    transition: transform 0.3s ease;
    display: block;
    min-height: 0;
}

.fb-step:hover {
    transform: translateY(-4px);
}

.fb-step-tag {
    display: block;
    background: transparent;
    color: #ffffff;
    padding: 6px 0;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.fb-step img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: unset !important;
    display: block !important;
}

/* ── AGENDA: imagens lado a lado ── */
.fb-agenda {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.fb-agenda-2 {
    grid-template-columns: 7fr 3fr;
}

.fb-agenda-extra {
    margin: 20px auto 0;
    max-width: 1000px;
}

.fb-agenda-extra img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.fb-closing {
    margin-top: 28px;
    text-align: center;
    color: var(--c-text);
    font-size: clamp(1.1rem, 1.7vw, 1.2rem);
    line-height: 1.65;
    opacity: 0.92;
}

/* ── ASSISTENTE: imagem | texto ── */
.fb-assist {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 48px;
    align-items: stretch;
    max-width: 1280px;
    margin: 0 auto;
}

.fb-assist-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-assist-img img {
    width: 100%;
    height: auto;
}

.fb-assist-text {
    justify-content: space-between;
    padding-top: 0 !important;
}

.fb-assist-bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
}

.fb-assist-bullets li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.55;
}

.fb-assist-bullets li strong {
    color: #fff;
    font-weight: 700;
    font-family: inherit;
    font-style: normal;
    font-size: 1rem;
    display: inline;
    margin: 0;
}

.fb-bullet-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 760px) {
    .fb-assist-bullets { grid-template-columns: 1fr; }
}

.fb-assist-img {
    display: block;
}

.fb-assist-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 16px;
}

.fb-assist-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.1rem, 1.7vw, 1.2rem);
    line-height: 1.75;
    margin-bottom: 16px;
}

.fb-assist-text p strong {
    color: var(--c-yellow);
    display: block;
    font-size: 1.25rem;
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════
   DEPOIMENTOS — CARROSSEL (override abaixo do bloco)
   ═══════════════════════════════════════════════════ */

/* Card de áudio */
.testimonial-card.is-audio {
    background: linear-gradient(145deg, #14083a 0%, #1e0c50 100%);
    border-color: rgba(19, 224, 193, 0.35);
}

.tt-audio-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-head {
    text-align: center;
    margin-bottom: 18px;
}

.tt-audio-player--text {
    opacity: 0.7;
}

.tt-play-btn--static {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.tt-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--c-cyan-bright);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(19, 224, 193, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.tt-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(19, 224, 193, 0.6);
}

.tt-play-btn svg {
    width: 22px;
    height: 22px;
    fill: #082c2e;
}

.tt-play-btn.playing .icon-play {
    display: none;
}

.tt-play-btn:not(.playing) .icon-pause {
    display: none;
}

.tt-audio-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-cyan-bright);
    font-weight: 700;
}

.tt-audio-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.tt-audio-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--c-cyan-bright), var(--c-purple));
    border-radius: 4px;
    transition: width 0.4s linear;
}

/* ═══════════════════════════════════════════════════
   SUPERPODER
   ═══════════════════════════════════════════════════ */
.sp {
    padding: 70px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.sp h1 {
    font-family: var(--font-serif);
    color: #fff;
    margin-bottom: 14px;
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    white-space: normal;
    word-break: break-word;
}

.sp .sub {
    color: var(--c-muted);
    max-width: 820px;
    margin: 0 auto 50px;
    font-size: clamp(1.2rem, 1.9vw, 1.4rem);
    line-height: 1.6;
}

.sp-grid {
    display: grid;
    /* Grid de 2 colunas para comportar o layout 1-2 */
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto 22px;
}

/* O primeiro card ocupa as 2 colunas (Linha 1 completa) */
.sp-card:nth-child(1) {
    grid-column: 1 / -1;
}

.sp-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 26px 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.sp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.sp-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 3rem;
    background: transparent;
    border-radius: 14px;
    line-height: 1;
}

.sp-text {
    flex: 1;
}

.sp-card h4 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--c-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sp-card p {
    color: #2a2d3a;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}



.sp-closing-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 36px;
    box-sizing: border-box;
}

.sp-closing-images {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.sp-closing-images img {
    height: 78px;
    width: auto;
    display: block;
}

.sp-closing {
    color: var(--c-dark);
    font-weight: 700;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    margin: 0;
    line-height: 1.55;
    text-align: justify;
    text-justify: inter-word;
}

@media (max-width: 720px) {
    .sp-closing-row {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    .sp-closing-images { justify-content: center; }
    .sp-closing { text-align: center; }
}

/* ═══════════════════════════════════════════════════
   DEPOIMENTOS — CARROSSEL
   ═══════════════════════════════════════════════════ */
.tt {
    padding: 70px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.tt h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    white-space: normal;
    word-break: break-word;
}

.tt h2 span {
    color: var(--c-yellow);
}

.tt-carousel-wrap {
    max-width: 680px;
    margin: 0 auto;
}

.tt-carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}

.tt-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card de depoimento */
.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: linear-gradient(160deg, #1f0f4d 0%, #2a1066 100%);
    border: 1px solid rgba(139, 61, 255, 0.35);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.testimonial-card p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    font-style: normal;
    margin-bottom: 28px;
    position: relative;
}

.testimonial-card p::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--c-purple);
    opacity: 0.5;
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    font-family: var(--font-serif);
}

.testimonial-author {
    font-weight: 800;
    color: var(--c-cyan-bright);
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--c-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Navegação do carrossel */
.tt-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.tt-nav-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.tt-nav-btn:hover {
    background: var(--c-purple);
    border-color: var(--c-purple);
}

.tt-pagination {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.tt-pagination .current {
    color: var(--c-cyan-bright);
}

/* ═══════════════════════════════════════════════════
   MÍDIA
   ═══════════════════════════════════════════════════ */
.media {
    padding: 60px 0;
    text-align: center;
}

.media h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 30px;
}

.media-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.media-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px 52px;
    border-radius: 100px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
    transition: transform 0.25s ease;
}

.media-pill:hover {
    transform: translateY(-3px);
}

/* Reset do estilo global para o logo UOL dentro da pill branca */
.media-pill img {
    width: auto !important;
    height: auto !important;
    max-height: 64px !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    display: block;
}

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.pricing {
    padding: 70px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.pricing h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: normal;
    word-break: break-word;
    padding: 0 12px;
}

.pricing .sub {
    color: var(--c-muted);
    max-width: 860px;
    margin: 0 auto 12px;
    font-size: clamp(1.2rem, 1.9vw, 1.4rem);
    line-height: 1.6;
}

.pricing .cost {
    color: var(--c-muted);
    margin: 0 auto 28px;
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
}

.pricing-price {
    margin-bottom: 40px;
}

.pricing-price .big {
    font-size: clamp(4rem, 11vw, 7rem);
    font-weight: 800;
    color: var(--c-cyan-bright);
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 0 6px 30px rgba(19, 224, 193, 0.35);
}

.pricing-price .meta {
    font-size: 1.15rem;
    margin-top: 6px;
    color: #fff;
}

.pricing-price .total-year {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    letter-spacing: 0.3px;
}
.pricing-price .total-year strong {
    color: #fff;
    font-weight: 700;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto 36px;
    text-align: left;
}

.p-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.p-card.highlight {
    background: linear-gradient(160deg, rgba(139, 61, 255, 0.22), rgba(19, 163, 181, 0.10));
    border-color: var(--c-cyan);
    box-shadow: 0 22px 50px rgba(19, 163, 181, 0.18);
}

.p-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-cyan-bright);
    color: #082c2e;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.p-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.p-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}

.p-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-card li::before {
    content: '✓';
    color: var(--c-cyan-bright);
    font-weight: 800;
    flex-shrink: 0;
}

.p-card .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.p-card .price strong {
    color: var(--c-cyan-bright);
    font-size: 2rem;
}

.p-card .price-sub {
    font-size: 0.82rem;
    color: var(--c-muted);
    margin-bottom: 18px;
}

.p-card .btn {
    width: 100%;
}

.p-trial {
    margin-top: 22px;
    color: var(--c-muted);
    font-size: 1.15rem;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   PERFEITO PARA PROFESSOR
   ═══════════════════════════════════════════════════ */
.target {
    padding: 0 0 60px;
    text-align: center;
}

.target > .container {
    padding-top: 20px;
}

.target-banner {
    /* Faixa 100% da largura da página */
    width: 100%;
    background: var(--c-navy);
    color: #fff;
    padding: 28px 40px;
    margin: 0 0 36px;
    text-align: center;
}

.target-banner h1,
.target-banner h2 {
    margin: 0 auto;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.target-pill {
    background: #fff;
    color: var(--c-dark);
    border-radius: 60px;
    padding: 26px 50px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.target-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.target-row .dash {
    color: var(--c-purple);
}

/* ═══════════════════════════════════════════════════
   ESTIVEMOS EM JORNAIS — CARROSSEL
   ═══════════════════════════════════════════════════ */
.news {
    padding: 70px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.news h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

.news-carousel-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.news-carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}

.news-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card {
    flex: 0 0 100%;
    width: 100%;
    background: linear-gradient(160deg, rgba(15, 8, 40, 0.85), rgba(40, 15, 90, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.40);
    position: relative;
    overflow: hidden;
}

.news-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(139, 61, 255, 0.45) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.news-card>* {
    position: relative;
    z-index: 1;
}

.news-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: block;
}

.news-tag {
    color: #4699ed;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.news-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    line-height: 1.35;
    color: #fff;
    margin-bottom: 18px;
}

.news-excerpt {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    text-align: left;
    border-left: 3px solid rgba(139, 61, 255, 0.5);
    padding-left: 14px;
}

/* Navegação notícias */
.news-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.news-nav-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.news-nav-btn:hover {
    background: var(--c-purple);
    border-color: var(--c-purple);
}

.news-pagination {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
}

.news-pagination .current {
    color: var(--c-cyan-bright);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
    background: #080318;
    padding: 36px 0 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    margin-left: 16px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 66px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 66px);
        background: rgba(10, 4, 32, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 0;
        gap: 30px;
        transition: left 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 24px;
    }

    .nav-actions {
        flex-direction: column;
        gap: 14px;
        width: 80%;
    }

    .nav-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 900px) {

    .fb-2col,
    .fb-3col,
    .fb-agenda,
    .fb-agenda-2,
    .sp-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .fb-reports {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fb-reports-arrow {
        transform: rotate(90deg);
    }

    .fb-assist {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .fb,
    .sp,
    .tt,
    .pricing,
    .news {
        padding: 50px 0;
        min-height: auto;
    }

    .fb > .container,
    .sp > .container,
    .tt > .container,
    .pricing > .container,
    .news > .container {
        padding: 32px 20px;
        border-radius: 22px;
    }

    .hero {
        padding: 100px 0 140px;
        min-height: 100vh;
    }

    .hero-stats {
        font-size: 0.95rem;
        padding: 16px 18px;
        gap: 10px 14px;
        width: 100%;
        margin: 0;
    }

    .hero-stats .sep {
        display: none;
    }

    .tt-carousel-wrap,
    .news-carousel-wrap {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .target-pill {
        padding: 22px 24px;
        border-radius: 28px;
    }

    .target-row {
        font-size: 1rem;
        gap: 12px;
    }

    .p-card {
        padding: 28px 20px;
    }

    .news-card {
        padding: 28px 18px;
    }

    .news-card .btn {
        white-space: normal;
        padding: 14px 22px;
        line-height: 1.3;
        max-width: 100%;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .pill-container {
        padding: 14px 20px;
        white-space: normal;
        border-radius: 24px;
        text-align: center;
        max-width: 90vw;
    }

    .pill-container h1,
    .pill-container h2 {
        white-space: normal;
        font-size: 1.25rem;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 8px;
    }

    /* Subtítulos maiores no mobile para melhor legibilidade */
    .hero p.hero-sub {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .fb-sub {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 8px;
    }

    .sp .sub,
    .pricing .sub {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 8px;
    }

    .pricing .cost {
        font-size: 1.05rem;
    }

    .fb-closing {
        font-size: 1.1rem;
        line-height: 1.65;
        padding: 0 10px;
    }

    .fb-assist-text p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .p-trial {
        font-size: 1.05rem;
    }

    /* Hero stats mais legíveis no mobile */
    .hero-stats {
        font-size: 0.95rem;
    }

    /* Painéis ocupam toda a largura útil no celular */
    .container,
    .hero > .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .fb > .container,
    .sp > .container,
    .tt > .container,
    .pricing > .container,
    .news > .container {
        padding: 26px 16px;
        border-radius: 18px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .fb,
    .sp,
    .tt,
    .pricing,
    .news {
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }

    .fb,
    .sp,
    .tt,
    .pricing,
    .news {
        padding: 40px 0;
    }

    .pill-section {
        padding: 50px 16px 20px;
    }

    /* ─── Centralização global de texto no mobile ─── */
    .fb > .container,
    .sp > .container,
    .tt > .container,
    .pricing > .container,
    .news > .container,
    .fb-head,
    .fb-assist,
    .fb-assist-text,
    .fb-assist-text p,
    .fb-reports-text,
    .sp-card,
    .sp-text,
    .sp-text p,
    .sp-text h4,
    .card-white,
    .card-note,
    .card-foot,
    .sp-closing-row,
    .sp-closing,
    .sp-closing-images,
    .fb-closing,
    .testimonial-card,
    .testimonial-head,
    .news-card,
    .p-card,
    .p-card ul,
    .p-card li {
        text-align: center !important;
    }

    .card-foot,
    .fb-assist-bullets,
    .sp-closing-images {
        justify-content: center !important;
    }

    .fb-assist-bullets li,
    .p-card ul li {
        justify-content: center;
        text-align: center;
    }

    .fb-assist-bullets li > div {
        text-align: center;
    }

    /* ─── Cards dos diferenciais menores no mobile ─── */
    .sp-card {
        padding: 18px 16px;
        gap: 10px;
        flex-direction: column;
    }
    .sp-icon {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }
    .sp-card h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .sp-card p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    .sp-grid {
        gap: 14px;
    }

    /* sp-closing row mais compacto */
    .sp-closing-row {
        padding: 18px 14px;
        gap: 12px;
    }
    .sp-closing-images img {
        height: 54px;
    }
    .sp-closing {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* ─── Dispositivos muito pequenos (< 400px) ─── */
@media (max-width: 400px) {
    .container,
    .hero > .container {
        width: 100%;
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        margin: 0;
        box-sizing: border-box;
    }

    .fb > .container,
    .sp > .container,
    .tt > .container,
    .pricing > .container,
    .news > .container {
        padding: 22px 14px;
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .fb,
    .sp,
    .tt,
    .pricing,
    .news {
        padding-left: 6px;
        padding-right: 6px;
        box-sizing: border-box;
    }

    .btn {
        padding: 11px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 0.92rem;
    }

    .hero h1 {
        font-size: 1.6rem !important;
    }

    .hero-stats {
        font-size: 0.82rem;
        padding: 12px 10px;
        gap: 6px 10px;
    }

    .testimonial-card,
    .news-card,
    .p-card {
        padding: 22px 14px;
    }

    .sp-closing-row {
        padding: 20px 14px;
    }

    .fb-title,
    .sp > .container > h1,
    .tt > .container > h1,
    .pricing > .container > h1 {
        font-size: 1.5rem !important;
    }
}

/* ═══════════════════════════════════════════════════
   TÍTULOS — tamanho unificado em toda a página
   (aplica-se apenas a títulos de seção)
   ═══════════════════════════════════════════════════ */
.fb-title,
.sp > .container > h1,
.tt > .container > h1,
.media h1,
.media h2,
.pricing > .container > h1,
.target-banner h1,
.target-banner h2,
.news > .container > h1,
.pill-container h1,
.pill-container h2 {
    font-size: var(--title-size) !important;
    font-family: var(--font-serif) !important;
    font-weight: 700;
    line-height: 1.2;
}

/* Override de estilo de título aplica-se APENAS aos títulos de seção,
   preservando o estilo de títulos de card (sp-card h4, p-card h4, etc.) */
.pill-container h1,
.pill-container h2,
.target-banner h1,
.target-banner h2,
.sp > .container > h1,
.tt > .container > h1,
.pricing > .container > h1,
.news > .container > h1,
.fb-title {
    text-transform: none !important;
    font-family: var(--font-serif) !important;
    font-style: italic !important;
}

/* Hero: mantém tamanho maior pois é o título principal da página */
.hero h1,
header h1 {
    font-size: clamp(2.4rem, 5.6vw, 4.2rem) !important;
}


a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--c-cyan);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ─── SELEÇÃO ──────────────────────────────────── */
::selection {
    background: var(--c-purple);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   OVERRIDES FINAIS — garantia de segurança
   ═══════════════════════════════════════════════════ */

/* Nenhuma imagem do site recebe height forçado */
.fb-step img,
.fb-inclusao-hero img,
.fb-agenda img,
.fb-agenda-extra img,
.fb-assist-img img,
.fb-reports-img img,
.card-white img {
    height: auto !important;
    min-height: 0 !important;
    object-fit: unset !important;
    flex: unset !important;
    border: none !important;
}

/* Vídeo: tamanho natural do arquivo */
.card-white video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: unset !important;
    object-fit: unset !important;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    background: #ffffff;
    display: block;
    border: none !important;
    flex: unset;
    min-height: unset !important;
}

/* Containers de passo: sem altura artificial */
.fb-step {
    height: auto !important;
    min-height: 0 !important;
}