/* Variables & Theming - LIGHT THEME */
:root {
    --bg-dark: #F8FAFC; /* Light background */
    --bg-darker: #F1F5F9;
    --primary: #B28B23; /* Darker Gold for Light Theme */
    --primary-glow: rgba(178, 139, 35, 0.3);
    --secondary: #0F172A; /* Dark Navy Blue */
    --secondary-glow: rgba(15, 23, 42, 0.2);
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --red: #E11D48;
    --green: #059669;
    --text-main: #1E293B; /* Dark Slate Gray */
    --text-muted: #475569; /* Medium Slate Gray */
    
    --glass-bg: rgba(255, 255, 255, 0.7); /* Light Glass */
    --glass-border: rgba(0, 0, 0, 0.08); /* Subtle dark border */
    --glass-glow: 0 4px 24px 0 rgba(0, 0, 0, 0.06); /* Soft shadow */
    
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.85), rgba(248, 250, 252, 0.95)), url('bg_claro.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-sm { max-width: 800px; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--primary); /* Map text-gold to darker gold in light theme */ }
.text-red { color: var(--red); }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--glass-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

/* Buttons (HIGH CONTRAST) */
.btn-primary, .btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(90deg, #0F172A, #1E293B); /* Very dark navy */
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.glow-btn::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #1E293B, #0F172A);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.glow-btn:hover::before { opacity: 1; }
.glow-btn:hover {
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
    transform: scale(1.05);
}

.btn-gold {
    background: linear-gradient(90deg, #D4AF37, #B28B23);
    color: #FFFFFF; /* High contrast white text on gold */
    border: none;
    box-shadow: 0 4px 15px var(--gold-glow);
}
.glow-btn-gold::before {
    content: "";
    position: absolute; top:0; left:0; right:0; bottom:0;
    background: linear-gradient(90deg, #B28B23, #D4AF37);
    opacity: 0; z-index: -1; transition: opacity 0.3s ease;
}
.glow-btn-gold:hover::before { opacity: 1; }
.glow-btn-gold:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.2); }
    70% { box-shadow: 0 0 0 20px rgba(15, 23, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
}
.pulse-anim { animation: pulse 2s infinite; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: #FEF3C7; /* Soft gold/yellow bg */
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #92400E; /* Dark amber text */
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge.success {
    background: #D1FAE5;
    border-color: #6EE7B7;
    color: #065F46;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #0F172A 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
}
.highlight-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Context Section */
.context-section {
    padding: 80px 0;
    position: relative;
}
.context-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.alert-badge.warning {
    background: #FFE4E6;
    color: #BE123C;
    border: 1px solid #FDA4AF;
}

.context-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.consequences {
    background: rgba(15, 23, 42, 0.03);
    border-left: 3px solid var(--red);
    padding: 24px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.resultado-label {
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.125rem;
}
.consequence-list {
    list-style: none;
}
.consequence-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 1.125rem;
}
.consequence-list li i {
    color: var(--red);
    font-size: 1.25rem;
    margin-top: 3px;
}

.context-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}
.context-card .card-header i { font-size: 2rem; }
.context-card .card-header h3 { margin: 0; font-size: 1.25rem; }

.danger-items {
    margin-top: 20px;
}
.danger-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.danger-item i {
    font-size: 1.5rem;
    color: var(--red);
}
.danger-item span {
    font-size: 1.125rem;
    font-weight: 500;
}

.context-card .card-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--primary);
}
.context-card .card-footer p { font-size: 1.125rem; }

/* Solution / Kit Section */
.solution-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.02) 50%, transparent 100%);
}
.section-title {
    margin-bottom: 60px;
}
.section-title h2 { margin-top: 20px; }
.section-title p { color: var(--text-muted); font-size: 1.25rem; max-width: 600px; margin: 0 auto; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
}
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
    background: rgba(15, 23, 42, 0.03);
}
.blue-glow { color: #0284C7; box-shadow: 0 4px 15px rgba(2, 132, 199, 0.15); }
.purple-glow { color: #7C3AED; box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15); }
.green-glow { color: var(--green); box-shadow: 0 4px 15px rgba(5, 150, 105, 0.15); }
.gold-glow { color: var(--primary); box-shadow: 0 4px 15px rgba(178, 139, 35, 0.15); }
.cyan-glow { color: #0891B2; box-shadow: 0 4px 15px rgba(8, 145, 178, 0.15); }

.feature-card p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.md-col-span-2 {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Section */
.why-section {
    padding: 80px 0;
}
.why-section .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    font-size: 1.25rem;
    font-weight: 500;
}
.benefit-item i { font-size: 1.5rem; }

.target-audience h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tag {
    padding: 8px 16px;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    position: relative;
}
.pricing-wrapper {
    display: flex;
    justify-content: center;
}
.pricing-card {
    text-align: center;
    max-width: 500px;
    width: 100%;
    position: relative;
    padding: 60px 40px 40px;
    background: #0F172A; /* Solid dark background */
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.4);
    color: #FFFFFF; /* White text for contrast */
}
.pricing-card h2 {
    color: #FFFFFF;
}
.premium-border {
    position: relative;
}
.premium-border::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: calc(var(--radius-lg) + 4px);
    background: linear-gradient(135deg, var(--primary), var(--gold));
    z-index: -1;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #1E293B, #0F172A); /* Dark navy gradient to match button */
    color: #FFFFFF;
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
}

.price-container {
    margin: 32px 0;
}
.old-price {
    text-decoration: line-through;
    color: #94A3B8;
    font-size: 1.25rem;
}
.current-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-weight: 900;
    line-height: 1;
    margin: 8px 0;
    color: #FFFFFF; /* High contrast dark background */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4); /* Strong bright shadow */
}
.currency { font-size: 2rem; margin-top: 10px; }
.amount { font-size: 5rem; }
.cents { font-size: 2rem; margin-top: 10px; }
.payment-type {
    display: block;
    color: #CBD5E1;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 500;
}
.pricing-features li i {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 24px 20px; /* Thicker button */
    font-size: 1.25rem;
    background: linear-gradient(90deg, #0F172A, #1E293B); /* Very dark navy */
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
}
.pricing-card .btn-primary::before {
    background: linear-gradient(90deg, #1E293B, #0F172A);
}
.pricing-card .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    color: #94A3B8;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0 120px;
}
.bonus-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}
.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: #FEF3C7;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #92400E;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.bonus-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary);
}
.bonus-title .text-gold {
    color: #92400E;
}

.bonus-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.bonus-text p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--text-main);
}
.bonus-features {
    list-style: none;
    margin: 24px 0;
}
.bonus-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 500;
}
.bonus-features li i {
    color: var(--primary);
    font-size: 1.25rem;
}

.bonus-why {
    background: #FFFFFF;
    padding: 20px;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    color: var(--text-muted);
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.bonus-visual {
    display: flex;
    justify-content: center;
}
.ai-illustration {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.ai-illustration .icon-large {
    font-size: 8rem;
    color: var(--primary);
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.2));
}
.glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    animation: orbPulse 4s infinite alternate;
}
@keyframes orbPulse {
    0% { transform: scale(0.8); opacity: 0.1; }
    100% { transform: scale(1.2); opacity: 0.3; }
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 40px;
    background: #FFFFFF;
}
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
}
.footer p { color: var(--text-muted); max-width: 500px; margin: 0 auto 24px; font-size: 1.125rem; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}
.footer-links a { color: var(--text-muted); font-size: 0.875rem; transition: color 0.3s; font-weight: 500;}
.footer-links a:hover { color: var(--primary); }
.copyright { font-size: 0.875rem; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .context-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .md-col-span-2 { grid-column: span 1; }
    .bonus-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-highlights { flex-direction: column; gap: 16px; align-items: flex-start; margin: 0 auto 40px; }
    
    .pricing-card { padding: 50px 24px 32px; }
    .amount { font-size: 4rem; }
    
    .btn-primary, .btn-gold { width: 100%; text-align: center; }
    
    h2 { font-size: 2rem; }
    .context-section, .solution-section, .pricing-section, .bonus-section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .feature-card { padding: 32px 20px; }
}
