:root {
    --primary: #f8b400; /* Vibrant Orange/Yellow */
    --primary-dark: #e8a500;
    --secondary: #ff4d00;
    --dark: #0f0f0f;
    --dark-grey: #1a1a1a;
    --light-grey: #2d2d2d;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --danger: #ff4747;
    --success: #00d369;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

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

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(248, 180, 0, 0.3);
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-light);
}

.logo span {
    color: var(--primary);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, rgba(248, 180, 0, 0.1), transparent), 
                radial-gradient(circle at bottom left, rgba(255, 77, 0, 0.05), transparent);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-mockup {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 30px rgba(248, 180, 0, 0.2));
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.main-mockup:hover {
    transform: scale(1.02);
}

.badge {
    background-color: var(--primary);
    color: #000;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    box-shadow: 0 10px 20px rgba(248, 180, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(248, 180, 0, 0.4);
}

.btn-lg {
    font-size: 1.2rem;
    padding: 20px 45px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.secure-payment {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.social-proof-mini {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    margin-right: -10px;
}

.social-proof-mini span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Sections Common */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

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

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-item {
    background: var(--dark-grey);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--light-grey);
    text-align: center;
    transition: background 0.3s ease;
}

.problem-item:hover {
    background: #252525;
}

.problem-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--danger);
}

/* Solution Grid */
.solution-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-image {
    flex: 1;
}

.solution-content {
    flex: 1;
}

.img-rounded {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.benefit-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-list li i {
    color: var(--success);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--dark-grey);
    border-radius: 15px;
    overflow: hidden;
    /* Removed padding as images are screenshots */
}

.testimonial-img {
    width: 100%;
    display: block;
}

/* Bonuses */
.bonuses {
    background: linear-gradient(180deg, var(--dark), var(--dark-grey));
}

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

.single-bonus {
    display: flex;
    justify-content: center;
}

.single-bonus .bonus-card {
    max-width: 600px;
}

.bonus-card {
    background: rgba(45, 45, 45, 0.5);
    padding: 40px;
    border-radius: 24px;
    border: 2px dashed var(--primary);
    position: relative;
    overflow: hidden;
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.7rem;
}

.bonus-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.bonus-price {
    margin-top: 20px;
    font-weight: 700;
}

.bonus-price span {
    color: var(--success);
}

/* Pricing Card */
.pricing {
    background: radial-gradient(circle at center, rgba(248, 180, 0, 0.1), transparent);
}

.pricing-card {
    background: var(--light-grey);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

.pricing-header {
    background: var(--primary);
    color: #000;
    padding: 30px;
    text-align: center;
}

.timer {
    font-weight: 700;
    margin-top: 5px;
}

.pricing-body {
    padding: 40px;
    text-align: center;
}

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

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    margin: 10px 0;
}

.hotmart-logo-container {
    margin: 25px 0 10px;
    display: flex;
    justify-content: center;
}

.hotmart-svg {
    width: 140px;
    height: auto;
    color: var(--text-light);
    opacity: 0.9;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--light-grey);
    text-align: center;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    h1 { font-size: 2.8rem; }
    .cta-group { justify-content: center; }
    .social-proof-mini { justify-content: center; }
    .solution-grid { flex-direction: column; }
    .problem-grid, .testimonial-grid, .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2rem; }
    .new-price { font-size: 3rem; }
    .hero { padding: 60px 0; }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Live Viewer Counter */
.live-viewers {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(248, 180, 0, 0.3);
    color: var(--text-light);
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    z-index: 998;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 0.6s ease-out;
}

.live-viewers i {
    color: var(--primary);
    font-size: 1rem;
}

.live-viewers strong {
    color: var(--primary);
    font-size: 1.05rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00d369;
    animation: livePulse 1.5s infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 211, 105, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 211, 105, 0); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Purchase Notification Popup */
.purchase-notification {
    position: fixed;
    bottom: 90px;
    left: 30px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(248, 180, 0, 0.25);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 999;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(248, 180, 0, 0.1);
    max-width: 340px;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.purchase-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notif-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon i {
    color: #000;
    font-size: 1.1rem;
}

.notif-content {
    flex: 1;
}

.notif-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.notif-action {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.notif-time {
    font-size: 0.75rem;
    color: var(--primary);
    margin-top: 3px;
    font-weight: 600;
}

.notif-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.2s;
    align-self: flex-start;
}

.notif-close:hover {
    color: var(--text-light);
}

/* Responsive adjustments for social proof */
@media (max-width: 600px) {
    .live-viewers {
        left: 10px;
        bottom: 85px;
        padding: 8px 14px;
        font-size: 0.75rem;
        border-radius: 40px;
    }

    .purchase-notification {
        left: 10px;
        right: 10px;
        bottom: 130px;
        max-width: calc(100% - 20px);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 15px;
    }
}
