/* ============================================
   VIP ACCESS — Landing page de alta conversão
   Paleta: azul (#0066ff), preto (#0a0a0f), branco
   ============================================ */

:root {
    --blue: #0066ff;
    --blue-light: #00a3ff;
    --blue-dark: #0033cc;
    --blue-deep: #001a66;
    --black: #0a0a0f;
    --black-2: #12121a;
    --black-3: #1a1a26;
    --white: #ffffff;
    --gray-100: #e8eaf0;
    --gray-300: #9ea4b3;
    --gray-500: #5a6075;

    --gradient-blue: linear-gradient(135deg, #00a3ff 0%, #0066ff 50%, #0033cc 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --gradient-cta: linear-gradient(135deg, #0066ff 0%, #00a3ff 100%);

    --glow-blue: 0 0 40px rgba(0, 102, 255, 0.6), 0 0 80px rgba(0, 163, 255, 0.3);
    --glow-blue-soft: 0 0 30px rgba(0, 102, 255, 0.35);

    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --container: 1200px;
    --section-pad: clamp(64px, 10vw, 120px);
}

/* ====== Reset / base ====== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 60px;
}

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

img, video, svg { max-width: 100%; display: block; }

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--blue); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ====== Helpers ====== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: var(--section-pad) 0; position: relative; }

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section__head h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section__head p {
    color: var(--gray-300);
    font-size: clamp(15px, 2vw, 18px);
}

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 163, 255, 0.3);
    color: var(--blue-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.text-gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ====== Botões ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-pill);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    will-change: transform;
}

.btn--primary {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: var(--glow-blue-soft), 0 8px 22px rgba(0, 102, 255, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glow-blue), 0 12px 30px rgba(0, 102, 255, 0.55);
    filter: brightness(1.1);
}

.btn--xl {
    padding: 20px 40px;
    font-size: clamp(15px, 2vw, 18px);
    letter-spacing: 0.02em;
}

.btn--pulse {
    animation: btnPulse 2.4s ease-in-out infinite;
}

.btn--glow {
    position: relative;
}

.btn--glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-blue);
    border-radius: inherit;
    z-index: -1;
    filter: blur(14px);
    opacity: 0.7;
    animation: glowPulse 2.4s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: var(--glow-blue-soft), 0 8px 22px rgba(0, 102, 255, 0.4); }
    50% { box-shadow: var(--glow-blue), 0 14px 32px rgba(0, 163, 255, 0.6); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 24px 60px;
    text-align: center;
    isolation: isolate;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 51, 153, 0.25) 0%, rgba(10, 10, 15, 0.85) 70%),
        linear-gradient(180deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.95) 100%);
    z-index: -1;
}

.hero__overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 60%, rgba(0, 102, 255, 0.18), transparent 60%);
}

.hero__content {
    max-width: 880px;
    width: 100%;
}

.hero__badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 102, 255, 0.15);
    border: 1px solid rgba(0, 163, 255, 0.4);
    color: var(--blue-light);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.3);
}

.hero__title {
    font-size: clamp(36px, 7vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero__subtitle {
    font-size: clamp(16px, 2.4vw, 22px);
    color: var(--gray-100);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.5;
}

.hero__subtitle strong { color: var(--blue-light); font-weight: 700; }

.hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
    color: var(--gray-300);
    font-size: 14px;
}

.hero__trust strong { color: var(--white); }

.hero__avatars {
    display: flex;
}

.hero__avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--black);
    margin-left: -10px;
    box-shadow: 0 0 12px rgba(0, 102, 255, 0.5);
}

.hero__avatars span:first-child { margin-left: 0; }

.hero__sound {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 12px;
    background: rgba(10, 10, 15, 0.65);
    border: 1px solid rgba(0, 163, 255, 0.4);
    color: var(--white);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 18px rgba(0, 102, 255, 0.25);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    animation: soundHint 2.6s ease-in-out 1.5s 3;
}

.hero__sound:hover {
    transform: translateY(-1px);
    background: rgba(0, 102, 255, 0.18);
    border-color: rgba(0, 163, 255, 0.7);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), 0 0 26px rgba(0, 163, 255, 0.45);
}

.hero__sound-icon {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--blue-light);
    flex-shrink: 0;
}

.hero__sound-icon svg {
    width: 20px;
    height: 20px;
    grid-area: 1 / 1;
    transition: opacity .25s ease, transform .25s ease;
}

.hero__sound .icon-unmute { opacity: 0; transform: scale(0.85); }
.hero__sound .icon-mute   { opacity: 1; transform: scale(1); }

.hero__sound.is-on .icon-mute   { opacity: 0; transform: scale(0.85); }
.hero__sound.is-on .icon-unmute { opacity: 1; transform: scale(1); }
.hero__sound.is-on .hero__sound-icon { color: #4dd590; }

@keyframes soundHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5), 0 0 32px rgba(0, 163, 255, 0.55); }
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    z-index: 1;
}

.hero__scroll span {
    width: 4px;
    height: 8px;
    background: var(--blue-light);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    background: var(--gradient-dark);
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.5), transparent);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.08), rgba(0, 102, 255, 0.02));
    border: 1px solid rgba(0, 163, 255, 0.15);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 2px;
    background: var(--gradient-blue);
    opacity: 0;
    transition: opacity .3s ease;
}

.benefit:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: var(--glow-blue-soft);
}

.benefit:hover::before { opacity: 1; }

.benefit__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--gradient-cta);
    border-radius: var(--radius-md);
    color: var(--white);
    margin-bottom: 22px;
    box-shadow: var(--glow-blue-soft);
}

.benefit__icon svg { width: 28px; height: 28px; }

.benefit h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.benefit p {
    color: var(--gray-300);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   PREVIEW (vídeo)
   ============================================ */
.preview {
    background: var(--black);
    position: relative;
}

.preview::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.preview__wrap {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.preview__player {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black-3);
    aspect-ratio: 16 / 9;
    box-shadow: var(--shadow-lg), var(--glow-blue-soft);
    border: 1px solid rgba(0, 163, 255, 0.25);
}

.preview__player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--black);
}

.preview__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--gradient-cta);
    display: grid;
    place-items: center;
    color: var(--white);
    box-shadow: var(--glow-blue), 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: transform .25s ease;
    z-index: 2;
}

.preview__play svg { width: 36px; height: 36px; margin-left: 4px; }

.preview__play:hover { transform: translate(-50%, -50%) scale(1.1); }

.preview__play::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 163, 255, 0.5);
    animation: ripple 1.8s ease-out infinite;
}

.preview__player.is-playing .preview__play { display: none; }

@keyframes ripple {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.preview__glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-blue);
    filter: blur(40px);
    opacity: 0.25;
    z-index: -1;
    border-radius: var(--radius-lg);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--gradient-dark);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.06), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(0, 163, 255, 0.15);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    transition: transform .3s ease, border-color .3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 163, 255, 0.4);
}

.testimonial__stars {
    color: #ffb800;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial__text {
    color: var(--gray-100);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 22px;
    font-style: italic;
}

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

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 0 16px rgba(0, 102, 255, 0.45);
}

.testimonial__author strong {
    display: block;
    font-size: 15px;
    color: var(--white);
}

.testimonial__author small {
    color: var(--gray-300);
    font-size: 13px;
}

/* ============================================
   SCARCITY
   ============================================ */
.scarcity {
    background: var(--black);
    position: relative;
}

.scarcity__box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.1), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 48px);
    box-shadow: var(--glow-blue-soft);
    position: relative;
    overflow: hidden;
}

.scarcity__box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12), transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scarcity__alert {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 70, 70, 0.15);
    border: 1px solid rgba(255, 90, 90, 0.4);
    color: #ff6868;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
}

.scarcity__box h2 {
    font-size: clamp(26px, 4.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    position: relative;
}

.scarcity__box > p {
    color: var(--gray-300);
    margin-bottom: 32px;
    position: relative;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 18px);
    margin: 32px 0;
    position: relative;
    flex-wrap: wrap;
}

.countdown__item {
    background: var(--gradient-cta);
    padding: clamp(14px, 2.5vw, 22px) clamp(14px, 3vw, 26px);
    border-radius: var(--radius-md);
    min-width: clamp(72px, 18vw, 110px);
    box-shadow: var(--glow-blue-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown__num {
    display: block;
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}

.countdown__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.countdown__sep {
    color: var(--blue-light);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    line-height: 1;
}

.scarcity__bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-pill);
    overflow: hidden;
    margin: 28px 0 14px;
    border: 1px solid rgba(0, 163, 255, 0.2);
    position: relative;
}

.scarcity__fill {
    height: 100%;
    background: var(--gradient-cta);
    width: 96.6%;
    border-radius: var(--radius-pill);
    transition: width 1s ease;
    box-shadow: 0 0 14px rgba(0, 163, 255, 0.7);
}

.scarcity__remaining {
    color: var(--gray-300);
    font-size: 14px;
    position: relative;
}

.scarcity__remaining span {
    color: #ff6868;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-final__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 102, 255, 0.25) 0%, transparent 60%),
        var(--gradient-dark);
    z-index: -1;
}

.cta-final__bg::before,
.cta-final__bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.cta-final__bg::before {
    top: -10%; left: -5%;
    width: 380px; height: 380px;
    background: var(--blue);
}

.cta-final__bg::after {
    bottom: -15%; right: -5%;
    width: 420px; height: 420px;
    background: var(--blue-light);
}

.cta-final h2 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 16px 0 18px;
}

.cta-final > .container > p {
    color: var(--gray-100);
    font-size: clamp(15px, 2vw, 19px);
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta-final__note {
    margin-top: 24px !important;
    color: var(--gray-300) !important;
    font-size: 14px !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black-2);
    border-top: 1px solid rgba(0, 163, 255, 0.15);
    padding: 64px 0 28px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.footer__brand p {
    color: var(--gray-300);
    font-size: 14px;
    max-width: 280px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.footer__nav a {
    color: var(--gray-300);
    font-size: 14px;
    transition: color .2s ease;
}

.footer__nav a:hover { color: var(--blue-light); }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--gray-500);
    font-size: 13px;
}

/* ============================================
   ONLINE BADGE (pessoas online agora)
   ============================================ */
.online-badge {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 12px;
    background: rgba(10, 10, 15, 0.78);
    border: 1px solid rgba(0, 163, 255, 0.35);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), 0 0 18px rgba(0, 102, 255, 0.25);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
}

.online-badge.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.online-badge__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22e07a;
    box-shadow: 0 0 0 0 rgba(34, 224, 122, 0.7);
    animation: onlinePulse 2s infinite;
    flex-shrink: 0;
}

.online-badge__text strong {
    color: #4dd590;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    margin-right: 2px;
}

@keyframes onlinePulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 224, 122, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(34, 224, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 224, 122, 0); }
}

/* ============================================
   TOAST STACK (popups de prova social)
   ============================================ */
.toast-stack {
    position: fixed;
    bottom: 100px;
    left: 16px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 340px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 12px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(18, 18, 30, 0.95));
    border: 1px solid rgba(0, 163, 255, 0.4);
    border-radius: var(--radius-md);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg), 0 0 24px rgba(0, 102, 255, 0.25);
    color: var(--white);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(-120%);
    transition: opacity .45s ease, transform .55s cubic-bezier(.2, .9, .3, 1.2);
    will-change: transform, opacity;
}

.toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.toast.is-leaving {
    opacity: 0;
    transform: translateX(-120%);
}

.toast__avatar {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 0 14px rgba(0, 102, 255, 0.5);
    position: relative;
}

.toast__avatar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 13px;
    height: 13px;
    background: #22e07a;
    border: 2px solid var(--black);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(34, 224, 122, 0.8);
}

.toast__body {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.toast__title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
}

.toast__title strong {
    color: var(--blue-light);
    font-weight: 700;
}

.toast__meta {
    font-size: 11.5px;
    color: var(--gray-300);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.toast__meta svg {
    width: 11px;
    height: 11px;
}

.toast__close {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1;
    border-radius: 50%;
    transition: color .2s ease, background .2s ease;
}

.toast__close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   TELEGRAM FLOAT
   ============================================ */
.telegram-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #2AABEE 0%, #0088cc 100%);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    box-shadow: 0 10px 26px rgba(0, 136, 204, 0.5);
    z-index: 100;
    transition: transform .25s ease;
    animation: floatPulse 3s ease-in-out infinite;
}

.telegram-float:hover { transform: scale(1.1); }

.telegram-float svg {
    width: 30px;
    height: 30px;
    transform: translateX(-1px); /* compensa o paper-plane levemente off-center */
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(0, 136, 204, 0.5); }
    50% { box-shadow: 0 10px 26px rgba(0, 136, 204, 0.5), 0 0 0 14px rgba(42, 171, 238, 0); }
}

/* ============================================
   ANIMAÇÕES SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    :root { --section-pad: 64px; }

    .hero { padding: 64px 20px 80px; }
    .hero__title { font-size: clamp(32px, 9vw, 48px); }
    .hero__subtitle { font-size: 16px; }

    .btn--xl { padding: 18px 28px; font-size: 15px; width: 100%; max-width: 360px; }

    .benefits__grid { grid-template-columns: 1fr; gap: 16px; }
    .benefit { padding: 28px 22px; }

    .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }

    .countdown { gap: 6px; }
    .countdown__sep { display: none; }
    .countdown__item { min-width: 0; flex: 1; padding: 14px 8px; }

    .footer__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }

    .telegram-float {
        width: 52px; height: 52px;
        bottom: 16px; right: 16px;
    }
    .telegram-float svg { width: 26px; height: 26px; }

    .online-badge {
        top: 12px;
        left: 50%;
        transform: translate(-50%, -12px);
        font-size: 12px;
        padding: 7px 12px 7px 10px;
    }
    .online-badge.is-visible {
        transform: translate(-50%, 0);
    }

    .toast-stack {
        bottom: 84px;
        left: 10px;
        right: 80px;
        max-width: none;
    }
    .toast {
        padding: 10px 14px 10px 10px;
    }
    .toast__avatar { width: 36px; height: 36px; font-size: 15px; }
    .toast__title { font-size: 13px; }
    .toast__meta { font-size: 11px; }

    .hero__scroll { display: none; }

    .hero__sound {
        top: 12px;
        right: 12px;
        padding: 9px 11px;
    }
    .hero__sound-label { display: none; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 30px; }
    .countdown__num { font-size: 24px; }
    .countdown__label { font-size: 9px; }
}
