:root {
    --primary-color: #facc15;
    --primary-hover: #eab308;
    --secondary-color: #dc2626;
    --dark-bg: #0f0f0f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Russo One', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.highlight {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.text-muted {
    color: var(--text-muted);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.6);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
    min-width: 250px;
}

.btn-xl {
    padding: 20px 50px;
    font-size: 1.4rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* Header */
.glass-header {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #2a2a2a 0%, #0f0f0f 70%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.4;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    display: block;
    max-width: 100%;
    width: 600px;
    /* Adjust size as needed */
    height: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.2));
    /* animation: zoomIn 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards; Removed for LCP optimization */
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.badge-pulse {
    background: rgba(220, 38, 38, 0.2);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.geo-location-container {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glitch-text {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px var(--secondary-color);
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #d1d5db;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Pricing Card in Hero */
.pricing-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(250, 204, 21, 0.3);
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.price-header {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.price-values {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.price-small {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-cash {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
}

.payment-methods {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #9ca3af;
    font-size: 1.5rem;
}

.payment-methods span {
    font-size: 0.8rem;
}

/* Benefits Section */
.benefits-highlight {
    background: linear-gradient(to bottom, var(--dark-bg), #1a1a1a);
}

.benefits-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

.benefit-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.benefit-item p {
    font-size: 1.1rem;
    color: #e5e7eb;
}

/* Features Section */
.section-padding {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-main);
    font-weight: 700;
}

/* Preview Folders */
.folders-mockup {
    margin-bottom: 50px;
}

.folder-window {
    background: #1e1e1e;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.folder-header {
    background: #2d2d2d;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.address-bar {
    font-size: 0.8rem;
    color: #aaa;
    background: #1a1a1a;
    padding: 2px 10px;
    border-radius: 4px;
    width: 100%;
}

.folder-content {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.05);
}

.folder-content::-webkit-scrollbar {
    width: 8px;
}

.folder-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.folder-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.folder-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.folder-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.folder-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.folder-item span {
    font-size: 0.9rem;
}

.albums-grid {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 20px;
}

.albums-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollAlbums 15s linear infinite;
}

.albums-track:hover {
    animation-play-state: paused;
}

@keyframes scrollAlbums {
    0% {
        transform: translateX(0);
    }

    100% {
        /* 4 images (300px) + 4 gaps (20px) = 1280px */
        transform: translateX(-1280px);
    }
}

.album-cover {
    width: 300px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.album-cover:hover {
    transform: scale(1.05);
}

/* WhatsApp Section */
.whatsapp-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 30px;
    padding: 50px;
}

.whatsapp-text {
    flex: 1;
    min-width: 300px;
}

.whatsapp-text h2 {
    color: #25D366;
}

.whatsapp-image img {
    max-width: 100%;
    width: 300px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    text-align: left;
}

.testimonial-card .stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author span {
    font-weight: bold;
}

/* Guarantee */
.guarantee-box {
    display: inline-block;
    max-width: 600px;
    border-color: var(--primary-color);
}

.guarantee-icon {
    width: 100px;
    margin-bottom: 20px;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(250, 204, 21, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

/* Scroll Animation Helper */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: #050505;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #1f1f1f;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-links p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.warning {
    color: var(--secondary-color) !important;
    font-weight: bold;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .glitch-text {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding-top: 30px;
    }

    .price-values {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .price-large {
        font-size: 3rem;
    }

    .whatsapp-container {
        padding: 30px;
        text-align: center;
    }

    .whatsapp-image {
        display: none;
    }
}