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

:root {
    --gold: #ffc629;
    --gold-light: #ffe169;
    --gold-dark: #c8920a;
    --red: #c41e3a;
    --red-glow: #ff1744;
    --green: #00693e;
    --black: #0a0a0a;
    --dark: #111;
    --darker: #060606;
    --telegram: #0088cc;
    --telegram-dark: #006da3;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: #f2f2f2;
}

/* ============ DESKTOP HERO ============ */
.hero-desktop {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--darker);
}

/* Guilherme background image - desktop */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero-bg-image .gradient-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--darker) 0%, rgba(6,6,6,0.92) 30%, rgba(6,6,6,0.7) 50%, rgba(6,6,6,0.3) 70%, transparent 85%);
}

.hero-bg-image .gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--darker) 0%, rgba(6,6,6,0.4) 25%, transparent 50%);
}

.hero-bg-image .gradient-top {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6,6,6,0.5) 0%, transparent 20%);
}

/* ============ MOBILE HERO ============ */
.hero-mobile {
    display: none;
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--darker);
}

/* Grid overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 198, 41, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 198, 41, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 3;
}

/* Gold glowing orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 4;
}

.glow-orb.gold-1 {
    width: 500px;
    height: 500px;
    top: -15%;
    left: -5%;
    background: radial-gradient(circle, rgba(255, 198, 41, 0.12) 0%, transparent 70%);
}

.glow-orb.gold-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: 20%;
    background: radial-gradient(circle, rgba(255, 198, 41, 0.08) 0%, transparent 70%);
}

.glow-orb.red-1 {
    width: 600px;
    height: 600px;
    top: 30%;
    right: 20%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.06) 0%, transparent 70%);
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 3s ease-in-out infinite;
    z-index: 5;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* ============ DESKTOP CONTENT ============ */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    padding: 2rem 3rem;
    width: 100%;
    margin-left: 3rem;
}

/* Instagram proof card */
.ig-proof {
    position: relative;
    flex: 0 0 auto;
}

.ig-frame {
    position: relative;
    width: 260px;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--dark), var(--dark)) padding-box,
                linear-gradient(135deg, var(--gold), #c41e3a, var(--gold-dark)) border-box;
    box-shadow:
        0 0 40px rgba(255, 198, 41, 0.15),
        0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.4s, box-shadow 0.4s;
}

.ig-frame:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow:
        0 0 70px rgba(255, 198, 41, 0.25),
        0 25px 60px rgba(0,0,0,0.6);
}

.ig-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.ig-verified-label {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    font-weight: 800;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    padding: 0.4rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(193, 53, 132, 0.4);
}

.ig-followers-tag {
    position: absolute;
    top: 12px;
    right: -10px;
    z-index: 5;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #1a1a1a;
    font-weight: 900;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.8rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: tagFloat 3s ease-in-out infinite;
}

@keyframes tagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Text side */
.text-side {
    flex: 1;
}

.top-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(196, 30, 58, 0.12);
    border: 1px solid rgba(255, 60, 90, 0.35);
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2a9fe0;
    margin-bottom: 1.5rem;
}

.top-label .dot {
    width: 6px;
    height: 6px;
    background: var(--red-glow);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 23, 68, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.text-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-red {
    background: linear-gradient(135deg, #6cc4ff, #2a9fe0, #0a5fc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 3px 16px rgba(42, 159, 224, 0.35));
}

.text-white-gradient {
    background: linear-gradient(180deg, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f5f5f7;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.hero-desc {
    font-size: 1rem;
    color: #c9c9c9;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 1.75rem;
}

.hero-desc strong {
    color: #fff;
    font-weight: 600;
}

.hero-desc .highlight {
    color: #a3e635;
    font-weight: 700;
    text-shadow: 0 0 14px rgba(163, 230, 53, 0.35);
}

.hero-desc .red-highlight {
    color: #2a9fe0;
    font-weight: 700;
    text-transform: uppercase;
}

/* Live info */
.live-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2.25rem;
    color: #aaa;
    font-size: 0.95rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff0040;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 64, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(255, 0, 64, 0); }
}

.live-info strong {
    color: #fff;
    font-weight: 600;
}

/* CTA Buttons container */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 420px;
}

/* Telegram CTA Button */
.btn-telegram {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, var(--telegram-dark), var(--telegram), #00aaee);
    background-size: 200% 200%;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        0 0 40px rgba(255, 198, 41, 0.3),
        0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: shimmerTg 3s ease-in-out infinite, btnPulseTg 3s ease-in-out infinite;
    overflow: hidden;
}

.btn-telegram::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    animation: btnShine 4s ease-in-out infinite;
}

@keyframes shimmerTg {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes btnPulseTg {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 198, 41, 0.3), 0 10px 30px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 80px rgba(255, 198, 41, 0.5), 0 10px 40px rgba(0,0,0,0.3); }
}

@keyframes btnShine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.btn-telegram:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 100px rgba(255, 198, 41, 0.5), 0 15px 40px rgba(0,0,0,0.4);
}

.btn-telegram svg {
    flex-shrink: 0;
}

/* Free badge */
.free-badge {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

/* Stats bar */
.stats-bar {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 198, 41, 0.15);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 900;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 198, 41, 0.3), transparent);
}

/* Bottom decorative bar */
.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
    z-index: 20;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-in-left { animation: fadeInLeft 0.8s ease-out both; }
.animate-in-right { animation: fadeInRight 0.8s ease-out both; animation-delay: 0.2s; }
.animate-in-up { animation: fadeInUp 0.8s ease-out both; }
.animate-in-scale { animation: fadeInScale 0.8s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }

/* ============ MOBILE HERO STYLES ============ */

.mobile-photo-area {
    position: relative;
    width: 100%;
    height: 52svh;
    overflow: hidden;
}

.mobile-photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    transform: scale(1);
}

.mobile-photo-area .mobile-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6,6,6,0.2) 0%,
        transparent 20%,
        transparent 50%,
        rgba(6,6,6,0.7) 75%,
        var(--darker) 100%
    );
}

.mobile-photo-area .corner-accent {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    opacity: 0.4;
    z-index: 3;
}

.mobile-photo-area .corner-accent.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; border-radius: 8px 0 0 0; }
.mobile-photo-area .corner-accent.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; border-radius: 0 8px 0 0; }
.mobile-photo-area .corner-accent.bl { bottom: 60px; left: 12px; border-right: none; border-top: none; border-radius: 0 0 0 8px; }
.mobile-photo-area .corner-accent.br { bottom: 60px; right: 12px; border-left: none; border-top: none; border-radius: 0 0 8px 0; }

.mobile-photo-area .mobile-vip {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: #1a1a1a;
    font-weight: 900;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    padding: 0.4rem 1.25rem;
    border-radius: 9999px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(255, 198, 41, 0.5);
    white-space: nowrap;
}

.mobile-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.25rem 1rem;
    margin-top: -2rem;
}

.mobile-content .top-label {
    margin-bottom: 0.75rem;
    font-size: 0.55rem;
    padding: 0.35rem 0.9rem;
}

.mobile-content .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.mobile-content .hero-copy {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.mobile-content .hero-desc {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    max-width: 340px;
    line-height: 1.7;
}

.mobile-content .live-info {
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

.mobile-content .btn-telegram {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
}

.mobile-bottom-row {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem 1rem;
}

.mobile-bottom-row .ig-mini {
    flex: 0 0 auto;
    position: relative;
}

.mobile-bottom-row .ig-mini-frame {
    width: 120px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--dark), var(--dark)) padding-box,
                linear-gradient(135deg, var(--gold), #c41e3a) border-box;
    box-shadow: 0 0 20px rgba(255, 198, 41, 0.15), 0 8px 25px rgba(0,0,0,0.4);
}

.mobile-bottom-row .ig-mini-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-bottom-row .ig-mini-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #833ab4, #c13584, #e1306c);
    color: white;
    font-weight: 800;
    font-size: 0.45rem;
    letter-spacing: 0.15em;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 0 12px rgba(193, 53, 132, 0.4);
}

.mobile-stats-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 198, 41, 0.04);
    border: 1px solid rgba(255, 198, 41, 0.1);
    border-radius: 0.6rem;
    padding: 0.45rem 0.75rem;
}

.mobile-stat .ms-number {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 900;
}

.mobile-stat .ms-label {
    font-size: 0.55rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mobile-suits {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    padding-bottom: 0.75rem;
    opacity: 0.12;
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

/* Mobile Instagram section */
.mobile-ig-section {
    position: relative;
    z-index: 10;
    padding: 1rem 1.25rem 1.5rem;
}

.mobile-ig-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid transparent;
    background: linear-gradient(var(--dark), var(--dark)) padding-box,
                linear-gradient(135deg, var(--gold), #c41e3a, var(--gold-dark)) border-box;
    box-shadow:
        0 0 30px rgba(255, 198, 41, 0.12),
        0 15px 40px rgba(0,0,0,0.4);
}

.mobile-ig-card img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-ig-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #1a1a1a;
    font-weight: 900;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.mobile-ig-badge {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem;
    background: linear-gradient(135deg, #405de6, #5851db, #833ab4, #c13584, #e1306c);
    color: white;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============ SHOW/HIDE LOGIC ============ */
.hero-mobile { display: none; }
.hero-desktop { display: flex; }

@media (max-width: 768px) {
    .hero-desktop { display: none !important; }
    .hero-mobile { display: block !important; }
}

/* ============ DESKTOP RESPONSIVE ============ */
@media (min-width: 769px) and (max-width: 1100px) {
    .hero-content {
        gap: 2rem;
        padding: 2rem 2rem;
        margin-left: 1rem;
    }

    .ig-frame {
        width: 210px;
    }

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

    .hero-copy {
        font-size: 1.2rem;
    }
}

/* ============ PROVAS SOCIAIS SECTION ============ */
.provas-section {
    position: relative;
    padding: 5rem 0;
    background: var(--darker);
    overflow: hidden;
}

.provas-section .section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--darker), rgba(196, 30, 58, 0.03), var(--darker));
}

.provas-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.provas-header {
    text-align: center;
    margin-bottom: 3rem;
}

.provas-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.45rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(255, 198, 41, 0.08);
    border: 1px solid rgba(255, 198, 41, 0.25);
    color: var(--gold);
    margin-bottom: 1rem;
}

.provas-header .section-badge .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

.provas-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
}

.provas-grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    cursor: grab;
    scrollbar-width: none;
}

.provas-grid::-webkit-scrollbar {
    display: none;
}

.provas-grid.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

/* Scroll indicators */
.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: hintPulse 2s ease-in-out infinite;
}

.scroll-hint svg {
    animation: hintSlide 1.5s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes hintSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

/* Progress bar */
.scroll-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 198, 41, 0.1);
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.scroll-progress-bar {
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--gold), var(--red));
    border-radius: 3px;
    transition: transform 0.1s;
}

.prova-card {
    position: relative;
    background: var(--dark);
    border: 1px solid rgba(255, 198, 41, 0.12);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    flex: 0 0 220px;
    scroll-snap-align: start;
    opacity: 0;
    transform: translateY(40px);
}

.prova-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.prova-card:nth-child(1) { transition-delay: 0s; }
.prova-card:nth-child(2) { transition-delay: 0.1s; }
.prova-card:nth-child(3) { transition-delay: 0.2s; }
.prova-card:nth-child(4) { transition-delay: 0.3s; }
.prova-card:nth-child(5) { transition-delay: 0.4s; }
.prova-card:nth-child(6) { transition-delay: 0.5s; }
.prova-card:nth-child(7) { transition-delay: 0.6s; }
.prova-card:nth-child(8) { transition-delay: 0.7s; }
.prova-card:nth-child(9) { transition-delay: 0.8s; }

.prova-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--red), var(--gold));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.prova-card:hover::before {
    opacity: 1;
}

.prova-card:hover {
    border-color: transparent;
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255, 198, 41, 0.12);
}

.prova-card .video-wrap {
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #000;
    position: relative;
}

.prova-card video,
.prova-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.prova-card:hover video,
.prova-card:hover img {
    transform: scale(1.05);
}

/* Play overlay */
.prova-card .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    z-index: 2;
    transition: opacity 0.3s;
    pointer-events: none;
}

.prova-card .play-overlay .play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 198, 41, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 198, 41, 0.4);
    transition: transform 0.3s;
}

.prova-card:hover .play-overlay .play-btn {
    transform: scale(1.15);
}

.prova-card.playing .play-overlay {
    opacity: 0;
}

.prova-card .play-overlay .play-btn svg {
    margin-left: 3px;
}

.prova-card .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 198, 41, 0.3);
    color: var(--gold);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem;
    border-radius: 0.4rem;
    text-transform: uppercase;
    z-index: 3;
}

/* Number indicator */
.prova-card .card-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 198, 41, 0.2);
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 900;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.provas-cta {
    text-align: center;
    margin-top: 3rem;
}

.provas-cta .btn-telegram {
    display: inline-flex;
}

.provas-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 198, 41, 0.3), rgba(196, 30, 58, 0.3), rgba(255, 198, 41, 0.3), transparent);
}

@media (max-width: 640px) {
    .provas-section {
        padding: 3rem 0;
    }

    .provas-grid {
        gap: 0.75rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .prova-card {
        flex: 0 0 65vw;
    }

    .provas-header {
        margin-bottom: 1.5rem;
    }

    .provas-header h2 {
        font-size: 1.35rem;
    }

    .prova-card .card-badge {
        font-size: 0.45rem;
        padding: 0.2rem 0.45rem;
        top: 6px;
        left: 6px;
    }

    .prova-card .card-number {
        width: 26px;
        height: 26px;
        font-size: 1rem;
        bottom: 6px;
        right: 6px;
    }

    .prova-card .play-overlay .play-btn {
        width: 40px;
        height: 40px;
    }

    .provas-cta {
        margin-top: 2rem;
    }

    .provas-cta .btn-telegram {
        width: 100%;
        justify-content: center;
        font-size: 0.8rem;
        padding: 1rem 1.5rem;
    }
}

/* ============ SMALL MOBILE ============ */
@media (max-width: 380px) {
    .mobile-photo-area {
        height: 46svh;
    }

    .mobile-content .hero-title {
        font-size: 1.5rem;
    }

    .mobile-content .hero-copy {
        font-size: 0.875rem;
    }

    .mobile-content .live-info {
        font-size: 0.7rem;
    }

    .mobile-bottom-row .ig-mini-frame {
        width: 100px;
    }

    .mobile-stat .ms-number {
        font-size: 0.9rem;
    }
}
/* ============ AVIATOR & PREMIUM ENHANCEMENTS ============ */

/* Rising red particles */
.red-particle {
    position: absolute;
    bottom: -14px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff3b5c 0%, rgba(196,30,58,0.5) 55%, transparent 72%);
    box-shadow: 0 0 10px 2px rgba(255,23,68,0.45);
    pointer-events: none;
    z-index: 5;
    animation: redRise linear infinite;
    will-change: transform, opacity;
}

@keyframes redRise {
    0%   { transform: translateY(0) scale(0.4); opacity: 0; }
    8%   { opacity: 0.85; }
    88%  { opacity: 0.85; }
    100% { transform: translateY(-108vh) scale(1.05); opacity: 0; }
}

/* ============ FOOTER ============ */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, var(--darker) 0%, #000 100%);
    border-top: 1px solid rgba(255, 198, 41,0.18);
    padding: 3.5rem 1.5rem 2.5rem;
    text-align: center;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 240px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
    box-shadow: 0 0 18px rgba(255, 198, 41,0.4);
}
.footer-inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    z-index: 2;
}
.footer-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px; height: 58px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: rgba(196,30,58,0.12);
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: 0 0 24px rgba(196,30,58,0.35);
    margin-bottom: 1.5rem;
}
.footer-warn {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 1.75rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #9a9a9a;
}
.footer-warn svg { flex: 0 0 auto; margin-top: 3px; color: var(--gold); }
.footer-warn strong { color: #d8d8d8; }
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}
.footer-copy {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 0.06em;
}

@media (max-width: 768px) {
    .footer-warn { font-size: 0.8rem; }
}

/* Floating sticky Telegram CTA */
.float-cta {
    position: fixed;
    z-index: 9999;
    right: 1.25rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.4rem;
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--telegram-dark), var(--telegram), #00aaee);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
    animation: floatPulse 2.2s ease-in-out infinite;
}
.float-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.float-cta svg { flex: 0 0 auto; }
.float-cta .float-free {
    background: var(--gold);
    color: #1a1a1a;
    font-size: 0.62rem;
    font-weight: 900;
    padding: 0.15rem 0.4rem;
    border-radius: 5px;
    letter-spacing: 0.05em;
}
@keyframes floatPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 24px rgba(0,136,204,0.4); }
    50% { box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 40px rgba(0,136,204,0.65); }
}
@media (max-width: 640px) {
    .float-cta {
        right: 50%;
        bottom: 0.9rem;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        transform: translate(50%, 20px) scale(0.9);
    }
    .float-cta.show { transform: translate(50%, 0) scale(1); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .red-particle, .float-cta { animation: none !important; }
}
