/* ========================================
   TABACOPARALIARONLINE - ESTILOS PRINCIPALES
   Diseño moderno, vibrante y dinámico
   ======================================== */

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7931E;
    --success-color: #27AE60;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* ========================================
   AGE GATE MODAL
   ======================================== */

.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-modal.hidden {
    display: none;
}

.age-gate-content {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.age-gate-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.age-gate-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.age-gate-buttons .btn {
    flex: 1;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C42 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #003A6B;
    transform: translateY(-3px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
    background: linear-gradient(135deg, #25D366 0%, #20BA5E 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.whatsapp-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ========================================
   HEADER STICKY
   ======================================== */

.header {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #003A6B 50%, #002D52 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-top {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #003A6B 50%, #002D52 100%);
    padding: 0;
}

.header-modern {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #003A6B 50%, #002D52 100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 12px 20px;
}

.header-logo {
    flex-shrink: 0;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 700;
}

.brand-link:hover {
    transform: scale(1.05);
    color: #FF6B35;
}

.brand-icon {
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.brand-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 100%);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 80%;
}

.header-actions {
    flex-shrink: 0;
}

.header-warning {
    background: #E74C3C;
    color: white;
    padding: 8px 0;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   FEATURES BAR
   ======================================== */

.features-bar {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #003A6B 50%, #002D52 100%);
    border-top: 3px solid rgba(255, 107, 53, 0.4);
    border-bottom: 3px solid rgba(255, 107, 53, 0.4);
    padding: 30px 0;
}

.features-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.features-list {
    display: flex;
    gap: 30px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    color: #25D366;
    font-size: 18px;
    font-weight: bold;
}

.feature-text {
    color: #ddd;
}

.features-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-feature {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-prices {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-prices:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.btn-whatsapp-feature {
    background: linear-gradient(135deg, #25D366 0%, #20BA5E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-feature:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    color: white;
    padding: 120px 0;
    text-align: center;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   VARIEDADES SECTION
   ======================================== */

.variedades {
    padding: 60px 0;
    background: var(--bg-light);
}

.variedades h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.variedades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.variedad-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.variedad-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.variedad-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.variedad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.variedad-card h3 {
    padding: 25px 25px 15px;
    color: var(--secondary-color);
    font-size: 22px;
    text-align: center;
}

.variedad-caracteristicas {
    padding: 0 25px 25px;
}

.caracteristica {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.caracteristica:last-child {
    border-bottom: none;
}

.caracteristica .label {
    font-weight: 600;
    color: var(--secondary-color);
}

.caracteristica .valor {
    color: var(--text-light);
    text-align: right;
}

.variedad-card .btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    display: block;
}

/* ========================================
   CATÁLOGO SECTION
   ======================================== */

.catalogo {
    padding: 60px 0;
    background: var(--bg-white);
}

.catalogo h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 16px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: 20px 20px 10px;
    color: var(--secondary-color);
    font-size: 18px;
}

.product-desc {
    padding: 0 20px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-price {
    padding: 0 20px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-card .btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
}

/* ========================================
   OFERTAS SECTION
   ======================================== */

.por-que-elegir {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #F0F0F0 100%);
}

.por-que-elegir h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.razones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.razon-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.razon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.razon-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.razon-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.razon-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   ARTICULOS SECTION
   ======================================== */

.articulos {
    padding: 60px 0;
    background: var(--bg-white);
}

.articulos h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.articulos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.articulo-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #F5F5F5 100%);
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.articulo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.articulo-numero {
    display: inline-flex;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.articulo-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.3;
}

.articulo-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.articulo-puntos {
    list-style: none;
    padding: 0;
}

.articulo-puntos li {
    color: var(--text-dark);
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
}

.articulo-puntos li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========================================
   COMO COMPRAR SECTION
   ======================================== */

.como-comprar {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #F0F0F0 100%);
}

.como-comprar h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.pasos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.paso-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.paso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.paso-numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.paso-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.paso-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* ========================================
   TESTIMONIOS SECTION
   ======================================== */

.testimonios {
    padding: 60px 0;
    background: var(--bg-white);
}

.testimonios h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonio-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #F5F5F5 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonio-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.autor {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    padding: 60px 0;
    background: var(--bg-white);
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 20px;
    background: var(--bg-white);
    display: none;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 10px 0;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */

.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF8C42 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 14px;
}

.footer-section strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .header-container {
        gap: 20px;
        padding: 10px 15px;
    }

    .header-nav {
        gap: 15px;
        flex: none;
    }

    .nav-link {
        font-size: 12px;
    }

    .btn-whatsapp {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }

    .whatsapp-icon {
        font-size: 16px;
    }

    .whatsapp-text {
        display: none;
    }

    .brand-text {
        font-size: 16px;
    }

    .features-bar .container {
        flex-direction: column;
        gap: 15px;
    }

    .features-list {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .feature-item {
        font-size: 12px;
    }

    .features-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-feature {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .catalogo h2,
    .como-comprar h2,
    .faq h2,
    .por-que-elegir h2,
    .testimonios h2,
    .articulos h2,
    .cta-final h2 {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .paso-card {
        padding: 30px 20px;
    }

    .paso-numero {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .paso-card h3 {
        font-size: 18px;
    }

    .paso-card p {
        font-size: 14px;
    }

    .razon-card {
        padding: 30px 20px;
    }

    .razon-card h3 {
        font-size: 18px;
    }

    .razon-card p {
        font-size: 14px;
    }

    .razon-icon {
        font-size: 40px;
    }

    .variedad-image {
        height: 250px;
    }

    .variedad-card h3 {
        font-size: 18px;
    }

    .caracteristica {
        font-size: 13px;
    }

    .articulo-card {
        padding: 30px 20px;
    }

    .articulo-card h3 {
        font-size: 18px;
    }

    .articulo-card p {
        font-size: 14px;
    }

    .cta-final {
        padding: 60px 0;
    }

    .cta-final h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 8px 10px;
    }

    .header-logo {
        flex: 1;
        min-width: 150px;
    }

    .header-nav {
        display: none;
    }

    .header-actions {
        flex: 1;
        min-width: 100px;
    }

    .btn-header {
        padding: 8px 12px;
        font-size: 11px;
    }

    .brand-text {
        font-size: 14px;
    }

    .brand-icon {
        font-size: 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .catalogo h2,
    .ofertas h2,
    .testimonios h2,
    .cta-final h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .catalog-grid,
    .offers-grid,
    .testimonios-grid,
    .features-grid {
        gap: 20px;
    }

    .feature-card,
    .product-card,
    .offer-card,
    .testimonio-card {
        padding: 20px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cta-final {
        padding: 40px 0;
    }

    .cta-final h2 {
        font-size: 24px;
    }

    .cta-final p {
        font-size: 14px;
    }

    .age-gate-content {
        padding: 30px 20px;
    }

    .age-gate-content h2 {
        font-size: 22px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

a:focus,
button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.product-card,
.offer-card,
.testimonio-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
