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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* NAVEGACIÓN */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; flex-direction: column; align-items: flex-start; }
.logo h1 { font-size: 32px; font-weight: 900; letter-spacing: -1px; }
.logo h1 .la, .footer-brand .la { color: #fff; }
.logo h1 .chorcha, .footer-brand .chorcha { color: #22d3ee; }
.logo p { font-size: 11px; color: #6b7280; text-transform: uppercase; letter-spacing: 2px; margin-top: -2px; }

.nav-menu { display: flex; gap: 40px; list-style: none; }
.nav-menu a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-menu a:hover { color: #22d3ee; }

/* Hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1100; }
.menu-toggle span {
    width: 28px; height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

/* Mobile nav overlay */
.nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1050;
}
.nav-menu.open a { font-size: 22px; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5)),
                url('/images/fondoopcional.jpeg') center/cover;
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; text-align: center; max-width: 1200px; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34,211,238,0.1);
    border: 1px solid rgba(34,211,238,0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}
.badge span { color: #22d3ee; font-size: 14px; font-weight: 700; }

.hero-logo { margin-bottom: 20px; animation: fadeInScale 1s ease-out; }
.hero-logo img {
    max-width: 90%;
    width: clamp(500px, 50vw, 500px);
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(34,211,238,0.3));
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

.hero p { font-size: clamp(18px, 3vw, 28px); color: #d1d5db; margin-bottom: 15px; font-weight: 300; }

.features-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin: 40px 0; font-size: 16px; }
.feature-item { display: flex; align-items: center; gap: 10px; color: #9ca3af; }
.feature-item span { font-size: 24px; }

.cta-buttons { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 50px; }

.btn {
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-primary {
    background: linear-gradient(135deg, #dc2626, #22d3ee);
    color: #fff;
    box-shadow: 0 10px 30px rgba(220,38,38,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(220,38,38,0.5); }
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #22d3ee; }

/* SECCIONES BASE */
section { padding: 100px 20px; position: relative; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; margin-bottom: 15px; }
.section-title p { font-size: 20px; color: #6b7280; }

.container { max-width: 1400px; margin: 0 auto; }

/* NOSOTROS */
.about-experience {
    background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
    color: #000;
}

.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

.about-content h3 { font-size: clamp(28px, 4vw, 38px); font-weight: 900; color: #dc2626; margin-bottom: 20px; line-height: 1.2; }

.about-description { font-size: 18px; line-height: 1.8; color: #4b5563; margin-bottom: 40px; }
.about-description strong { color: #dc2626; font-weight: 700; }

.features-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 50px; }

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 24px;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
}
.feature-box:hover {
    border-color: #22d3ee;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34,211,238,0.2);
    background: linear-gradient(135deg, #ecfeff, #cffafe);
}
.feature-emoji { font-size: 36px; display: block; }
.feature-box h4 { font-size: 16px; font-weight: 800; color: #1f2937; margin-bottom: 4px; }
.feature-box p { font-size: 13px; color: #6b7280; line-height: 1.4; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 30px 0; border-top: 2px solid #e5e7eb; }
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.stat-label { display: block; font-size: 13px; color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Imágenes sección Nosotros ── */
.about-images-new { display: flex; flex-direction: column; gap: 20px; }

.image-main-new {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}
.image-main-new img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}
/* Hover efecto: brillo + zoom suave */
.image-main-new:hover img {
    transform: scale(1.07);
    filter: brightness(1.1) saturate(1.2);
}
/* Shine sweep */
.image-main-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.18) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    pointer-events: none;
    border-radius: 24px;
}
.image-main-new:hover::after { transform: translateX(100%); }

.images-grid-new { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.images-grid-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}
.images-grid-new img:hover {
    transform: scale(1.06);
    filter: brightness(1.12) saturate(1.15);
    box-shadow: 0 18px 45px rgba(34,211,238,0.25);
}

/* DOS EXPERIENCIAS */
.dual-concept { background: linear-gradient(180deg, #000 0%, #0a0a0a 100%); }
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.concept-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 50px;
    overflow: hidden;
    transition: all 0.4s;
}
.concept-card:hover { transform: translateY(-10px); border-color: rgba(34,211,238,0.5); }
.concept-card.grill { background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(220,38,38,0.05)); }
.concept-card.terraza { background: linear-gradient(135deg, rgba(34,211,238,0.1), rgba(34,211,238,0.05)); }

.concept-logo { margin-bottom: 20px; }
.concept-logo img { max-width: 280px; width: 100%; height: auto; display: block; }

.concept-card .subtitle { color: #6b7280; font-size: 14px; margin-bottom: 30px; text-transform: uppercase; letter-spacing: 2px; }
.concept-card p { color: #9ca3af; line-height: 1.8; margin-bottom: 30px; font-size: 16px; }
.concept-card ul { list-style: none; margin-bottom: 30px; }
.concept-card li { padding: 10px 0 10px 30px; position: relative; color: #d1d5db; }
.concept-card li:before { content: "•"; position: absolute; left: 10px; font-size: 24px; }
.concept-card.grill li:before { color: #dc2626; }
.concept-card.terraza li:before { color: #22d3ee; }

/* CARNAVAL */
.carnaval { background: #161616; position: relative; overflow: hidden; }

.carnaval-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 10px 24px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 30px;
    box-shadow: 0 5px 20px rgba(251,191,36,0.4);
    animation: badgePulse 2s infinite;
}
.carnaval-badge span:first-child { font-size: 20px; }
.carnaval-badge span:last-child { color: #f9fafb; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(251,191,36,0.4); }
    50%       { transform: scale(1.05); box-shadow: 0 8px 30px rgba(251,191,36,0.6); }
}

.carnaval-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; position: relative; z-index: 1; }
.carnaval-info { padding: 20px 0; }

.carnaval-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}
.carnaval-description { font-size: 18px; line-height: 1.8; color: #d1d5db; margin-bottom: 40px; }
.carnaval-description strong { color: #fbbf24; font-weight: 700; }

.carnaval-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.carnaval-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.carnaval-feature:hover { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.3); transform: translateY(-3px); }
.feature-icon { font-size: 32px; display: block; }
.carnaval-feature h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.carnaval-feature p { font-size: 13px; color: #9ca3af; }

.carnaval-schedule {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}
.carnaval-schedule h4 { font-size: 18px; font-weight: 700; color: #fbbf24; margin-bottom: 20px; }
.schedule-grid { display: flex; flex-direction: column; gap: 15px; }

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.schedule-item.highlight {
    background: linear-gradient(135deg, rgba(251,191,36,0.2), rgba(236,72,153,0.2));
    border-color: rgba(251,191,36,0.3);
}
.schedule-item .day { font-weight: 700; color: #fff; font-size: 15px; }
.schedule-item .time { color: #22d3ee; font-weight: 600; font-size: 14px; }
.badge-special {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Carnaval */
.carnaval-video {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #000;
    height: 100%;
}
.carnaval-video video {
    width: 100%;
    height: 750px;
    display: block;
    object-fit: cover;
}
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-thumbnail-wrapper {
    cursor: pointer;
    overflow: hidden;
    border-radius: 16px;
}
.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.video-thumbnail-wrapper:hover .video-thumbnail-img {
    transform: scale(1.04);
    filter: brightness(0.75);
}
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}
.video-thumbnail-wrapper:hover .video-play-overlay {
    background: rgba(0,0,0,0.5);
}
.play-btn-circle {
    width: 90px;
    height: 90px;
    background: rgba(251,191,36,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 40px rgba(251,191,36,0.5);
}
.video-thumbnail-wrapper:hover .play-btn-circle {
    transform: scale(1.12);
    background: #fbbf24;
}
.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(251,191,36,0.5);
    pointer-events: none;
    z-index: 2;
}
/* GALERÍA */
.galeria { background: #0a0a0a; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
    gap: 15px;
}

.gallery-item.left-col:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-item.left-col:nth-child(2) { grid-column: 1; grid-row: 2; }
.gallery-item.left-col:nth-child(3) { grid-column: 1; grid-row: 3; }

.gallery-item.center-big          { grid-column: 2 / 4; grid-row: 1 / 3; }
.gallery-item.center-bottom-left  { grid-column: 2; grid-row: 3; }
.gallery-item.center-bottom-right { grid-column: 3; grid-row: 3; }

.gallery-item.right-col:nth-child(7) { grid-column: 4; grid-row: 1; }
.gallery-item.right-col:nth-child(8) { grid-column: 4; grid-row: 2; }
.gallery-item.right-col:nth-child(9) { grid-column: 4; grid-row: 3; }

/* Gallery: hover mejorado */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    /* Necesario para que el z-index del hover funcione */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay p {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* UBICACIÓN */
.ubicacion { background: #0a0a0a; }

.ubicacion-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.map-container iframe { width: 100%; height: 100%; border: none; }

.ubicacion-info { display: flex; flex-direction: column; gap: 30px; }

.info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
}
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; color: #22d3ee; }
.info-card p, .info-card ul { color: #9ca3af; font-size: 15px; line-height: 1.8; }
.info-card ul { list-style: none; }
.info-card li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.info-card li:last-child { border-bottom: none; }
.info-card strong { color: #fff; }

.highlight-card { background: linear-gradient(135deg, #22d3ee, #0ea5e9); border: none; }
.highlight-card h3, .highlight-card p { color: #fff; }

/* FOOTER */
.footer { background: #000; border-top: 1px solid rgba(255,255,255,0.1); padding: 60px 20px 30px; }

.footer-content {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}
.footer-brand h3 { font-size: 32px; font-weight: 900; margin-bottom: 15px; }
.footer-brand p { color: #6b7280; line-height: 1.8; margin-bottom: 20px; }

.social-links { display: flex; gap: 15px; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover { background: #22d3ee; transform: translateY(-3px); }

.footer-section h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; }
.footer-section a { color: #6b7280; text-decoration: none; transition: color 0.3s; font-size: 14px; }
.footer-section a:hover { color: #22d3ee; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; color: #6b7280; font-size: 14px; }

/* WHATSAPP & SOCIAL FLOATS */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.7); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

.social-float {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.social-float:hover { transform: scale(1.1); }
.social-float svg { width: 32px; height: 32px; }

.instagram-float {
    bottom: 180px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    box-shadow: 0 5px 20px rgba(214,36,159,0.5);
}
.instagram-float:hover { box-shadow: 0 8px 30px rgba(214,36,159,0.7); }

.facebook-float {
    bottom: 105px;
    background: #1877f2;
    box-shadow: 0 5px 20px rgba(24,119,242,0.5);
}
.facebook-float:hover { box-shadow: 0 8px 30px rgba(24,119,242,0.7); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 5px 30px rgba(37,211,102,0.8); }
}

/* ════════════════════════════════════════
   RESPONSIVE — 1024px
════════════════════════════════════════ */
@media (max-width: 1024px) {
    /* Ocultar menú, mostrar toggle */
    .nav-menu { display: none; }
    .menu-toggle { display: flex; }

    /* Layouts a una columna */
    .about-grid,
    .dual-grid,
    .ubicacion-content { grid-template-columns: 1fr; }

    .about-grid { gap: 50px; }
    .features-compact { grid-template-columns: 1fr 1fr; }
    .stats-row { gap: 20px; }

    .carnaval-grid { grid-template-columns: 1fr; gap: 40px; }
    .carnaval-features { grid-template-columns: 1fr 1fr; }

    /* Video reducido */
    .carnaval-video video { height: 480px; }

    /* Galería: 2 columnas */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }
    .gallery-item.left-col:nth-child(1),
    .gallery-item.left-col:nth-child(2),
    .gallery-item.left-col:nth-child(3),
    .gallery-item.center-big,
    .gallery-item.center-bottom-left,
    .gallery-item.center-bottom-right,
    .gallery-item.right-col:nth-child(7),
    .gallery-item.right-col:nth-child(8),
    .gallery-item.right-col:nth-child(9) {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    /* Mapa responsive */
    .map-container { height: 380px; }

    /* Concepto cards */
    .concept-card { padding: 35px; }

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

    /* Floats un poco más pequeños */
    .social-float,
    .whatsapp-float { width: 52px; height: 52px; }
    .instagram-float { bottom: 160px; }
    .facebook-float  { bottom: 100px; }
    .whatsapp-float  { bottom: 35px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 768px
════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-container { padding: 15px 20px; }

    .hero { padding: 80px 15px 40px; }
    .hero-logo img { width: clamp(260px, 80vw, 400px); }

    section { padding: 60px 15px; }

    /* Nosotros: features 1 col */
    .features-compact { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(3, 1fr); }

    /* Imágenes nosotros */
    .image-main-new img { height: 300px; }
    .images-grid-new { grid-template-columns: 1fr 1fr; }
    .images-grid-new img { height: 180px; }

    /* Concepto */
    .concept-logo img { max-width: 200px; }
    .concept-card { padding: 28px; }

    /* Carnaval */
    .carnaval-features { grid-template-columns: 1fr; }
    .carnaval-video video { height: 380px; }

    /* Galería 1 columna */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.left-col:nth-child(1),
    .gallery-item.left-col:nth-child(2),
    .gallery-item.left-col:nth-child(3),
    .gallery-item.center-big,
    .gallery-item.center-bottom-left,
    .gallery-item.center-bottom-right,
    .gallery-item.right-col:nth-child(7),
    .gallery-item.right-col:nth-child(8),
    .gallery-item.right-col:nth-child(9) {
        height: 260px;
    }

    /* Mapa */
    .map-container { height: 300px; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; gap: 30px; }

    /* Floats */
    .social-float,
    .whatsapp-float { right: 15px; width: 46px; height: 46px; }
    .instagram-float { bottom: 145px; }
    .facebook-float  { bottom: 90px; }
    .whatsapp-float  { bottom: 30px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — 480px
════════════════════════════════════════ */
@media (max-width: 480px) {
    .badge span { font-size: 11px; }
    .badge { padding: 10px 16px; }

    .btn { padding: 14px 28px; font-size: 14px; }

    .stats-row { grid-template-columns: 1fr; gap: 15px; }
    .stat-number { font-size: 32px; }

    .images-grid-new { grid-template-columns: 1fr; }
    .images-grid-new img { height: 200px; }

    .carnaval-video video { height: 280px; }

    .concept-card { padding: 22px; }
    .concept-card p { font-size: 14px; }

    .schedule-item { flex-direction: column; align-items: flex-start; gap: 5px; }

    .gallery-item.left-col:nth-child(1),
    .gallery-item.left-col:nth-child(2),
    .gallery-item.left-col:nth-child(3),
    .gallery-item.center-big,
    .gallery-item.center-bottom-left,
    .gallery-item.center-bottom-right,
    .gallery-item.right-col:nth-child(7),
    .gallery-item.right-col:nth-child(8),
    .gallery-item.right-col:nth-child(9) {
        height: 220px;
    }

    .map-container { height: 260px; }
    .info-card { padding: 20px; }
}