@import url('sales_notification.css');

:root {
    --primary-red: #ff0000;
    --dark-red: #8b0000;
    --bg-black: #050505;
    --text-white: #ffffff;
    --gray-text: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.cta-button {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    background-image:
        /* Grid Pattern */
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        /* Existing Gradients */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #050505),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.4), transparent 70%);
    background-size:
        50px 50px,
        /* Grid Size */
        50px 50px,
        /* Grid Size */
        cover,
        cover;
    background-position: center;
    background-attachment: fixed;
    padding-bottom: 50px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(139, 0, 0, 0.3), #050505);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.vsl-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.vsl-wrapper {
    width: 100%;
    max-width: 800px;
    /* aspect-ratio removed to fit video exactly */
    background: #000;
    border: 2px solid var(--dark-red);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.vsl-content-loop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

@keyframes fadeZoom {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.mute-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    pointer-events: none;
}

.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.highlight {
    color: var(--primary-red);
    background: rgba(255, 0, 0, 0.1);
    padding: 0 5px;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-red);
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 0 20px var(--primary-red);
    transition: transform 0.2s;
    border: 2px solid #ff4444;
}

.cta-button:hover {
    transform: scale(1.05);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

.big-pulse {
    animation: pulse-animation 1.5s infinite;
    font-size: 1.8rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Calculator Section */
.calculator-section {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid #222;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 40px;
}

.calculator-box {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
}

.calc-action-btn {
    width: 100%;
    padding: 15px;
    background: white;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--primary-red);
    text-align: center;
    border-radius: 5px;
}

.hidden {
    display: none !important;
}

.blinking {
    animation: blink 1s infinite;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}

.live-counter {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 1s infinite;
}

/* Social Proof - Wall of Fame */
.social-proof {
    padding: 80px 0;
    background: #000;
    overflow: hidden;
    position: relative;
}

/* Gradient Overlay removed by user request */

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.marquee-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Ensure content determines width */
}

/* Animations */
.scroll-left .marquee-content {
    animation: scrollLeft 40s linear infinite;
}

.scroll-right .marquee-content {
    animation: scrollRight 45s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Premium Card Styles */
.premium-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    width: 380px;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
}

.proof-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar-container {
    position: relative;
    margin-right: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.avatar.blur {
    filter: blur(2px);
}

.platform-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    border-radius: 50%;
    border: 2px solid #111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon.youtube::after {
    content: '▶';
    font-size: 10px;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    color: #25d366;
    font-size: 0.8rem;
}

.time {
    font-size: 0.75rem;
    color: #777;
}

.testimonial {
    font-style: italic;
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.earnings-badge {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.earnings-badge.dollar {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.earning-label {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 600;
}

.earning-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ff00;
}

.earnings-badge.dollar .earning-value {
    color: #ffd700;
}

/* Proof Images Carousel - Premium Style */
.proof-carousel {
    margin: 20px 0;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-carousel-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 0, 0.5) rgba(255, 255, 255, 0.1);
}

.proof-carousel-track::-webkit-scrollbar {
    height: 6px;
}

.proof-carousel-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.proof-carousel-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.6), rgba(255, 0, 0, 0.3));
    border-radius: 10px;
    transition: background 0.3s ease;
}

.proof-carousel-track::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.5));
}

.proof-image {
    min-width: 200px;
    max-width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.proof-image:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow:
        0 8px 25px rgba(255, 0, 0, 0.2),
        0 0 20px rgba(255, 0, 0, 0.1);
    z-index: 2;
}

/* Glassmorphism overlay on hover */
.proof-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.proof-image:hover::before {
    opacity: 1;
}

/* Scarcity */
.scarcity {
    background: var(--dark-red);
    padding: 20px 0 40px 0;
    text-align: center;
}

.scarcity-title {
    color: white;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 20px;
}

.time-block {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    min-width: 80px;
}

.time-block small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 5px;
}

.scarcity-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* VSL 2 */
.vsl-section-2 {
    padding: 80px 0;
    background: #050505;
}

.video-wrapper-2 {
    max-width: 800px;
    margin: 0 auto 40px;
    aspect-ratio: 16/9;
    background: #111;
    border: 1px solid #333;
    position: relative;
    cursor: pointer;
}

.video-placeholder-2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('https://placehold.co/800x450/000000/333333?text=Thumbnail+Video+Secreto') center/cover;
}

.play-button {
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s;
}

.video-wrapper-2:hover .play-button {
    transform: scale(1.1);
    color: var(--primary-red);
}

.transcript-highlight {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border-left: 4px solid var(--primary-red);
    background: rgba(255, 255, 255, 0.05);
    font-style: italic;
}

/* Checkout */
.checkout-section {
    padding: 80px 0 20px 0;
    background: linear-gradient(to bottom, #050505, #1a0000);
    text-align: center;
}

.headline-checkout {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    color: white;
}

.checkout-box {
    margin-bottom: 10px;
}

.arrow-down {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.hidden-price {
    margin-top: 30px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.hidden-price.visible {
    display: block;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    display: block;
    font-size: 2rem;
    color: #00ff00;
    font-weight: bold;
    margin: 10px 0;
}

.payment-methods {
    font-size: 0.9rem;
    color: #ccc;
}

.guarantee-box {
    max-width: 600px;
    margin: 0 auto;
    border: 2px dashed #444;
    padding: 30px;
    border-radius: 10px;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: #000;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.8rem;
}

/* Popup - Dark Glassmorphism */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 400px;
    max-width: 90%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: popup-scale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popup-scale {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ios-text-container {
    padding: 0;
    margin-bottom: 30px;
}

.ios-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.ios-message {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.ios-message #popupTimer {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 18px;
}

.ios-actions {
    display: flex;
    gap: 12px;
    border-top: none;
}

.ios-btn {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ios-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ios-secondary {
    color: rgba(255, 255, 255, 0.7);
}

.ios-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.ios-primary {
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.ios-primary:hover {
    background: #ff2020;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    animation: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float:hover svg {
    animation: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes phone-ring {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
    }
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
    animation: phone-ring 2s infinite ease-in-out;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}