/* ========================================
   VARIABLES Y CONFIGURACIÓN GLOBAL
   ======================================== */
:root {
    --primary-color: #2e427a;
    --secondary-color: #fcd100;
    --accent-color: #feb101;
    --success-color: #3e68af;
    --danger-color: #ef4444;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

/* ========================================
   RESET Y ESTILOS BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

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

/* ========================================
   NAVBAR/HEADER
   ======================================== */

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION - ANIVERSARIO MEJORADO
   ======================================== */

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #fcd100 0%, #ffb700 50%, #ff9f00 100%);
    min-height: 550px;
    justify-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    display: contents;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* ========================================
   GLOBOS - ANIMACIÓN FLOTANTE
   ======================================== */

.balloon {
    position: absolute;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.balloon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.balloon-1 {
    width: 140px;
    height: 160px;
    top: -20px;
    left: 40px;
    animation: float 5s ease-in-out infinite;
}

.balloon-2 {
    width: 110px;
    height: 130px;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.balloon-3 {
    width: 95px;
    height: 115px;
    top: 350px;
    left: 60px;
    animation: float 5.5s ease-in-out infinite;
    animation-delay: 1s;
}

/* ========================================
   CINTAS - ANIMACIÓN ONDULANTE
   ======================================== */

.ribbon {
    position: absolute;
    opacity: 0.9;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.ribbon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ribbon-1 {
    width: 280px;
    height: 180px;
    top: 20px;
    right: 80px;
    animation: wave 3s ease-in-out infinite;
}

.ribbon-2 {
    width: 200px;
    height: 140px;
    top: 280px;
    right: 40px;
    animation: wave 3.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* ========================================
   SERPENTINAS - POSICIONAMIENTO
   ======================================== */

.confetti {
    position: absolute;
    opacity: 0.85;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.confetti img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.confetti-1 {
    width: 120px;
    height: 100px;
    top: 100px;
    right: 20px;
    animation: spin 4s linear infinite;
}

.confetti-2 {
    width: 100px;
    height: 90px;
    bottom: 80px;
    right: 60px;
    animation: spin 5s linear infinite;
    animation-direction: reverse;
}

/* ========================================
   CONTENIDO DEL HERO
   ======================================== */

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
    align-items: flex-start;
    padding: 0 2rem;
    max-width: 500px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-title .highlight {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

/* ========================================
   COUNTDOWN TIMER
   ======================================== */

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
    max-width: 450px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
    min-height: 110px;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.countdown-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ========================================
   BOTONES DEL HERO
   ======================================== */

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #172554 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   IMAGEN DEL HERO
   ======================================== */

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: bounce 3s ease-in-out infinite;
}

/* ========================================
   ANIMACIONES
   ======================================== */

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

@keyframes wave {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateX(15px) rotate(-8deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ========================================
   SECCIÓN PROMOCIONES
   ======================================== */

.promociones {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

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

.promo-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.promo-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.promo-icon {
    width: auto;
    height: auto;
    margin: 0 auto 1.5rem;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.promo-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.promo-card:hover .promo-icon img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.promo-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.promo-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.promo-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.promo-card:hover .promo-badge {
    background: var(--accent-color);
    transform: scale(1.05);
}

/* ========================================
   REVISTA DIGITAL
   ======================================== */

.revista-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, var(--light-bg) 100%);
}

.revista-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.revista-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.revista-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.revista-features {
    list-style: none;
    margin-bottom: 2rem;
}

.revista-features li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.magazine-mockup {
    perspective: 1000px;
}

.magazine-mockup img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transform: rotateY(-5deg);
}

/* ========================================
   VIDEOS CON MODAL
   ======================================== */

.videos-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #fef3c7 100%);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: white;
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border: 3px solid white;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: var(--shadow-xl);
}

.video-info {
    padding: 1.5rem;
}

.video-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.video-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.video-duration {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========================================
   MODAL DE VIDEO
   ======================================== */

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.modal-video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

/* ========================================
   UBICACIONES CON MAPAS
   ======================================== */

.ubicaciones {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef3c7 0%, var(--light-bg) 100%);
}

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

.ubicacion-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    border: 2px solid transparent;
}

.ubicacion-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--secondary-color);
}

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

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ubicacion-info {
    padding: 1.5rem;
}

.ubicacion-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ubicacion-card p {
    color: var(--text-light);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.ubicacion-card p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.ubicacion-direccion {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.8rem !important;
}

.ubicacion-horario {
    color: var(--success-color);
    font-weight: 600;
    margin-top: 0.8rem !important;
    margin-bottom: 1.2rem !important;
}

.btn-maps {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.btn-maps:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-maps:active {
    transform: translateY(0);
}

/* ========================================
   TÉRMINOS Y CONDICIONES
   ======================================== */

.terminos {
    padding: 2rem 0;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.terminos-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cbd5e1;
}

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

.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* ========================================
   UTILIDADES
   ======================================== */

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

.text-center .btn {
    margin: 0 auto;
}

/* ========================================
   RESPONSIVE - TABLETS (1024px)
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 1.5rem;
        max-width: 100%;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 1rem;
        max-width: 400px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .balloon-1 {
        width: 100px;
        height: 120px;
        top: 20px;
        left: 20px;
    }

    .balloon-2 {
        width: 80px;
        height: 100px;
        top: 150px;
    }

    .balloon-3 {
        width: 70px;
        height: 90px;
        top: 300px;
        left: 30px;
    }

    .ribbon-1 {
        width: 180px;
        height: 120px;
        top: 10px;
        right: 30px;
    }

    .ribbon-2 {
        width: 140px;
        height: 100px;
        top: 200px;
        right: 20px;
    }

    .confetti-1 {
        width: 80px;
        height: 70px;
        top: 80px;
        right: 10px;
    }

    .confetti-2 {
        width: 70px;
        height: 60px;
        bottom: 60px;
        right: 30px;
    }

    .revista-content {
        grid-template-columns: 1fr;
    }

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

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

    .btn {
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE - TABLETS (768px)
   ======================================== */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }

    .countdown-item {
        padding: 0.8rem;
        min-height: auto;
    }

    .countdown-value {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .balloon-1 {
        width: 70px;
        height: 85px;
        top: 10px;
        left: 10px;
    }

    .balloon-2 {
        width: 60px;
        height: 75px;
        top: 120px;
    }

    .balloon-3 {
        width: 50px;
        height: 65px;
        top: 250px;
        left: 15px;
    }

    .ribbon-1 {
        width: 120px;
        height: 80px;
        top: 5px;
        right: 10px;
    }

    .ribbon-2 {
        width: 90px;
        height: 70px;
        top: 150px;
        right: 5px;
    }

    .confetti-1 {
        width: 60px;
        height: 50px;
        top: 60px;
        right: 5px;
    }

    .confetti-2 {
        width: 50px;
        height: 45px;
        bottom: 50px;
        right: 15px;
    }

    .promociones {
        padding: 3rem 0;
    }

    .promociones-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .promo-icon img {
        width: 85px;
        height: 85px;
    }

    .promo-card {
        padding: 1.5rem;
    }

    .promo-card h3 {
        font-size: 1.3rem;
    }

    .revista-text h2 {
        font-size: 2rem;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .ubicaciones-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .mapa-container {
        height: 180px;
    }

    .btn-maps {
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE - MÓVILES (480px)
   ======================================== */

@media (max-width: 480px) {
    .hero {
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 0.8rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .countdown-item {
        padding: 0.8rem;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-image {
        max-width: 250px;
    }

    .balloon-1 {
        width: 60px;
        height: 75px;
    }

    .ribbon-1 {
        width: 100px;
        height: 70px;
    }

    .promociones {
        padding: 2rem 0;
    }

    .promociones-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .promo-icon img {
        width: 75px;
        height: 75px;
    }

    .promo-card {
        padding: 1.2rem;
    }

    .promo-card h3 {
        font-size: 1.2rem;
    }

    .promo-card p {
        font-size: 0.85rem;
    }

    .promo-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .revista-text h2 {
        font-size: 1.8rem;
    }

    .revista-text p {
        font-size: 1rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .play-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .video-info {
        padding: 1rem;
    }

    .video-card h3 {
        font-size: 1rem;
    }

    .video-card p {
        font-size: 0.9rem;
    }

    .modal-content {
        width: 98%;
        border-radius: 8px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }

    .ubicaciones {
        padding: 2rem 0;
    }

    .ubicaciones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mapa-container {
        height: 160px;
    }

    .ubicacion-info {
        padding: 1rem;
    }

    .ubicacion-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .ubicacion-card p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .btn-maps {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }
}

/* ========================================
   RESPONSIVE - EXTRA PEQUEÑO (360px)
   ======================================== */

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .countdown-timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .countdown-value {
        font-size: 1.1rem;
    }

    .balloon-1 {
        width: 50px;
        height: 65px;
    }

    .ribbon-1 {
        width: 80px;
        height: 60px;
    }

    .promo-icon img {
        width: 65px;
        height: 65px;
    }

    .promo-card h3 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .mapa-container {
        height: 150px;
    }

    .ubicacion-info {
        padding: 0.8rem;
    }

    .ubicacion-card h3 {
        font-size: 1rem;
    }

    .ubicacion-card p {
        font-size: 0.85rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }
}
