/* ==================================================
   RESET & BASE
   ================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #111;
    color: #fff;
}

.nolink {
    text-decoration: none;
    color: inherit;
}


/* ==================================================
   NAVBAR
   ================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: background .4s ease;
}

.navbar.scrolled {
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(10px);
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}


/* ==================================================
   HERO
   ================================================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    animation: aclarar 3s forwards;
}

@keyframes aclarar {
    to { filter: brightness(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.6), #111);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* ==================================================
   SECTIONS (GENERIC)
   ================================================== */
.section {
    padding: 120px 8%;
    background: linear-gradient(to bottom, #111, #1a1a1a);
}

.section:nth-child(even) {
    background: linear-gradient(to bottom, #1a1a1a, #111);
}


/* ==================================================
   ABOUT
   ================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.about-images {
    display: grid;
    gap: 20px;
}

.img-box {
    overflow: hidden;
    border-radius: 20px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

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


/* ==================================================
   MENU
   ================================================== */
.menu-slider {
    position: relative;
    display: flex;
    gap: 40px;
    padding: 60px 0;
    width: 100%;
    overflow: hidden;
    will-change: transform;
}

.menu-track {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

.menu-slider::before,
.menu-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.menu-slider::before {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

.menu-slider::after {
    right: 0;
    background: linear-gradient(to left, #111, transparent);
}

.menu-card {
    min-width: 280px;
    background: #1e1e1e;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-info {
    padding: 20px;
    text-align: center;
}

.menu-card:hover img {
    transform: scale(1.08);
    transition: transform .5s ease;
}

/* ==================================================
   MENÚ PDF
   ================================================== */
.menu-pdf {
    display: flex;
    justify-content: center;
}

.pdf-card {
    max-width: 900px;
    width: 100%;
    padding: 60px;
    border-radius: 30px;

    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;

    background: linear-gradient(145deg, #1a1a1a, #0e0e0e);
    box-shadow:
        0 30px 70px rgba(0,0,0,.7),
        inset 0 0 0 1px rgba(255,255,255,.05);

    transition: transform .6s ease, box-shadow .6s ease;
}

.pdf-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 45px 90px rgba(0,0,0,.9),
        inset 0 0 0 1px rgba(255,255,255,.1);
}

.pdf-info h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.pdf-info p {
    color: #ccc;
    max-width: 520px;
    line-height: 1.6;
}

.pdf-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    border-radius: 50px;

    background: linear-gradient(135deg, #ffb347, #ff7a18);
    color: #111;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 10px 30px rgba(255,140,60,.4);
    transition: transform .3s ease, box-shadow .3s ease;
}

.pdf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255,140,60,.6);
}

.pdf-icon {
    font-size: 4rem;
    opacity: .15;
    user-select: none;
}


/* ==================================================
   MAPA (UBICACIÓN)
   ================================================== */
.map-section {
    text-align: center;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 30px;
    overflow: hidden;

    /* efecto exclusivo */
    box-shadow:
        0 30px 60px rgba(0,0,0,.6),
        inset 0 0 0 1px rgba(255,255,255,.05);
    transition: transform .6s ease, box-shadow .6s ease;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(100%) contrast(1.1) brightness(.9);
    transition: filter .6s ease;
}

/* Hover premium */
.map-container:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 40px 80px rgba(0,0,0,.8),
        inset 0 0 0 1px rgba(255,255,255,.1);
}

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

/* Glow sutil */
.map-container::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    pointer-events: none;
    box-shadow: inset 0 0 80px rgba(255,200,120,.08);
}

/* ==================================================
   FOOTER
   ================================================== */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
}



/* ==================================================
   Implementaciones para Celular
   ================================================== */

/* ==================================================
   SISTEMA DE COLUMNAS RESPONSIVO
   ================================================== */

/* Desktop (12 columnas) */
.container {
    max-width: 1400px;
    margin: auto;
}

/* Tablet (8 columnas) */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
    }
}

/* Mobile (4 columnas) */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}


/* ==================================================
   NAVBAR RESPONSIVO
   ================================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 6%;
    }

    .nav-links {
        gap: 18px;
        font-size: 0.9rem;
    }
}

/* ==================================================
   HERO RESPONSIVO
   ================================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-content a {
        margin-top: 20px;
        padding: 12px 28px;
    }
}

/* ==================================================
   ABOUT RESPONSIVO
   ================================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==================================================
   MENÚ RESPONSIVO
   ================================================== */

/* Tablets */
@media (max-width: 1024px) {
    .menu-card {
        min-width: 240px;
    }

    .menu-img {
        height: 170px;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .menu-slider {
        padding: 40px 0;
    }

    .menu-card {
        min-width: 200px;
        border-radius: 18px;
    }

    .menu-img {
        height: 140px;
    }

    .menu-info h3 {
        font-size: 1rem;
    }

    .menu-info p {
        font-size: 0.9rem;
    }
}


/* ==================================================
   MENÚ PDF RESPONSIVO (MEJORADO)
   ================================================== */

/* Tablets */
@media (max-width: 1024px) {
    .pdf-card {
        padding: 50px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pdf-icon {
        display: none;
    }
}

/* Celulares */
@media (max-width: 768px) {
    .pdf-card {
        padding: 40px 28px;
        border-radius: 22px;
    }

    .pdf-info h2 {
        font-size: 1.8rem;
    }

    .pdf-info p {
        font-size: 0.95rem;
    }

    .pdf-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}


/* ==================================================
   MAPA RESPONSIVO
   ================================================== */
@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}


/* ==================================================
   ESPACIADO GENERAL RESPONSIVO
   ================================================== */
@media (max-width: 768px) {
    .section {
        padding: 90px 6%;
    }
}

