/* ==========================================================================
   STYLE SYSTEM: Cyber-Party Magic (Futurista, Moderno e Responsivo)
   ========================================================================== */

/* 1. VARIÁVEIS DO DESIGN SYSTEM */
:root {
    --bg-dark-base: #060212;
    --bg-dark-card: rgba(20, 8, 38, 0.55);
    --bg-dark-card-hover: rgba(35, 15, 65, 0.75);
    
    --primary-neon: #ff2e93;       /* Rosa Shocking Neon */
    --primary-neon-glow: rgba(255, 46, 147, 0.55);
    
    --secondary-neon: #00f0ff;     /* Ciano Elétrico */
    --secondary-neon-glow: rgba(0, 240, 255, 0.55);
    
    --accent-purple: #7000ff;      /* Roxo Ultravioleta */
    --accent-purple-glow: rgba(112, 0, 255, 0.5);
    
    --glow-green: #39ff14;         /* Verde Sucesso */
    --glow-yellow: #ffd700;        /* Amarelo Estrela */
    --glow-red: #ff3333;           /* Vermelho Alerta */
    
    --text-main: #f5f2fa;          /* Branco Perolado */
    --text-muted: #aaa2ba;         /* Lilás Acinzentado */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-glow: rgba(255, 46, 147, 0.2);
    
    --font-titles: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. CONFIGURAÇÕES GERAIS E RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-dark-base);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

ul {
    list-style: none;
}

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

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

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

/* 3. ELEMENTOS DE FUNDO CYBER (GLOW & PARTICLES) */
.cyber-background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -2;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 46, 147, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.05) 0%, transparent 60%);
    filter: blur(80px);
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* 4. ANIMAÇÕES EM KEYFRAMES */
@keyframes pulseGlowPink {
    0% { box-shadow: 0 0 10px rgba(255, 46, 147, 0.4); }
    50% { box-shadow: 0 0 25px rgba(255, 46, 147, 0.7); }
    100% { box-shadow: 0 0 10px rgba(255, 46, 147, 0.4); }
}

@keyframes pulseGlowCyan {
    0% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.4); }
    50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.7); }
    100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.4); }
}

@keyframes floatSlow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatMedium {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatFast {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseDot {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes glowText {
    0% { text-shadow: 0 0 5px currentColor; }
    50% { text-shadow: 0 0 15px currentColor, 0 0 25px currentColor; }
    100% { text-shadow: 0 0 5px currentColor; }
}

@keyframes borderGlowPulse {
    0% { border-color: rgba(255, 46, 147, 0.3); }
    50% { border-color: rgba(0, 240, 255, 0.6); }
    100% { border-color: rgba(255, 46, 147, 0.3); }
}

/* Classes de Utilidades de Animação */
.animate-float-slow { animation: floatSlow 6s ease-in-out infinite; }
.animate-float-medium { animation: floatMedium 4s ease-in-out infinite; }
.animate-float-fast { animation: floatFast 3s ease-in-out infinite; }

/* 5. ELEMENTOS TIPOGRÁFICOS E TEXTOS */
h1, h2, h3, h4 {
    font-family: var(--font-titles);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-neon) 10%, var(--secondary-neon) 50%, var(--accent-purple) 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-pink { color: var(--primary-neon) !important; }
.text-cyan { color: var(--secondary-neon) !important; }
.text-green { color: var(--glow-green) !important; }
.text-red { color: var(--glow-red) !important; }
.text-yellow { color: var(--glow-yellow) !important; }

.glow-text {
    animation: glowText 2.5s ease-in-out infinite;
}
.glow-text-pink { color: var(--primary-neon); text-shadow: 0 0 10px rgba(255,46,147,0.5); }
.glow-text-cyan { color: var(--secondary-neon); text-shadow: 0 0 10px rgba(0,240,255,0.5); }
.glow-text-yellow { color: var(--glow-yellow); text-shadow: 0 0 10px rgba(255,215,0,0.5); }

/* SEÇÕES GENÉRICAS */
.section-tag {
    display: inline-block;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--secondary-neon);
    background: rgba(0, 240, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    text-transform: uppercase;
}

.section-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #fff 40%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

/* 6. BOTÕES COMPONENTES EXTREMAMENTE PREMIUM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-titles);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 12px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.05em;
}

.btn-md {
    padding: 14px 28px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    letter-spacing: 0.08em;
}

/* Botão Pink Glow Principal */
.btn-glow-pink {
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--accent-purple) 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.4);
}

.btn-glow-pink::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: 0.6s;
}

.btn-glow-pink:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(255, 46, 147, 0.75), 0 0 10px rgba(112, 0, 255, 0.5);
}

.btn-glow-pink:hover::before {
    left: 100%;
}

/* Botão Neon Blue */
.btn-neon-blue {
    background: transparent;
    color: var(--secondary-neon);
    border: 2px solid var(--secondary-neon);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.btn-neon-blue:hover {
    background: var(--secondary-neon);
    color: var(--bg-dark-base);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

/* Botão Nav Neon Pequeno */
.btn-nav-neon {
    background: rgba(255, 46, 147, 0.1);
    color: var(--primary-neon);
    border: 1px solid var(--primary-neon);
}

.btn-nav-neon:hover {
    background: var(--primary-neon);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5);
}

/* Botão de Contorno Cinza */
.btn-gray-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border: 1px solid var(--border-glass);
}

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

.w-100 { width: 100%; }

/* Pulsos */
.pulse-heavy {
    animation: pulseGlowPink 2.5s infinite;
}

/* ==========================================================================
   ELEMENTOS DE ESTRUTURA E SEÇÕES
   ========================================================================== */

/* HEADER: Barra Promo */
.promo-header {
    background: linear-gradient(90deg, #ff1a75 0%, var(--accent-purple) 50%, #0077ff 100%);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.promo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-family: var(--font-titles);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--glow-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--glow-green);
    animation: pulseDot 1.2s infinite;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-titles);
    font-weight: 900;
    background: rgba(0, 0, 0, 0.35);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--secondary-neon);
}

/* NAVEGAÇÃO */
.main-nav {
    background: rgba(6, 2, 18, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
    position: relative;
    z-index: 90;
}

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

.logo {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    letter-spacing: -0.03em;
}

.logo-cyber {
    color: #fff;
}

.logo-neon {
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(255, 46, 147, 0.3);
}

.logo-version {
    font-size: 9px;
    font-weight: 500;
    background: var(--secondary-neon);
    color: var(--bg-dark-base);
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: 5px;
    align-self: flex-start;
}

.security-badge-nav {
    display: none; /* Esconder no mobile para otimizar espaço */
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
}

.security-badge-nav i {
    color: var(--glow-green);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* HERO SECTION */
.hero-section {
    padding: 40px 0 60px;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.offer-pill {
    align-self: center;
    background: rgba(255, 46, 147, 0.08);
    color: var(--primary-neon);
    border: 1px solid rgba(255, 46, 147, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-family: var(--font-titles);
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    animation: borderGlowPulse 4s infinite;
}

.hero-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 550px;
}

.price-hero-box {
    margin-bottom: 25px;
}

.price-original {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.price-tag .currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-neon);
}

.price-tag .value {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 46px;
    color: var(--secondary-neon);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.price-tag .recurrence {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 6px;
}

.hero-cta-group {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.cta-subtext {
    font-size: 11px;
    color: var(--text-muted);
}

.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 450px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    font-size: 16px;
}

.security-icon { color: var(--glow-green); }
.guarantee-icon { color: var(--glow-yellow); }
.download-icon { color: var(--secondary-neon); }

/* HERO VISUAL MOCKUP */
.hero-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    perspective: 1200px; /* Enable tridimensional depth */
}

.glass-frame {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    transform-style: preserve-3d;
    overflow: visible; /* Prevent shadows and tilt effects from being clipped */
}

.glass-frame::after {
    display: none; /* Hide old glass gradient border */
}

.glass-reflection {
    display: none; /* Hide glass reflective panel */
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 35px rgba(112, 0, 255, 0.12); /* Dynamic premium glow */
    transition: transform 0.1s ease-out, box-shadow 0.2s ease-out;
    transform-style: preserve-3d;
    cursor: grab;
}

.hero-image:active {
    cursor: grabbing;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 5, 40, 0.85);
    border: 1px solid var(--border-glass-glow);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(255, 46, 147, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.badge-1 {
    top: 10%;
    left: -5%;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5), 0 0 15px rgba(0, 240, 255, 0.2);
}

.badge-3 {
    bottom: -5%;
    left: 15%;
}

/* COMPARATIVE SECTION */
.comparison-section {
    padding: 60px 0;
    background: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
    position: relative;
}

.comparison-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-5px);
    background: var(--bg-dark-card-hover);
}

.card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.status-bad {
    background: rgba(255, 51, 51, 0.1);
    color: var(--glow-red);
    border: 1px solid rgba(255, 51, 51, 0.2);
}

.status-good {
    background: rgba(57, 255, 20, 0.1);
    color: var(--glow-green);
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.comparison-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.comparison-price {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 0;
    margin-bottom: 25px;
}

.price-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-val {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 26px;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

/* Elementos Destacados */
.highlighted-glow {
    position: relative;
}

.highlighted-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.premium-card {
    background: rgba(30, 10, 60, 0.35);
    box-shadow: 0 15px 35px rgba(112, 0, 255, 0.15);
}

.card-badge-neon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(90deg, var(--primary-neon), var(--accent-purple));
    color: #fff;
    font-size: 8px;
    font-family: var(--font-titles);
    font-weight: 900;
    letter-spacing: 0.05em;
    padding: 4px 30px;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 46, 147, 0.4);
}

/* Divisor VS */
.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 40px;
    margin: 10px 0;
}

.vs-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--border-glass);
    z-index: 1;
}

.vs-divider span {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 14px;
    background: var(--bg-dark-base);
    color: var(--primary-neon);
    border: 2px solid var(--primary-neon);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.3);
}

/* GALLERY / SHOWCASE CAROUSEL */
.gallery-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    margin-top: 30px;
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.marquee {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    min-width: 100%;
    animation: marquee 25s linear infinite;
    padding: 10px 0;
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-reverse .marquee {
    animation-direction: reverse;
}

.marquee-item {
    flex-shrink: 0;
}

.party-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    width: 250px;
    transition: var(--transition-medium);
}

.party-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 46, 147, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.party-image-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Cores e Gradientes divertidos para representar festas simuladas */
.item-0 { background-image: url('assets/safari_party.png'); }
.item-1 { background-image: url('assets/princess_party.png'); }
.item-2 { background-image: url('assets/princess_party.png'); }
.item-3 { background-image: url('assets/paw_patrol_party.png'); }
.item-4 { background-image: url('assets/safari_party.png'); }
.item-5 { background-image: url('assets/princess_party.png'); }
.item-6 { background-image: url('assets/paw_patrol_party.png'); }
.item-7 { background-image: url('assets/minecraft_party.png'); }
.item-8 { background-image: url('assets/safari_party.png'); }
.item-9 { background-image: url('assets/princess_party.png'); }
.item-10 { background-image: url('assets/minecraft_party.png'); }
.item-11 { background-image: url('assets/paw_patrol_party.png'); }
.item-12 { background-image: url('assets/minecraft_party.png'); }
.item-13 { background-image: url('assets/safari_party.png'); }
.item-14 { background-image: url('assets/paw_patrol_party.png'); }
.item-15 { background-image: url('assets/princess_party.png'); }

.party-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.party-image-placeholder span {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-titles);
    font-weight: 700;
}

.party-info {
    padding: 15px;
}

.party-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.party-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.gallery-cta {
    margin-top: 40px;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 60px 0;
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-medium);
}

.step-card:hover {
    transform: translateY(-5px);
    background: var(--bg-dark-card-hover);
    border-color: var(--border-glass-glow);
}

.step-number-glow {
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-titles);
    font-weight: 950;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: var(--transition-medium);
}

.step-card:hover .step-number-glow {
    color: rgba(255, 46, 147, 0.05);
    transform: scale(1.1);
}

.step-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 45px;
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    background: var(--bg-dark-card-hover);
    border-color: rgba(0, 240, 255, 0.2);
}

.testimonial-rating {
    color: var(--glow-yellow);
    font-size: 13px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 14px;
    color: #fff;
}

.placeholder-0 { background: var(--primary-neon); }
.placeholder-1 { background: var(--secondary-neon); color: var(--bg-dark-base); }
.placeholder-2 { background: var(--accent-purple); }
.placeholder-3 { background: var(--glow-yellow); color: var(--bg-dark-base); }

.user-info h4 {
    font-size: 14px;
    font-weight: 700;
}

.user-info span {
    font-size: 11px;
    color: var(--text-muted);
}

/* THEMES BADGES SECTION */
.themes-section {
    padding: 60px 0;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.theme-badge-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: var(--transition-medium);
}

.theme-badge-card i {
    font-size: 20px;
    transition: var(--transition-medium);
}

.theme-badge-card span {
    font-family: var(--font-titles);
    font-weight: 600;
    font-size: 13px;
}

/* Cores exclusivas no Hover para cada tema */
.card-spider:hover { border-color: #ff3333; background: rgba(255,51,51,0.05); color: #ff3333; }
.card-frozen:hover { border-color: #00ddff; background: rgba(0,221,255,0.05); color: #00ddff; }
.card-barbie:hover { border-color: #ff55bb; background: rgba(255,85,187,0.05); color: #ff55bb; }
.card-patrulha:hover { border-color: #ffa500; background: rgba(255,165,0,0.05); color: #ffa500; }
.card-safari:hover { border-color: #ffbb00; background: rgba(255,187,0,0.05); color: #ffbb00; }
.card-mickey:hover { border-color: #ff3333; background: rgba(255,51,51,0.05); color: #ff3333; }
.card-princesas:hover { border-color: #ffbb00; background: rgba(255,187,0,0.05); color: #ffbb00; }
.card-sonic:hover { border-color: #0066ff; background: rgba(0,102,255,0.05); color: #0066ff; }
.card-tiktok:hover { border-color: #00f0ff; background: rgba(0,240,255,0.05); color: #00f0ff; }
.card-jardim:hover { border-color: #33cc55; background: rgba(51,204,85,0.05); color: #33cc55; }

.theme-badge-card:hover i {
    transform: scale(1.2);
}

.themes-extra-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 25px;
    font-weight: 500;
}

.themes-cta {
    margin-top: 30px;
}

/* BONUS SECTION */
.bonus-section {
    padding: 60px 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 45px;
}

.bonus-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: var(--transition-medium);
}

.bonus-card:hover {
    transform: translateY(-5px);
    background: var(--bg-dark-card-hover);
    border-color: var(--border-glass-glow);
}

.bonus-tag-free {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 9px;
    background: rgba(255, 46, 147, 0.1);
    color: var(--primary-neon);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 46, 147, 0.2);
}

.bonus-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bonus-value {
    font-size: 12px;
    font-weight: 500;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
}

.free-text {
    font-weight: 800;
    font-family: var(--font-titles);
    margin-left: 5px;
}

.value-stack-box {
    margin-top: 50px;
    background: rgba(18, 5, 40, 0.5);
    border-radius: 20px;
    padding: 40px 20px;
}

.value-stack-box h4 {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.old-total-price {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 5px;
}

.new-total-price {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 38px;
    margin-bottom: 10px;
}

.value-stack-box p {
    font-size: 12px;
    color: var(--text-muted);
}

/* PRICING SECTION (ESCOLHA SEU PACOTE) */
.pricing-section {
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-medium);
    position: relative;
}

.pricing-card:hover {
    background: rgba(22, 10, 42, 0.65);
    border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-card-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.pricing-card-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.pricing-card-price {
    text-align: center;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 20px 0;
    margin-bottom: 25px;
}

.card-price-value {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.card-price-value .currency {
    font-size: 20px;
    font-weight: 700;
}

.card-price-value .amount {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 48px;
    line-height: 1;
}

.payment-type {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

.pricing-card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
}

.pricing-card-features li i {
    font-size: 14px;
    margin-top: 3px;
}

.pricing-card-features li.disabled {
    color: rgba(255, 255, 255, 0.35);
}

.pricing-card-features li.disabled i {
    color: var(--glow-red);
}

.pricing-card-cta {
    text-align: center;
}

.pricing-card-cta .btn {
    width: 100%;
}

/* PREMIUM PRICING CARD DETAILED GLOW */
.premium-pricing-card {
    background: rgba(28, 8, 55, 0.6);
    box-shadow: 0 20px 45px rgba(112, 0, 255, 0.2);
    border-color: rgba(255, 46, 147, 0.35);
}

.premium-pricing-card::after {
    border-radius: 24px;
}

.premium-pricing-card:hover {
    background: rgba(36, 12, 68, 0.8);
    border-color: rgba(255, 46, 147, 0.6);
}

.most-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-neon) 0%, var(--accent-purple) 100%);
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 9px;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.5);
    letter-spacing: 0.05em;
    z-index: 5;
}

.price-discount-cross {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.premium-pricing-card .card-price-value {
    color: var(--secondary-neon);
}

.bonus-highlight {
    font-weight: 600;
    background: rgba(255, 215, 0, 0.05);
    border: 1px dashed rgba(255, 215, 0, 0.2);
    padding: 6px 10px;
    border-radius: 8px;
}

.pricing-card-features-container {
    flex-grow: 1;
}

.features-sub-header {
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 20px 0 12px;
}

.features-sub-header.border-top {
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}

/* Tipos de Caixas Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.types-grid span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 6px;
    font-size: 11px;
    text-align: center;
    font-weight: 500;
}

/* GUARANTEE SECTION */
.guarantee-section {
    padding: 60px 0;
    background: relative;
}

.guarantee-container {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.guarantee-badge-visual {
    flex-shrink: 0;
}

.hologram-shield {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border: 2px solid var(--glow-yellow);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shield-number {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    color: var(--glow-yellow);
}

.shield-unit {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--glow-yellow);
}

.guarantee-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.guarantee-features span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.guarantee-features span i {
    color: var(--glow-green);
    font-size: 15px;
}

/* FAQ / ACCORDION SECTION */
.faq-section {
    padding: 60px 0;
}

.faq-accordion-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-question-btn {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: rgba(255, 46, 147, 0.25);
    background: var(--bg-dark-card-hover);
}

.faq-arrow {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform var(--transition-medium);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 20px;
}

.faq-answer-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 20px;
}

/* FAQ Item Ativo */
.faq-item.active {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.15);
}

.faq-item.active .faq-question-btn {
    color: var(--primary-neon);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-neon);
}

.faq-item.active .faq-answer-content {
    max-height: 300px; /* Suficiente para o texto */
    padding: 0 20px;
}

.faq-cta-box {
    margin-top: 40px;
}

/* FOOTER SECTION */
.main-footer {
    background: #030109;
    border-top: 1px solid var(--border-glass);
    padding: 50px 0;
    position: relative;
    z-index: 5;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.badge-item {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   MODAL DE CHECKOUT E SUCESSO (GLASSMORPHIC)
   ========================================================================== */
.checkout-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 1, 9, 0.7);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
    padding: 15px;
}

.checkout-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-modal-card {
    background: rgba(14, 5, 28, 0.95);
    border: 1px solid rgba(255, 46, 147, 0.3);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 40px rgba(255, 46, 147, 0.15);
    border-radius: 20px;
    width: 100%;
    max-width: 460px;
    padding: 30px 25px;
    position: relative;
    transform: scale(0.92);
    transition: transform var(--transition-medium);
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--primary-neon);
}

.modal-header-glow {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header-glow h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(255,46,147,0.3);
}

.modal-header-glow p {
    font-size: 12px;
    color: var(--text-muted);
}

/* FORMULÁRIO */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-step-title {
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-neon);
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 5px;
    margin-top: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-neon);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(255, 46, 147, 0.15);
}

.form-group small {
    font-size: 9px;
    color: var(--text-muted);
}

/* Métodos de Pagamento */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.payment-method-label {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.payment-method-label input {
    margin-right: 12px;
    accent-color: var(--primary-neon);
}

.payment-icon {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-label.selected {
    border-color: var(--primary-neon);
    background: rgba(255, 46, 147, 0.06);
}

.checkout-total-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-glass);
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.checkout-total-summary span {
    font-size: 13px;
    font-weight: 600;
}

.summary-total-val {
    font-family: var(--font-titles);
    font-weight: 900;
    font-size: 20px;
    color: var(--secondary-neon);
}

.modal-footer-security {
    font-size: 9px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* OFERTAS ADICIONAIS (ORDER BUMPS) STYLING */
.order-bumps-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0 15px;
}

.order-bump-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-glass);
    border-radius: 12px;
    transition: var(--transition-medium);
    overflow: hidden;
    position: relative;
}

.order-bump-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 46, 147, 0.3);
}

.order-bump-card.checked {
    background: rgba(255, 46, 147, 0.06);
    border: 1px solid var(--primary-neon);
    box-shadow: 0 0 15px rgba(255, 46, 147, 0.15);
}

.order-bump-label {
    display: flex;
    align-items: flex-start;
    padding: 12px 15px;
    cursor: pointer;
    gap: 12px;
}

.order-bump-label input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--primary-neon);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.order-bump-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bump-badge-alert {
    align-self: flex-start;
    background: var(--primary-neon);
    color: #fff;
    font-family: var(--font-titles);
    font-weight: 800;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.bump-title {
    font-family: var(--font-titles);
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    line-height: 1.3;
}

.bump-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

.bump-price {
    font-size: 11px;
    margin-top: 5px;
    font-weight: 600;
}

/* MODAL DE SUCESSO E PIX */
.success-card {
    text-align: center;
    border-color: rgba(57, 255, 20, 0.3);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 40px rgba(57, 255, 20, 0.1);
}

.success-card h2 {
    font-size: 22px;
    color: var(--glow-green);
    margin-top: 15px;
    margin-bottom: 10px;
}

.success-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Animação do Checkmark de Sucesso */
.success-animation-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: rgba(57, 255, 20, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--glow-green);
    position: relative;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.success-checkmark-circle {
    width: 30px;
    height: 30px;
    position: relative;
}

.success-checkmark-stem {
    width: 3px;
    height: 15px;
    background-color: var(--glow-green);
    position: absolute;
    left: 17px;
    top: 4px;
    transform: rotate(45deg);
    border-radius: 3px;
}

.success-checkmark-kick {
    width: 8px;
    height: 3px;
    background-color: var(--glow-green);
    position: absolute;
    left: 10px;
    top: 16px;
    transform: rotate(45deg);
    border-radius: 3px;
}

/* Pix Code */
.pix-code-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pix-qr-code-placeholder {
    background: #000;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.pix-copia-cola {
    width: 100%;
    display: flex;
    gap: 10px;
}

.pix-copia-cola input {
    flex-grow: 1;
    background: #030109;
    border: 1px solid var(--border-glass);
    padding: 10px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
}

.pix-copia-cola button {
    flex-shrink: 0;
}

.success-notification-text {
    font-size: 11px !important;
    border-top: 1px solid var(--border-glass);
    padding-top: 15px;
}


/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE TOTAL (MOBILE-FIRST)
   ========================================================================== */

/* 0. DISPOSITIVOS EXTREMAMENTE PEQUENOS / CORREÇÕES MOBILE (abaixo de 767px) */
@media screen and (max-width: 767px) {
    html, body {
        overflow-x: hidden;
    }
    
    /* Impedir que badges flutuantes quebrem as margens do layout */
    .hero-visual {
        max-width: 100%;
        overflow: hidden;
        padding: 0 10px;
    }
    
    .badge-1 {
        top: 5%;
        left: 2%;
    }
    
    .badge-2 {
        bottom: 12%;
        right: 2%;
    }
    
    .badge-3 {
        bottom: -2%;
        left: 18%;
    }
    
    /* Corrigir cabeçalho com aviso e contador promo */
    .promo-header {
        padding: 10px 15px;
    }
    
    .promo-container {
        flex-direction: column;
        gap: 6px;
        align-items: center;
        text-align: center;
    }
    
    .countdown-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    /* Diminuir escala de títulos muito longos */
    .hero-title {
        font-size: 25px !important;
        line-height: 1.25;
    }
    
    .section-title {
        font-size: 22px !important;
    }
    
    /* Adequar cartões e modal de checkout */
    .checkout-modal-card {
        padding: 20px 15px;
        max-height: 94vh;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .order-bump-label {
        padding: 10px;
        gap: 10px;
    }
}

/* 1. DISPOSITIVOS PEQUENOS (de 480px a 767px) */
@media screen and (min-width: 480px) {
    body {
        font-size: 16px;
    }
    .section-title {
        font-size: 32px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .themes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .theme-badge-card {
        padding: 20px 15px;
    }
    .theme-badge-card span {
        font-size: 14px;
    }
    .theme-badge-card i {
        font-size: 24px;
    }
    .guarantee-container {
        padding: 40px;
    }
    .guarantee-content h2 {
        font-size: 24px;
    }
    .guarantee-content p {
        font-size: 14px;
    }
}

/* 2. TABLETS (de 768px a 1023px) */
@media screen and (min-width: 768px) {
    .promo-container {
        flex-direction: row;
        justify-content: space-between;
    }
    .security-badge-nav {
        display: inline-flex;
    }
    .hero-section {
        padding: 60px 0 80px;
    }
    .hero-container {
        align-items: center;
    }
    .hero-title {
        font-size: 42px;
    }
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .vs-divider {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100%;
        width: 40px;
        margin: 0;
    }
    .vs-divider::before {
        width: 1px;
        height: 80%;
    }
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .themes-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    .guarantee-container {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }
    .guarantee-features {
        flex-direction: row;
        justify-content: flex-start;
        gap: 30px;
    }
    .faq-accordion-container {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-question-btn {
        font-size: 16px;
    }
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 3. DESKTOP (1024px ou mais) */
@media screen and (min-width: 1024px) {
    .section-title {
        font-size: 38px;
    }
    .hero-section {
        padding: 80px 0 100px;
    }
    .hero-container {
        flex-direction: row;
        gap: 50px;
        align-items: center;
        justify-content: space-between;
    }
    .hero-content {
        flex: 1.1;
        align-items: flex-start;
        text-align: left;
    }
    .hero-visual {
        flex: 0.9;
        max-width: none;
    }
    .offer-pill {
        align-self: flex-start;
    }
    .hero-cta-group {
        align-items: flex-start;
    }
    .trust-indicators-grid {
        max-width: 480px;
    }
    .trust-item {
        flex-direction: row;
        align-items: center;
        font-size: 11px;
    }
    .bonus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .value-stack-box {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 40px;
    }
}

/* 4. TELA RETINA / DESKTOPS ULTRA LARGOS */
@media screen and (min-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
