/* --- VARIABLES & DESIGN SYSTEM --- */
:root {
    --primary: #FFD700; /* Gold/Yellow - Carnaval */
    --secondary: #800080; /* Purple - Carnaval */
    --accent: #0047AB; /* Royal Blue - Adventure */
    --dark: #121212;
    --light: #F5F5F7;
    --gray: #888888;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --gradient-carnaval: linear-gradient(135deg, #800080 0%, #0047AB 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- RESET & GLOBALS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center { text-align: center; }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 20px 40px; font-size: 1.1rem; }

.btn-gradient {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-block { width: 100%; text-align: center; display: block; }

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
}

.logo .moto { color: var(--white); }
.logo .aventura { color: var(--primary); }

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

nav a:hover { color: var(--primary); }

/* --- HERO --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 5px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero h1 {
    font-size:clamp(2.5rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--light);
}

.coupon-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--primary);
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.coupon-code {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.btn-copy {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
}

.btn-copy:hover { color: var(--primary); }

.urgency {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* --- COUNTDOWN --- */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.time-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: 80px;
    padding: 15px 0;
    border-radius: 10px;
}

.time-block span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.time-block label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
}

/* --- FEATURES --- */
.features {
    padding: 100px 0;
    background: var(--dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* --- PRODUCTS --- */
.products {
    padding: 100px 0;
    background: #0a0a0a;
}

.category-block {
    margin-top: 80px;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i { color: var(--primary); }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--dark);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.product-card:hover { border-color: var(--primary); }

.product-card img {
    height: 300px;
    width: 100%;
    object-fit: contain;
    background: #1a1a1a;
    padding: 20px;
}

.product-info {
    padding: 30px;
}

.product-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
    height: 3em;
}

.single-card {
    max-width: 600px;
    margin: 0 auto;
}

/* --- COMPARISON --- */
.comparison {
    padding: 100px 0;
}

.table-container {
    margin-top: 60px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(255, 255, 255, 0.07);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

tr:last-child td { border-bottom: none; }

/* --- TRUST --- */
.trust {
    padding: 100px 0;
    background: var(--gradient-carnaval);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.trust-item i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-call {
    max-width: 600px;
    margin: 0 auto;
}

.final-call p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

/* --- FOOTER --- */
footer {
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p { opacity: 0.6; margin-bottom: 20px; }

.social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.6;
}

.social a:hover { opacity: 1; color: var(--primary); }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up { animation: fadeInUp 0.8s ease forwards; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    nav { display: none; }
    .hero h1 { font-size: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .countdown { gap: 10px; }
    .time-block { width: 70px; }
}
