/* ===============================================
   JOVENTE - Hoja de estilos principal
   Versión: 2.0
   Optimizada y corregida
   =============================================== */

/* ===== VARIABLES CSS Y CONFIGURACIÓN GLOBAL ===== */
:root {
    /* Colores principales */
    --primary-color: #FC9C4E;
    --primary-dark: #e57a2b;
    --primary-light: #ff6b35;
    --secondary-color: #2c2c2c;
    
    /* Colores de texto */
    --text-light: #666;
    --text-dark: #333;
    
    /* Fondos */
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --white: #ffffff;
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #FC9C4E 0%, #ff6b35 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    --gradient-dark-135: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    
    /* Transiciones */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Espaciados */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-2xl: 80px;
    --spacing-3xl: 100px;
    
    /* Bordes */
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
}

/* ===== RESET Y ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== UTILIDADES GLOBALES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER Y NAVEGACIÓN ===== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
}

.logo-container {
    transition: transform 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

a.logo-container {
    text-decoration: none;
}

.logo-container img {
    height: 50px;
    transition: transform 0.3s ease;
    display: block;
}

.logo-container:hover img {
    transform: scale(1.05);
}

/* Navbar */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: var(--transition-base);
    position: relative;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.btn-header {
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-base);
}

.btn-header:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 156, 78, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark-135);
    overflow: hidden;
}

.hero video,
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero video {
    opacity: 0.4;
}

.hero-bg {
    animation: zoomIn 20s ease-in-out infinite alternate;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s ease;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(252, 156, 78, 0.1);
    border: 1px solid rgba(252, 156, 78, 0.3);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.trust-badge span {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badge .separator {
    opacity: 0.5;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(252, 156, 78, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 156, 78, 0.4);
}

.btn-hero-outline {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn-hero-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Hero Testimonial */
.hero-testimonial {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.6s both;
    justify-content: center;
}

.testimonial-avatars {
    display: flex;
    align-items: center;
}

.testimonial-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -10px;
}

.testimonial-avatars img:first-child {
    margin-left: 0;
}

.more-avatars {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: -10px;
    border: 3px solid var(--white);
}

.testimonial-text .stars {
    color: #ffc107;
    margin-bottom: 5px;
}

.testimonial-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.section-header {
    display: flex;
    text-align: center;
    margin-bottom: 60px;
    align-items: center;
    flex-direction: column;
}

.section-tag {
    display: inline-block;
    background: rgba(252, 156, 78, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(252, 156, 78, 0.3);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(252, 156, 78, 0.1) 0%, rgba(252, 156, 78, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition-base);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    color: var(--text-dark);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.service-stat {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-service:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.btn-service.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-service.btn-primary:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(252, 156, 78, 0.3);
}

/* Services CTA */
.services-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-light);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    margin-top: 60px;
    border: 2px dashed rgba(252, 156, 78, 0.3);
}

.cta-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn-custom-event {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    color: var(--white);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-custom-event:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

/* ===== MENÚ MÓVIL ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition-base);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .nav-item {
    margin-bottom: 1rem;
}

.mobile-nav .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition-base);
}

.mobile-nav .nav-link:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-nav .nav-link::after {
    display: none;
}

.mobile-cta {
    margin-top: 2rem;
}

.mobile-cta .btn-header {
    display: block;
    text-align: center;
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== BOTONES GLOBALES ===== */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== PRÓXIMOS EVENTOS SECTION ===== */
.proximos-eventos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.proximos-eventos-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.proximos-eventos-section .section-tag {
    display: inline-block;
    background: rgba(252, 156, 78, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.eventos-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.evento-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 500px;
}

.evento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.evento-item.featured {
    border: 2px solid var(--primary-color);
}

.evento-fecha-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    min-width: 50px;
}

.evento-fecha-badge .mes {
    display: block;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.evento-fecha-badge .dia {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.evento-imagen {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.evento-imagen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    background: white;
}

.evento-item:hover .evento-imagen img {
    transform: scale(1.1);
}

.evento-categoria {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.evento-detalles {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.evento-detalles h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-descripcion {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.evento-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.evento-meta i {
    color: var(--primary-color);
    font-size: 12px;
}

.evento-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.btn-ver-mas {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.btn-ver-mas:hover {
    gap: 8px;
    text-decoration: underline;
}

.btn-comprar {
    background: #4CAF50;
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-comprar:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.evento-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 15px;
    white-space: nowrap;
}

.evento-status.agotado {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.evento-status.disponible {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.evento-status.ultimas {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.evento-status.privado {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

/* No eventos message */
.no-eventos {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.no-eventos p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* CTA Box */
.eventos-cta {
    margin-top: 60px;
    padding: 0 20px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(252, 156, 78, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-box .cta-content {
    flex: 1;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    opacity: 0.95;
    color: white;
}

.btn-programa-completo {
    background: white;
    color: var(--primary-color);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.btn-programa-completo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Ver más eventos button */
.ver-mas-eventos {
    text-align: center;
    margin-top: 40px;
}

.ver-mas-eventos .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive para Próximos Eventos */
@media (max-width: 992px) {
    .eventos-timeline {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .eventos-timeline {
        grid-template-columns: 1fr;
    }
    
    .evento-item.featured {
        transform: scale(1);
    }
    
    .cta-box {
        padding: 35px 25px;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .evento-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .evento-fecha-badge {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
    }
    
    .evento-fecha-badge .dia {
        font-size: 1.2rem;
    }
    
    .btn-programa-completo {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
}

/* ===== ACTIVIDADES/EVENTOS DESTACADOS ===== */
.actividades-section {
    padding: 100px 0;
    background: white;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.evento-card {
    background: white;
    padding: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.evento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.evento-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evento-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background: white;
}

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

.evento-fecha {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.evento-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.evento-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.evento-info {
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.evento-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.evento-info i {
    color: var(--primary-color);
    font-size: 14px;
}

.btn-evento {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(252, 156, 78, 0.3);
    border: none;
    cursor: pointer;
}

.btn-evento:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 156, 78, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.btn-agotado {
    background: #dc3545;
    cursor: not-allowed;
    opacity: 0.8;
}

/* ===== GALERÍA MODERNA ===== */
.galeria-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.galeria-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.galeria-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-item:hover .galeria-img {
    transform: scale(1.1);
}

.galeria-caption h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.galeria-caption p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Modal de galería */
.galeria-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.galeria-modal-contenido {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.galeria-modal-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border: 5px solid white;
}

.galeria-cerrar {
    position: absolute;
    top: -40px;
    right: 10px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.galeria-modal-caption {
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
}

/* ===== TESTIMONIOS RENOVADOS ===== */
.testimonios-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.testimonio-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonio-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: rgba(252, 156, 78, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonio-rating {
    margin-bottom: 20px;
}

.testimonio-rating i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 2px;
}

.testimonio-texto {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.testimonio-img,
.testimonio-img-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonio-img-placeholder {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
}

.testimonio-info h5 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.testimonio-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Responsive para Testimonios */
@media (max-width: 992px) {
    .testimonios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonios-section {
        padding: 60px 0;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonio-card {
        padding: 25px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .testimonio-card::before {
        font-size: 40px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .testimonios-wrapper {
        padding: 0 15px;
    }
    
    .testimonio-card {
        padding: 20px;
    }
    
    .testimonio-texto {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .testimonio-autor {
        gap: 12px;
        padding-top: 15px;
    }
    
    .testimonio-img,
    .testimonio-img-placeholder {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .testimonio-info h5 {
        font-size: 0.95rem;
    }
    
    .testimonio-info p {
        font-size: 0.8rem;
    }
}

/* ===== SOBRE JOVENTE ===== */
.sobre-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sobre-content p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
    margin-top: 30px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 100px 0;
    background: white;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-date {
    color: var(--text-light);
}

.blog-category {
    background: rgba(252, 156, 78, 0.1);
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-blog {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.btn-blog:hover {
    gap: 10px;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .blog-header .section-title {
        margin-bottom: 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .blog-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        gap: 20px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
}

/* ===== NEWSLETTER MODERNO ===== */
.newsletter-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,213.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
    background-size: cover;
    animation: wave 10s ease-in-out infinite;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.newsletter-container h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 0;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.btn-newsletter {
    padding: 15px 35px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.privacy-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: white;
    font-size: 0.9rem;
}

.privacy-check a {
    color: white;
    text-decoration: underline;
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-container h2 {
        font-size: 2rem;
    }
    
    .newsletter-container p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .btn-newsletter {
        width: 100%;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .newsletter-container {
        padding: 0 15px;
    }
    
    .newsletter-container h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-container p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .newsletter-input {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .btn-newsletter {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .privacy-check {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

/* ===== CONTACTO MODERNIZADO ===== */
.contacto-section {
    padding: 100px 0;
    background: white;
}

.contacto-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(252, 156, 78, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(252, 156, 78, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 156, 78, 0.4);
}

#email-status {
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
}

#email-status.success {
    background: #d4edda;
    color: #155724;
}

#email-status.error {
    background: #f8d7da;
    color: #721c24;
}

/* ===== FOOTER ELEGANTE ===== */
footer {
    background: #1a1a1a;
    color: white;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

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

.footer-section h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ===== MODAL DE PRIVACIDAD ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    position: relative;
    margin: 50px auto;
    max-width: 800px;
    width: 90%;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

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

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.5rem;
    margin: 0;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.btn-close:hover {
    color: #333;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
}

.btn-secondary {
    padding: 10px 20px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        padding: 0 20px;
    }
    
    .navbar {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-container img {
        height: 40px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    /* Urgency */
    .urgency-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .urgency-content h2 {
        font-size: 1.8rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .services-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    /* Countdown */
    .countdown-modern {
        gap: 5px;
    }
    
    .countdown-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Header */
    .header-container {
        height: 70px;
    }
    
    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    /* Countdown */
    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header-wrapper,
    .mobile-menu,
    .mobile-overlay,
    .scroll-indicator,
    .btn-hero,
    .countdown-section,
    .newsletter-section {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
}