:root {
    --primary: #FFB300;
    --primary-hover: #e6a100;
    --primary-glow: rgba(255, 179, 0, 0.4);

    --bg-main: #0f1014;
    --bg-secondary: #16181d;
    --bg-white: #ffffff;

    --text-main: #f8f9fa;
    --text-muted: #a0a4ab;
    --text-dark: #121212;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

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

.section {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--bg-secondary);
}

.black-bg {
    background-color: var(--bg-main);
}

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

.light-section h2,
.light-section p,
.light-section h3 {
    color: var(--text-dark);
}

.light-section .pre-title {
    color: #d98500;
}

.text-primary-color {
    color: var(--primary);
    display: inline-block;
    text-shadow: 0 4px 15px rgba(255, 179, 0, 0.25);
}

.pre-title {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 20px;
    border-radius: 2px;
}

/* ==================================================
   BOTONES
   ================================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #121212;
}

.glow-effect:hover {
    box-shadow: 0 5px 20px var(--primary-glow);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--bg-main);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-main);
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
    width: 100%;
    max-width: 400px;
}

.btn-large i {
    transition: transform 0.4s ease;
}

.mt-20 {
    margin-top: 20px;
}

.mt-60 {
    margin-top: 60px;
}

/* ==================================================
   WHATSAPP FLOTANTE Y TOOLTIP (ESQUINA INFERIOR IZQUIERDA)
   ================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1) rotate(-5deg);
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    color: #121212;
    padding: 12px 18px;
    border-radius: 20px;
    border-bottom-left-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #25d366;
    pointer-events: none;
    animation: float-tooltip 3s ease-in-out infinite;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent #25d366 transparent transparent;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes float-tooltip {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(8px);
    }
}

/* ==================================================
   HEADER NAVBAR
   ================================================== */
.floating-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 999;
    padding: 18px 30px;
    background: rgba(15, 16, 20, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: var(--transition);
}

.floating-nav.scrolled {
    top: 15px;
    background: rgba(15, 16, 20, 0.98);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 179, 0, 0.3);
    padding: 12px 25px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-main);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    color: var(--text-main);
    transition: color 0.3s;
}

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

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

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

.btn-nav {
    background-color: var(--primary);
    color: #121212;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-nav:hover {
    color: #121212;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    position: absolute;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--primary);
}

.menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: var(--primary);
}

/* ==================================================
   HERO SECTION (DARK MODE)
   ================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.6;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 16, 20, 0.95) 0%, rgba(15, 16, 20, 0.5) 100%);
    z-index: 2;
}

/* -------------------------------------
   NUEVO FUEGO: VECTORES ESTILIZADOS EN FORMA DE LÁGRIMA Y CHISPAS
-------------------------------------- */
.new-fire {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 3;
    pointer-events: none;
}

/* 1. Esquina Superior Izquierda (Debajo del Navbar) */
.fire-tl {
    top: 100px;
    left: 20px;
    transform: scale(1.3);
}

/* 2. Esquina Inferior Derecha */
.fire-br {
    bottom: 20px;
    right: 30px;
    transform: scale(1.6);
}

.f-layer {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
    /* Centra el ancho de 100px */
    border-radius: 0 50% 50% 50%;
    transform-origin: center bottom;
}

/* Capa Roja (Base) */
.f-outer {
    width: 100px;
    height: 100px;
    background: #FF2A00;
    box-shadow: 0 0 20px #FF2A00, inset 0 0 20px #990000;
    transform: rotate(45deg);
    animation: burn-outer 1.2s ease-in-out infinite alternate;
}

/* Capa Naranja (Media) */
.f-mid {
    width: 70px;
    height: 70px;
    background: #FF7B00;
    box-shadow: 0 0 15px #FF7B00;
    margin-left: -35px;
    bottom: 10px;
    transform: rotate(45deg);
    animation: burn-mid 1s ease-in-out infinite alternate;
}

/* Capa Amarilla (Centro/Corazón) */
.f-inner {
    width: 40px;
    height: 40px;
    background: #FFD000;
    box-shadow: 0 0 10px #FFD000, inset 0 0 10px #FFFFFF;
    margin-left: -20px;
    bottom: 15px;
    transform: rotate(45deg);
    animation: burn-inner 0.8s ease-in-out infinite alternate;
}

/* Animaciones del nuevo Fuego */
@keyframes burn-outer {
    0% {
        transform: rotate(45deg) scale(0.9) skewX(2deg);
    }

    100% {
        transform: rotate(45deg) scale(1.1) skewX(-2deg);
    }
}

@keyframes burn-mid {
    0% {
        transform: rotate(45deg) scale(0.85) skewX(-2deg);
    }

    100% {
        transform: rotate(45deg) scale(1.15) skewX(2deg);
    }
}

@keyframes burn-inner {
    0% {
        transform: rotate(45deg) scale(0.9) translateY(2px);
    }

    100% {
        transform: rotate(45deg) scale(1.1) translateY(-2px);
    }
}

/* Efecto de Chispas voladoras */
.f-sparks span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD000;
    border-radius: 50%;
    bottom: 20px;
    left: 50%;
    opacity: 0;
    box-shadow: 0 0 5px #FFD000;
    animation: fly-spark 2s infinite linear;
}

.f-sparks span:nth-child(1) {
    animation-delay: 0.2s;
    left: 40%;
}

.f-sparks span:nth-child(2) {
    animation-delay: 0.7s;
    left: 60%;
    width: 4px;
    height: 4px;
    background: #FF7B00;
}

.f-sparks span:nth-child(3) {
    animation-delay: 1.2s;
    left: 50%;
    width: 8px;
    height: 8px;
}

.f-sparks span:nth-child(4) {
    animation-delay: 1.7s;
    left: 55%;
    width: 5px;
    height: 5px;
    background: #FF2A00;
}

@keyframes fly-spark {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-80px) translateX(20px) scale(0);
        opacity: 0;
    }
}

/* Alitas Emergentes Centradas y Responsivas */
.hero-wings {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 3;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.wings-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(350px) rotate(-5deg) scale(0.9);
    animation: riseUpWings 3.5s cubic-bezier(0.2, 1, 0.3, 1) forwards, floatWings 6s ease-in-out infinite 3.5s;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.9));
}

@keyframes riseUpWings {
    to {
        opacity: 0.95;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes floatWings {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.hero-container {
    position: relative;
    z-index: 4;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    text-align: right;
    max-width: 650px;
    padding-top: 60px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #121212;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.3);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw + 1rem, 5rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: var(--text-muted);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.rating .stars {
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

/* ==================================================
   MENÚ EN TARJETAS BLANCAS CON DEGRADADO
   ================================================== */
.menu-dropdown-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.menu-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out, opacity 0.6s ease;
    opacity: 0;
    margin-top: 0;
}

.menu-dropdown-content.open {
    max-height: 2500px;
    opacity: 1;
    margin-top: 30px;
}

.real-menu-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 3px solid #121212;
}

.category-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
    text-transform: uppercase;
}

.menu-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.menu-item-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    height: 120px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 179, 0, 0.25);
    border-color: rgba(255, 179, 0, 0.6);
}

.item-img-side {
    position: relative;
    width: 130px;
    flex-shrink: 0;
    background: #fdfdfd;
}

.item-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-gradient-blend {
    position: absolute;
    top: 0;
    right: -1px;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, transparent, #ffffff);
}

.item-info-side {
    padding: 15px 20px 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.item-info-side h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-row .price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
}

.addon-badge {
    background: var(--primary);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(255, 179, 0, 0.4);
}

/* ==================================================
   GALERÍA Y EVENTOS - ACÁ SE ARREGLÓ LA GRID DE 3X2
   ================================================== */
.gallery-grid {
    display: grid;
    /* Forzamos exactamente 3 columnas para que los 6 items formen un 3x2 */
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: zoom-in;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 16, 20, 0.9), rgba(15, 16, 20, 0.1));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.pointer-none {
    pointer-events: none;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    color: var(--text-main);
}

.overlay-content i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overlay-content h4 {
    font-size: 1.5rem;
}

.gallery-item:hover {
    border-color: var(--primary);
}

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

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

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

/* Eventos */
.event-bg {
    position: relative;
    background-image: url('assets/Picsart_26-06-16_23-15-49-501.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 20, 0.85);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.event-card {
    background: rgba(28, 31, 38, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    max-width: 650px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.event-content h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-bottom: 10px;
    color: var(--text-main);
}

.event-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.event-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.event-features {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    gap: 15px;
    font-weight: 600;
}

.event-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.event-features i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==================================================
   UBICACIÓN Y FOOTER
   ================================================== */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.location-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 179, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.info-text p {
    color: var(--text-muted);
    font-weight: 500;
}

.info-text .phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.info-text .highlight-text {
    color: var(--bg-main);
    background: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    margin-top: 5px;
}

.map-container {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    filter: grayscale(100%) invert(90%) contrast(85%);
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: none;
}

.footer {
    background-color: #050608;
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    border-radius: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
    font-weight: 500;
}

.footer-links h3,
.footer-social-section h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--bg-main);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.dev-credit strong {
    color: var(--primary);
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Animaciones */
.reveal {
    visibility: hidden;
}

.fade-up {
    transform: translateY(40px);
}

.fade-left {
    transform: translateX(40px);
}

.fade-right {
    transform: translateX(-40px);
}

.reveal.active {
    visibility: visible;
    transform: translate(0);
    opacity: 1;
    animation: fadeIn 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s !important;
}

.delay-2 {
    animation-delay: 0.3s !important;
}

.delay-3 {
    animation-delay: 0.45s !important;
}

.delay-4 {
    animation-delay: 0.6s !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
        transform: translate(0);
    }
}

/* Responsividad Móvil */
@media (max-width: 1024px) {

    .location-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-wings {
        width: 50%;
    }

    /* Para tablets, 2 columnas en la galería */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    /* Adaptación del Tooltip y WhatsApp para Móvil */
    .whatsapp-float {
        bottom: 25px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    .whatsapp-tooltip {
        left: 70px;
        font-size: 0.75rem;
        padding: 8px 12px;
        white-space: normal;
        width: 150px;
        text-align: left;
    }

    .floating-nav {
        top: 0;
        width: 100%;
        border-radius: 0;
        padding: 15px 25px;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(15, 16, 20, 0.95);
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(15, 16, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: left 0.4s cubic-bezier(0.2, 1, 0.3, 1);
        padding: 40px 24px;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .nav-link {
        font-size: 1.2rem;
        color: #fff;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 15px;
    }

    .hero-container {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        z-index: 5;
        padding-top: 20px;
    }

    .hero-buttons,
    .rating {
        justify-content: center;
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-wings {
        left: 50%;
        transform: translateX(-50%);
        width: 75%;
        bottom: 2%;
        opacity: 0.35 !important;
        z-index: 3;
    }

    .btn-large {
        width: 100%;
        font-size: 1rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    /* Fuego ajustado para celular */
    .fire-tl {
        top: 80px;
        left: 0;
        transform: scale(0.9);
    }

    .fire-br {
        bottom: 10px;
        right: 0;
        transform: scale(0.9);
    }

    /* Para celular, 1 columna en la galería */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Efecto para el enlace de la agencia */
.dev-credit a {
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}

.dev-credit a:hover strong {
    color: #fff;
    text-shadow: 0 0 12px var(--primary);
    transform: scale(1.05);
}