/* ==========================================================================
   Variables & Theme Base (Gotcha XForce)
   ========================================================================== */
:root {
    /* Colors - Dark Military / Paintball Theme */
    --clr-bg-dark: #080a0c;
    --clr-bg-card: rgba(15, 20, 25, 0.6);
    --clr-bg-card-hover: rgba(25, 30, 40, 0.8);

    --clr-primary: #F60809;
    /* Red */
    --clr-primary-dark: #d50708;
    --clr-primary-glow: rgba(246, 8, 9, 0.6);

    --clr-accent: #39ff14;
    /* Switched to Neon Green as main accent */
    --clr-accent-hover: #2ee610;

    /* Paintball Splatter Neon Colors (Enhanced Vibrancy) */
    --clr-paint-green: #39ff14;
    --clr-paint-cyan: #00e5ff;
    --clr-paint-pink: #ff007f;
    --clr-paint-yellow: #ffea00;
    --clr-paint-orange: #ff3c00;
    --clr-paint-purple: #ED08F2;

    --clr-text-main: #ffffff;
    --clr-text-muted: #94a3b8;

    --clr-border: rgba(255, 255, 255, 0.1);
    --clr-border-highlight: rgba(255, 255, 255, 0.3);

    /* Gradients */
    --grad-neon: linear-gradient(90deg, var(--clr-paint-green), var(--clr-paint-cyan), var(--clr-paint-pink));
    --grad-dark: linear-gradient(180deg, rgba(8, 10, 12, 0) 0%, rgba(8, 10, 12, 0.8) 100%);

    /* Fonts */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --nav-height: 105px;
    --section-pad: 120px 0;

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    /* Dirty/Grunge Noise Overlay Texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    background-attachment: fixed;
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Animated Blobs */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.08;
    pointer-events: none;
    animation: blobFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

body::before {
    background: var(--clr-paint-pink);
    top: -10%;
    left: -10%;
}

body::after {
    background: var(--clr-paint-cyan);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 15%) scale(1.1);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.highlight {
    color: var(--clr-primary);
}

.text-primary {
    color: var(--clr-primary);
}

.mb-4 {
    margin-bottom: 2rem;
}

.d-block {
    display: block;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-padding {
    padding: var(--section-pad);
}

.section-heading {
    margin-bottom: 4rem;
}

.sub-heading {
    display: inline-block;
    color: var(--clr-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--clr-primary);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--trans-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
}

.btn-primary {
    background: var(--grad-neon);
    color: #000;
    box-shadow: 0 0 30px var(--clr-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--clr-primary-glow);
    filter: brightness(1.1);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text-main);
    border: 2px solid var(--clr-border-highlight);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--clr-text-main);
    color: #000;
    border-color: var(--clr-text-main);
}

.btn-outline-primary {
    background: rgba(246, 8, 9, 0.05);
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    backdrop-filter: blur(5px);
}

.btn-outline-primary:hover {
    background: var(--clr-primary);
    color: #000;
    box-shadow: 0 0 25px var(--clr-primary-glow);
}

.btn-outline-warning {
    background: rgba(57, 255, 20, 0.05);
    color: var(--clr-accent);
    border: 2px solid var(--clr-accent);
    backdrop-filter: blur(5px);
}

.btn-outline-warning:hover {
    background: var(--clr-accent);
    color: #000;
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(8, 10, 12, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: var(--trans-fast);
}

.navbar.scrolled {
    background-color: rgba(8, 10, 12, 0.95);
    height: 90px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 120px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-main);
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/images/hero_paintball_action_1772694102911.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 0, 127, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 255, 0.15), transparent 40%),
        linear-gradient(135deg, rgba(8, 10, 12, 0.9) 0%, rgba(8, 10, 12, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(246, 8, 9, 0.4), 0 10px 40px rgba(0, 0, 0, 0.9);
    line-height: 0.9;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #e2e8f0;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--clr-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--clr-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* ==========================================================================
   Info Banner
   ========================================================================== */
.info-banner {
    background-color: rgba(15, 20, 25, 0.8);
    border-top: 3px solid var(--clr-primary);
    border-bottom: 1px solid var(--clr-border);
    padding: 35px 0;
    margin-top: -5px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    transition: var(--trans-normal);
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2.2rem;
    color: var(--clr-primary);
    filter: drop-shadow(0 0 10px var(--clr-primary-glow));
}

.info-item h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.info-item p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.info-item.action-item i {
    color: var(--clr-accent);
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.4));
}

.info-item.action-item a {
    color: #fff;
    font-weight: 700;
}

.info-item.action-item a:hover {
    color: var(--clr-accent);
}

/* ==========================================================================
   Experience Section (Video Vertical)
   ========================================================================== */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience-content .section-desc.text-left {
    text-align: left;
    margin-left: 0;
}

.experience-features li {
    font-size: 1.1rem;
    color: var(--clr-text-main);
    margin-bottom: 10px;
}

.experience-video {
    display: flex;
    justify-content: center;
    position: relative;
}

.video-container {
    width: 100%;
    max-width: 380px;
    /* Ancho máximo para mantener proporción celular 9:16 */
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 2px var(--clr-border), 0 0 20px var(--clr-primary-glow);
    background-color: var(--clr-bg-dark);
}

.promo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay-fx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(246, 8, 9, 0) 0%, rgba(15, 17, 21, 0.4) 100%);
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Packages
   ========================================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background: rgba(15, 20, 25, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 35px;
    transition: var(--trans-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(25, 30, 40, 0.7);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 2px;
}

.price {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    color: var(--clr-paint-green);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.currency {
    font-size: 1.8rem;
    margin-top: 8px;
}

.period {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-weight: 400;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 5px;
}

.card-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cbd5e1;
    font-size: 1.05rem;
}

.features li i {
    color: var(--clr-paint-green);
    font-size: 1.2rem;
}

.package-card.highlighted {
    border: 2px solid var(--clr-paint-yellow);
    background: linear-gradient(180deg, rgba(25, 30, 40, 0.8) 0%, rgba(255, 234, 0, 0.05) 100%);
}

.package-card.highlighted .price {
    color: var(--clr-paint-yellow);
    text-shadow: 0 0 25px rgba(255, 234, 0, 0.4);
}

.package-card.highlighted .features li i {
    color: var(--clr-paint-yellow);
}

.package-card.highlighted:hover {
    box-shadow: 0 30px 70px rgba(255, 234, 0, 0.2);
}

.package-card.alpha {
    border-color: var(--clr-paint-cyan);
}

.package-card.alpha .price {
    color: var(--clr-paint-cyan);
    text-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.package-card.alpha .features li i {
    color: var(--clr-paint-cyan);
}

.package-card.premium {
    border-color: var(--clr-paint-orange);
}

.package-card.premium .price {
    color: var(--clr-paint-orange);
    text-shadow: 0 0 25px rgba(255, 60, 0, 0.4);
}

.package-card.premium .features li i {
    color: var(--clr-paint-orange);
}

/* ==========================================================================
   Tacos Acorazados Section (Mission Board Grid)
   ========================================================================== */
.tacos {
    background-color: #080a0c;
    position: relative;
    overflow: hidden;
}

/* Video Hero Expansivo (Idea 2) */
.tacos-video-hero {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 2px var(--clr-border), 0 0 20px var(--clr-primary-glow);
}

.hero-acorazados-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(12, 13, 16, 0.9) 0%, rgba(12, 13, 16, 0.2) 50%, rgba(12, 13, 16, 0.6) 100%);
    pointer-events: none;
}

.video-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 90%;
}

.tacos::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--clr-paint-orange) 0%, transparent 70%);
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    opacity: 0.15;
    pointer-events: none;
}

.tacos-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* 40 / 60 */
    gap: 80px;
    align-items: center;
}

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

/* Collage de Imágenes de Tacos */
.tacos-collage {
    position: relative;
    height: 500px;
    width: 100%;
}

.collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.taco-img {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 0 4px var(--clr-bg-dark), 0 0 0 5px var(--clr-border);
    transition: all var(--transition-bounce);
    object-fit: cover;
    z-index: 1;
}

.taco-img:hover {
    z-index: 10;
    transform: scale(1.1) rotate(0deg) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 0 4px var(--clr-bg-dark), 0 0 0 6px var(--clr-primary);
}

.taco-img-1 {
    width: 250px;
    height: 250px;
    top: 0;
    left: 20%;
    transform: rotate(-5deg);
    z-index: 3;
}

.taco-img-2 {
    width: 280px;
    height: 220px;
    top: 15%;
    right: 5%;
    transform: rotate(10deg);
    z-index: 2;
}

.taco-img-3 {
    width: 260px;
    height: 260px;
    bottom: 5%;
    left: 10%;
    transform: rotate(8deg);
    z-index: 4;
}

.taco-img-4 {
    width: 300px;
    height: 200px;
    bottom: 0;
    right: 15%;
    transform: rotate(-12deg);
    z-index: 3;
}

/* Modal del Menú */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease-out forwards;
}

.menu-image {
    max-width: 100%;
    max-height: 90vh;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 0 40px var(--clr-paint-orange), 0 0 0 2px var(--clr-paint-orange);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: -10px;
    color: var(--clr-text-main);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-base);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2010;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--clr-primary);
    text-decoration: none;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ==========================================================================
   Gallery Bento Box (Inteligencia Visual)
   ========================================================================== */
.galeria {
    background-color: #121418;
    position: relative;
}

/* Abstract cammo pattern via CSS for background */
.galeria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 229, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.bento-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 10px;
    padding-top: 20px;
}

@media (min-width: 768px) {
    .bento-gallery {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 250px;
        gap: 15px;
    }
}

.bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: var(--clr-bg-dark);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: grayscale(40%) contrast(1.1);
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.6), rgba(0, 229, 255, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--trans-normal);
    pointer-events: none;
    backdrop-filter: blur(4px);
}

.bento-overlay i {
    font-size: 3rem;
    color: #fff;
    transform: scale(0.5);
    transition: var(--trans-normal);
}

.bento-item:hover {
    box-shadow: 0 15px 40px rgba(246, 8, 9, 0.3);
    z-index: 10;
}

.bento-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.2);
}

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

.bento-item:hover .bento-overlay i {
    transform: scale(1);
}

/* Span Classes for Bento Box Layout */
@media (min-width: 768px) {
    .bento-big {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-tall {
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-normal {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Responsive overrides for smaller mobile sizes to keep the flow neat */
@media (max-width: 767px) {
    .bento-big {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-tall {
        grid-row: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }

    .bento-normal {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #0a0b0d;
    padding-top: 80px;
    border-top: 1px solid var(--clr-border);
}

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

.brand-desc {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-main);
    transition: var(--trans-fast);
}

.social-icon:hover {
    background-color: var(--clr-primary);
    color: #000;
    transform: translateY(-5px);
}

.social-icon.whatsapp {
    background-color: #25D366;
    color: white;
}

.social-icon.whatsapp:hover {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--clr-text-muted);
}

.contact-list i {
    color: var(--clr-primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-list a {
    color: var(--clr-text-muted);
}

.contact-list a:hover {
    color: var(--clr-primary);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    filter: grayscale(80%) invert(90%) contrast(1.2);
    /* Dark Map trick */
    transition: var(--trans-normal);
}

.map-container:hover {
    filter: grayscale(0%) invert(0%) contrast(1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 25px 0;
    text-align: center;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Efecto Reveal para Video */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background-color: var(--clr-bg-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--trans-normal);
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .logo-img {
        height: 80px;
    }

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

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

    .tacos-video-hero {
        height: 300px;
    }

    .tacos-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .tacos-collage {
        height: 400px;
    }

    .taco-img-1 {
        width: 180px;
        height: 180px;
        left: 10%;
    }

    .taco-img-2 {
        width: 200px;
        height: 160px;
        right: 0;
        top: 10%;
    }

    .taco-img-3 {
        width: 190px;
        height: 190px;
        bottom: 0;
        left: 0;
    }

    .taco-img-4 {
        width: 210px;
        height: 150px;
        bottom: 5%;
        right: 10%;
    }

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

    .package-card.highlighted {
        transform: scale(1);
    }

    .package-card.highlighted:hover {
        transform: translateY(-10px);
    }

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

    .footer-map {
        grid-column: span 1;
    }
}

/* ==========================================================================
   Gotcha Splatter Theme Additions
   ========================================================================== */

/* Splatter Base Layer */
.splatter-container {
    position: relative;
    z-index: 1;
}

.splatter-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-color: currentColor;
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: var(--trans-normal);
    filter: blur(5px);
}

.splatter-bg.green {
    color: var(--clr-paint-green);
    filter: drop-shadow(0 0 25px var(--clr-paint-green)) blur(5px);
}

.splatter-bg.pink {
    color: var(--clr-paint-pink);
    filter: drop-shadow(0 0 25px var(--clr-paint-pink)) blur(5px);
}

.splatter-bg.cyan {
    color: var(--clr-paint-cyan);
    filter: drop-shadow(0 0 25px var(--clr-paint-cyan)) blur(5px);
}

.splatter-bg.yellow {
    color: var(--clr-paint-yellow);
    filter: drop-shadow(0 0 25px var(--clr-paint-yellow)) blur(5px);
}

.splatter-bg.orange {
    color: var(--clr-paint-orange);
    filter: drop-shadow(0 0 25px var(--clr-paint-orange)) blur(5px);
}

/* Title Splatter Modifier */
.section-title.splatter-title {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-title.splatter-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.8);
    width: 250px;
    height: 250px;
    background-color: var(--clr-paint-green);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    filter: blur(3px);
}

/* Specific Title Colors */
.experience-content .section-title.splatter-title::before {
    background-color: var(--clr-paint-pink);
}

.paquetes .section-title.splatter-title::before {
    background-color: var(--clr-paint-cyan);
}

.galeria .section-title.splatter-title::before {
    background-color: var(--clr-paint-green);
}

/* Package Card Hover Splatters */
.package-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--clr-paint-green);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: var(--trans-normal);
}

.package-card:hover::after {
    opacity: 0.35;
    transform: scale(1.2);
}

/* Card content must be above the splatter */
.package-card>* {
    position: relative;
    z-index: 2;
}

/* Different Colors for Different Cards */
.package-card:nth-child(1)::after {
    background-color: var(--clr-paint-green);
}

.package-card:nth-child(2)::after {
    background-color: var(--clr-paint-pink);
}

.package-card.highlighted::after {
    background-color: var(--clr-paint-yellow);
}

.package-card.highlighted:hover::after {
    opacity: 0.2;
}

.package-card.alpha::after {
    background-color: var(--clr-paint-cyan);
}

.package-card.premium:nth-child(5)::after {
    background-color: var(--clr-paint-orange);
}

.package-card.premium:nth-child(6)::after {
    background-color: var(--clr-paint-purple);
}

/* Buttons Paint Splatter Overlay */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--trans-normal);
    z-index: -1;
}

.btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.tacos-info {
    position: relative;
}

.tacos-info::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    width: 150px;
    height: 150px;
    background-color: var(--clr-paint-orange);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M78 24c-12 1-21 13-20 25-17 4-29 19-32 36-3 15-4 35 11 41 8 4 19-3 26 2 12 8 3 24 9 34 5 10 16 11 26 12 11 1 20-3 30-8 17-7 24-21 34-36 10-15 28-34 18-51-7-12-25-13-33-22-9-10-8-25-24-30-14-5-31-4-45-3zm-39 88c-6 0-11 6-10 12 2 6 9 10 15 8 7-3 10-10 7-16-3-3-8-4-12-4zm115 54c-5-1-10 4-8 10 1 5 7 8 12 8s9-4 10-9c2-5-4-9-10-9zm29-107c-4 0-8 3-9 8 0 5 4 10 9 10 6 0 10-4 10-9 0-4-5-8-10-9zm-50 4c-5-1-10 4-10 10s4 11 10 12c5 1 10-4 10-10 0-6-5-11-10-12z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}