:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    --accent-gold: #D4AF37;
    --accent-gold-light: #FFDF73;
    --accent-gold-dark: #A38421;
    
    --red-alert: #e74c3c;
    --green-success: #2ecc71;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

/* =========================================================================
   UTILITIES
   ========================================================================= */
.highlight {
    background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.highlight-red {
    color: var(--red-alert);
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
}

.pulse-cta {
    animation: pulseGlow 2.5s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        transform: scale(1.02);
    }
}

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.nav-content {
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 150px;
    height: auto;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    padding: 80px 0 100px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #cecece;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-bullets {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: left;
}

.bullet-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: var(--bg-glass);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    transition: transform 0.2s ease;
}

.bullet-item:hover {
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.icon-check {
    width: 24px;
    height: 24px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-check::after {
    content: '→';
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: bold;
}

/* =========================================================================
   EXPECTATION SECTION
   ========================================================================= */
.expectation-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    text-align: center;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.section-title.small {
    font-size: 2rem;
}

.section-paragraph {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
}

.section-paragraph strong {
    color: var(--accent-gold);
}

/* =========================================================================
   CASES SECTION (Infinite Carousel)
   ========================================================================= */
.cases-section {
    padding: 100px 0;
    text-align: center;
    overflow: hidden; /* Avoid horizontal scrollbar on body */
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 50px;
    display: flex;
    align-items: center;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    scroll-behavior: auto; /* Controlado via JS */
}

.carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-gold-dark);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.carousel-nav:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -15px;
}

.carousel-nav.next {
    right: -15px;
}

.case-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    min-width: 280px;
    max-width: 280px;
    height: 480px;
    flex: 0 0 280px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    white-space: normal;
}

.case-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(25, 25, 25, 0.8);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.case-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.image-skeleton {
    flex-grow: 1;
    background: linear-gradient(110deg, #1a1a1a 8%, #2a2a2a 18%, #1a1a1a 33%);
    background-size: 200% 100%;
    animation: 2s shine linear infinite;
    border-radius: 8px;
    margin-bottom: 15px;
}

@keyframes shine {
    to { background-position-x: -200%; }
}

.case-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =========================================================================
   PAIN POINTS
   ========================================================================= */
.pain-section {
    padding: 100px 0;
    background-color: #080808;
}

.pain-container {
    max-width: 800px;
}

.pain-points-list {
    margin: 50px 0;
}

.pain-card {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    background: var(--bg-glass);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #333;
    transition: all 0.3s;
}

.pain-card:hover {
    border-left-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.pain-card .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-right: 25px;
    min-width: 40px;
}

.pain-card p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.pain-card strong {
    color: var(--accent-gold);
}

.alert-box {
    margin-top: 60px;
    padding: 40px;
    background: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 12px;
    text-align: center;
}

.alert-box h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.alert-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* =========================================================================
   SOLUTION SECTION
   ========================================================================= */
.solution-section {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.impact-text {
    font-size: 1.8rem;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 60px;
    font-family: var(--font-heading);
    font-weight: 300;
}

.impact-text strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.event-details-card {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border: 1px solid var(--accent-gold-dark);
    border-radius: 16px;
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.event-details-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.event-details-card h3 {
    color: var(--accent-gold);
    letter-spacing: 3px;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.event-details-card p {
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* =========================================================================
   VIDEO SECTION
   ========================================================================= */
.video-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-blocker {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
}

.video-blocker.top {
    top: 0;
    height: 20%;
}

.video-blocker.bottom {
    bottom: 0;
    height: 25%;
}

.video-skeleton {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-skeleton:hover {
    border-color: var(--accent-gold);
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.play-button::after {
    content: '▶';
    color: #000;
    font-size: 24px;
    margin-left: 5px;
}

/* =========================================================================
   CHECKOUT SECTION
   ========================================================================= */
.checkout-section {
    padding: 100px 0;
    text-align: center;
}

.checkout-container {
    max-width: 900px;
}

.choice-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 50px 0;
    position: relative;
    gap: 20px;
}

@media(max-width: 768px) {
    .choice-container {
        flex-direction: column;
    }
}

.choice {
    flex: 1;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice.bad {
    border-color: rgba(231, 76, 60, 0.3);
}

.choice.good {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}

.choice p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.choice-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--bg-dark);
}

.final-question {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #fff;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(to bottom, #151515, #080808);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 60px 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lote-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-alert);
    color: #fff;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
    margin-right: 5px;
}

.value {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.cash-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.deliverables-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.deliverables-list li {
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
}

.check-icon {
    display: inline-block;
    width: 20px; height: 20px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 13l4 4L19 7" stroke="%23D4AF37" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

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

.guarantee {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    max-width: 60px;
    opacity: 0.5;
    filter: grayscale(100%);
}

.guarantee p {
    font-size: 0.9rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #111;
}

.footer-content p {
    font-size: 0.8rem;
    color: #444;
}

/* Responsive Overrides */
@media(max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero { padding: 140px 0 60px; }
    .section-title { font-size: 2rem; }
    .value { font-size: 3rem; }
    .pricing-card { padding: 40px 20px; }
}

/* =========================================================================
   MODAL & FORM
   ========================================================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content.glass-effect {
    background: linear-gradient(135deg, rgba(20,20,20, 0.95), rgba(10,10,10, 0.98));
    border: 1px solid var(--accent-gold-dark);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--red-alert);
}

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

.modal-header h2 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, 
.form-group select {
    padding: 12px 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.submit-cta {
    margin-top: 10px;
    width: 100%;
}

.secure-checkout {
    text-align: center;
    margin-top: 10px;
    color: #666;
}

