/* 
   STREETWEAR PREMIUM PACK - WHITE STREET THEME 3.0
   Design: White, High Contrast, Aggressive, Conversion-first
*/

:root {
    --bg-white: #FFFFFF;
    --bg-grey: #F3F3F3;
    --black: #0F0F0F;
    --purple: #7B2CFF;
    --purple-hover: #5A1FD1;
    --text-sec: #6B6B6B;
    --border: #E0E0E0;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--black);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-purple {
    color: var(--purple);
}

/* --- HERO SECTION --- */
.hero {
    padding: 120px 0 100px;
    background-color: var(--bg-white);
    text-align: center;
}

.eyebrow-container {
    margin-bottom: 24px;
}

.eyebrow-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-sec);
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.subheadline-text {
    font-size: 1.15rem;
    color: var(--text-sec);
    max-width: 750px;
    margin: 0 auto 48px;
}

/* --- BUTTONS --- */
.btn-cta {
    background-color: var(--purple);
    color: #FFFFFF;
    padding: 20px 48px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(123, 44, 255, 0.2);
}

.btn-cta:hover {
    background-color: var(--purple-hover);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(123, 44, 255, 0.3);
}

.btn-secondary {
    background-color: var(--black);
    color: #FFFFFF;
}

/* --- PREVIEW SECTION --- */
.preview-section {
    padding: 0 0 100px;
    background-color: var(--bg-white);
}

.preview-frame {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    background-color: var(--bg-white);
    border: 2px solid var(--purple);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(123, 44, 255, 0.15);
    overflow: hidden;
    position: relative;
}

.preview-gif {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zoom-trigger {
    display: none;
    /* Hidden by default (Desktop) */
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--purple);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(123, 44, 255, 0.4);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.preview-frame.is-zoomed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    background: rgba(0, 0, 0, 0.98) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.modal-open .reveal,
body.modal-open .container,
body.modal-open .preview-section {
    transform: none !important;
    transition: none !important;
    /* Desabilita o delay de 1s do efeito reveal */
    perspective: none !important;
    filter: none !important;
}

/* Remove a transição da imagem quando estiver no zoom para ser instantâneo */
.preview-frame.is-zoomed .preview-gif {
    position: relative;
    z-index: 1000000;
    width: 95vw !important;
    height: 90vh !important;
    object-fit: contain !important;
    transform: none !important;
    opacity: 1 !important;
    border-radius: 0;
    transition: none !important;
}

.preview-frame.is-zoomed .zoom-trigger {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: #FF1F1F !important;
    border: 2px solid white !important;
    z-index: 1000001 !important;
}

@media (max-width: 768px) {
    .zoom-trigger {
        display: flex;
    }
}

/* --- SECTIONS --- */
.section-spacing {
    padding: 100px 0;
}

.section-grey {
    background-color: var(--bg-grey);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
}

/* --- BONUS SHOWCASE --- */
.bonus-showcase {
    margin-bottom: 100px;
    position: relative;
}

.bonus-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.bonus-badge {
    background: var(--black);
    color: white;
    padding: 4px 15px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 12px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bonus-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-title i {
    font-size: 2rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .bonus-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
}

.bonus-carousel {
    margin-top: 0;
    /* Align directly with label */
}

/* Specific item adjustments if needed for bonuses */
.bonus-carousel .carousel-item {
    width: 260px;
    /* Slightly smaller than main showcase */
    height: 360px;
}

/* --- CARDS & GRIDS --- */
/* --- PROOF SECTION --- */
.proof-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.proof-card {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 550px;
    /* Slightly larger on desktop */
}

.proof-card:hover {
    transform: scale(1.02);
}

.proof-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.proof-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #000;
    color: white;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.proof-income {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--bg-white);
    color: var(--black);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 4px;
    border: 2px solid var(--black);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.profit-highlight {
    color: #28a745;
    font-weight: 900;
}

@media (max-width: 768px) {
    .value-prop .container {
        padding: 0;
        /* Edge to edge on mobile */
    }

    .proof-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
        /* Direct stacking */
    }

    .proof-card {
        max-width: 100%;
        padding: 10px 0;
        /* Remove side padding to touch edges */
        box-shadow: none;
        /* Cleaner look for full width */
        border-radius: 0;
    }

    .proof-img {
        border-radius: 0;
    }

    .proof-tag {
        top: 10px;
        right: 10px;
        font-size: 0.65rem;
    }

    .proof-income {
        bottom: 15px;
        left: 10px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

.stat-card h3 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1;
}

.stat-card p {
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-sec);
    font-size: 0.8rem;
}

/* --- SOCIAL PROOF --- */
.social-proof {
    padding-bottom: 50px;
}

.trustpilot-badge {
    background: #f7f7f7;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
}

.trustpilot-score {
    font-weight: 800;
    font-size: 1.2rem;
}

.testimonial-scroller {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.testimonial-track.left {
    animation: scroll-left 40s linear infinite;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    width: 350px;
    flex-shrink: 0;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--black);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card .author {
    display: block;
    font-weight: 800;
    color: var(--purple);
    font-size: 0.85rem;
}

/* Benefit Items */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin: 0 auto 16px;
    max-width: 800px;
    text-align: left;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--purple);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--purple);
    font-size: 1.2rem;
}

/* --- ROULETTE SYSTEM V2 (Robust Modal) --- */
.roulette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999999;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 10px;
}

.roulette-overlay.active {
    display: flex !important;
    justify-content: center;
}

body.roulette-open {
    overflow: hidden !important;
}

.roulette-modal {
    background: #000;
    width: 95%;
    max-width: 420px;
    margin: auto;
    /* Strategic centering for scroll/mobile */
    padding: 30px 20px;
    border-radius: 28px;
    border: 1px solid #333;
    position: relative;
    text-align: center;
    box-shadow: 0 0 80px rgba(123, 44, 255, 0.3);
}

.roulette-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

/* Wheel Layout */
.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 20px auto;
}

@media (max-width: 400px) {
    .wheel-container {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 380px) {
    .wheel-container {
        width: 260px;
        height: 260px;
    }
}

.wheel-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--purple);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    z-index: 10;
}

.wheel-main {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 8px solid #1a1a1a;
    position: relative;
    overflow: hidden;
    background: #111;
    transition: transform 5s cubic-bezier(0.1, 0, 0, 1);
}

.wheel-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#111 0deg 51.4deg,
            #1a1a1a 51.4deg 102.8deg,
            #111 102.8deg 154.2deg,
            #1a1a1a 154.2deg 205.6deg,
            #111 205.6deg 257deg,
            #1a1a1a 257deg 308.4deg,
            #111 308.4deg 360deg);
}

.wheel-label {
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 50%;
    margin-left: -40px;
    transform-origin: bottom center;
    transform: rotate(calc(51.4deg * var(--i) + 25.7deg));
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.wheel-label span {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: #555;
}

/* Winners Style */
.wheel-label.winner span {
    color: var(--purple);
    text-shadow: 0 0 10px rgba(123, 44, 255, 0.5);
}

.spin-trigger-banner {
    background: #0a0a0a;
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid #222;
    text-align: center;
    margin: 60px 0;
}

.spin-trigger-banner h2 {
    color: #fff !important;
}

.spin-trigger-banner p {
    color: #bbb !important;
}

.roulette-modal h2,
.roulette-modal h3 {
    color: #fff !important;
}

.roulette-modal p {
    color: #ccc !important;
}

.bonus-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 6px 15px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    border: 1px solid #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.carousel-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    padding: 30px 0;
}

.carousel-row.black {
    background-color: #000000;
}

.carousel-row.white {
    background-color: #ffffff;
}

.carousel-track {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    min-width: 100%;
}

.carousel-track.left {
    animation: scroll-left 60s linear infinite;
}

.carousel-track.right {
    animation: scroll-right 60s linear infinite;
}

.carousel-item {
    width: 320px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(123, 44, 255, 0.1);
    background: #111;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.carousel-row.white .carousel-item {
    background: #fdfdfd;
    border: 1px solid #eee;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.carousel-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--purple);
    z-index: 10;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 30px));
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(calc(-100% - 30px));
    }

    to {
        transform: translateX(0);
    }
}

/* Pause on hover for better visibility */
.carousel-row:hover .carousel-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 240px;
        height: 320px;
    }

    .carousel-track.left,
    .carousel-track.right {
        animation-duration: 40s;
    }
}

/* --- PRICING --- */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    flex-wrap: wrap;
}

.price-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 60px 40px;
    width: 380px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.price-card.featured {
    border: 2px solid var(--purple);
    position: relative;
}

.best-seller-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    color: white;
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 900;
    border-radius: 50px;
    text-transform: uppercase;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-subtitle {
    color: var(--text-sec);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.price-block {
    margin: 30px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-sec);
    font-size: 1rem;
}

.new-price {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.price-features li.disabled {
    opacity: 0.4;
}

/* --- EFFECTS & ANIMATIONS --- */

/* 1. HERO MOTION FAKE BACKGROUND (BLOBS) */
.hero {
    position: relative;
    padding: 140px 0 120px;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 800px;
    /* Aumentado para compensar o blur gigante */
    height: 800px;
    background: radial-gradient(circle, rgba(123, 44, 255, 1) 0%, rgba(123, 44, 255, 0) 70%);
    filter: blur(150px);
    z-index: 1;
    opacity: 0.22;
    /* Opacidade fixa */
    pointer-events: none;
    animation: floatMove 22s ease-in-out infinite alternate;
}

.hero::before {
    top: -300px;
    left: -200px;
}

.hero::after {
    bottom: -300px;
    right: -200px;
    animation-delay: -11s;
}

@keyframes floatMove {
    0% {
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(100px, 60px);
    }

    /* Deslocamento diagonal leve */
}

.sell-highlight {
    color: #7B2CFF;
    text-shadow:
        0 0 10px rgba(123, 44, 255, 0.3),
        0 0 25px rgba(123, 44, 255, 0.15);
    animation: glowPulse 4s ease-in-out infinite alternate;
    display: inline-block;
    /* Helps with rendering the shadow correctly */
}

@keyframes glowPulse {
    0% {
        text-shadow:
            0 0 8px rgba(123, 44, 255, 0.2),
            0 0 20px rgba(123, 44, 255, 0.1);
    }

    100% {
        text-shadow:
            0 0 14px rgba(123, 44, 255, 0.35),
            0 0 30px rgba(123, 44, 255, 0.2);
    }
}

/* Garante que o conteúdo fique acima das luzes */
.hero .container {
    position: relative;
    z-index: 10;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* Acima dos blobs, abaixo do texto */
    opacity: 0.05;
    pointer-events: none;
    background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
}

/* 2. ENTRANCE STAGGER */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

.loaded .stagger-item {
    animation: slideUpFade 0.7s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loaded .stagger-item:nth-child(1) {
    animation-delay: 0.2s;
}

.loaded .stagger-item:nth-child(2) {
    animation-delay: 0.35s;
}

.loaded .stagger-item:nth-child(3) {
    animation-delay: 0.5s;
}

.loaded .stagger-item:nth-child(4) {
    animation-delay: 0.65s;
}

/* 3. PREMIUM BUTTONS HOVER */
.btn-cta:hover {
    background-color: var(--purple-hover);
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 44, 255, 0.4);
}

/* 4. CARDS HOVER LIFT */
.stat-card:hover,
.bonus-card:hover,
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--purple);
}

/* 5. SCROLL REVEAL DISCREET */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Mobile Tweaks */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .section-spacing {
        padding: 60px 0;
    }

    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        width: 100%;
        max-width: 400px;
    }

    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero-lights-container::before,
    .hero-lights-container::after {
        width: 60vw;
        height: 60vw;
        opacity: 0.07;
    }

    .hero {
        padding: 100px 0 80px;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .stagger-item {
        opacity: 1;
        transform: none;
    }
}