    /* =========================================================
       RESET
    ========================================================= */
    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
        font-family: "Poppins", sans-serif;

        background-image: url('/imagenes/fondos_ventanaS/fondogastro.png');
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;

        color: #4a413c;
    }


    /* =========================================================
       MENU SUPERIOR
    ========================================================= */
    .menu-superior {
        position: sticky;
        top: 0;
        width: 100%;
        padding: 0px 0;

        display: flex;
        justify-content: center;
        z-index: 999;

        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
        backdrop-filter: blur(4px);
    }

    .menu-container {
        width: 100%;
        max-width: 1400px;
        display: flex;
        justify-content: center;
    }

    .menu-links {
        list-style: none;
        display: flex;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .menu-links li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        min-width: 130px;
        text-align: center;

        color: white;
        text-decoration: none;
        font-size: 16px;

        padding: 6px 10px;
        line-height: 1.2;

        transition: 0.3s;
        position: relative;
    }

    .menu-links li a:hover {
        color: #ffe6ff;
        transform: translateY(-2px);
    }

    .menu-links li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;

        background: linear-gradient(90deg, #a32bbf, #ff6db7, #ffb36d);
        border-radius: 4px;
        transition: .35s ease;
    }

    .menu-links li a:hover::after {
        width: 100%;
    }

    .menu-links li a.activo {
        background-color: #9c7a47;
        color: #ffffff;
        padding: 8px 24px;
        border-radius: 25px;
        border: 2px solid #e7b57a;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.20);
    }

    .menu-links li a.activo::after {
        display: none;
    }


    /* LOGO HOME */
    .menu-links .home-icon img {
        height: 100px;
        width: 100px;
        object-fit: contain;
        border-radius: 12px;
        transition: 0.3s;
    }

    .menu-links .home-icon img:hover {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(3px);
        padding: 6px;
    }


    /* LOGIN */
    .menu-links .login-icon img {
        height: 40px;
        width: 40px;
        border-radius: 10px;
        transition: 0.3s;
    }

    .menu-links .login-icon img:hover {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(3px);
        padding: 6px;
    }


    /* =========================================================
       BOTÓN VOLVER
    ========================================================= */
    .btn-volver {
        display: block;
        margin: 3px auto 20px 40px;

        padding: 12px 20px;
        font-size: 18px;
        color: white;
        text-decoration: none;

        background: rgba(0, 0, 0, 0.4);
        border: 2px solid #ffb36d;
        border-radius: 12px;

        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        transition: .3s;
        width: max-content;
    }

    .btn-volver:hover {
        background: #ffb36d;
        color: black;
        transform: translateX(-6px);
    }


    /* =========================================================
       TÍTULO
    ========================================================= */
    .categoria-title {
        text-align: center;
        font-size: 42px;
        font-weight: 700;

        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;

        margin-bottom: 50px;

        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    }


    /* =========================================================
       GRID
    ========================================================= */
    .categoria-section {
        width: 100%;
        max-width: 1400px;
        margin: auto;
        padding: 0 40px 80px;
    }

    .categoria-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 45px;
    }


    /* =========================================================
       CARD
    ========================================================= */
    .categoria-card {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 18px;
        overflow: hidden;

        backdrop-filter: blur(6px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);

        text-align: center;
        transition: 0.35s;
        cursor: pointer;
    }

    .categoria-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    }


    /* IMG */
    .categoria-img {
        width: 100%;
        height: 240px;
        object-fit: cover;

        display: block;
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }


    /* TEXTO */
    .categoria-card h3 {
        margin: 15px;
        font-size: 22px;
        color: #7c4c25;
    }

    .categoria-card p {
        margin: 0 15px 18px;
        color: #4a413c;
        font-size: 16px;
    }


    /* =========================================================
       BOTÓN
    ========================================================= */
    .btn-ir {
        display: inline-block;
        margin: 15px auto 25px auto;
        padding: 12px 30px;

        background: #ffb36d;
        color: #2c2c2c;
        text-decoration: none;
        font-weight: 700;

        border-radius: 14px;
        cursor: pointer;

        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);

        transition: 0.35s ease;
    }

    .btn-ir:hover {
        background: #a32bbf;
        color: white;
        transform: translateY(-2px) scale(1.05);
    }


    /* =========================================================
       MODAL
    ========================================================= */

    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.65);
        backdrop-filter: blur(6px);
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }

    .modal-content {
        width: 80%;
        max-width: 900px;
        max-height: 90vh;
        overflow-y: auto;
        background: rgba(20, 20, 20, 0.92);
        border: 3px solid #ffb36d;
        border-radius: 28px;
        padding: 30px;
        color: #ffb36d;

        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
        animation: fadeIn .3s ease;
    }

    .modal-close {
        position: absolute;
        top: 22px;
        right: 28px;
        background: none;
        color: #fff;
        font-size: 32px;
        border: none;
        cursor: pointer;
        transition: .3s;
    }

    .modal-close:hover {
        color: #ffb36d;
        transform: rotate(90deg);
    }

    .modal-img {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 25px;
        object-fit: cover;
        max-height: 350px;
    }

    .modal-title {
        text-align: center;
        color: #ffb36d;
        font-size: 34px;
        margin-bottom: 30px;
    }

    .modal-field h4 {
        margin: 0 0 6px;
        font-size: 18px;
        color: #ffb36d;
    }

    .modal-field p {
        background: rgba(255, 255, 255, 0.12);
        padding: 14px;
        border-radius: 12px;
        color: #e6e6e6;
        margin-bottom: 22px;
        font-size: 15px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* =========================================================
   RESPONSIVE TABLET Y CELULAR
========================================================= */
    @media (max-width: 768px) {

        /* ==========================
       MENÚ SUPERIOR
    ========================== */

        .menu-superior {
            padding: 5px 0;
            /* Altura del menú */
        }

        .menu-links {
            gap: 15px;
            /* Espacio entre opciones */
            padding: 10px 15px;
            /* Espacio interno */
            overflow-x: auto;
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

        .menu-links li a {
            font-size: 13px;
            /* Tamaño texto menú */
            padding: 8px 12px;
            /* Tamaño botón menú */
            white-space: nowrap;
        }

        .menu-links li a.activo {
            padding: 8px 14px;
        }

        /* Ocultar logo grande */
        .home-icon {
            display: none;
        }

        /* Login */
        .login-icon img {
            width: 35px;
            height: 35px;
        }


        /* ==========================
       BOTÓN VOLVER
    ========================== */

        .btn-volver {
            margin: 15px;
            /* Separación */
            font-size: 14px;
            padding: 10px 15px;
        }


        /* ==========================
       TÍTULO
    ========================== */

        .categoria-title {
            font-size: 28px;
            /* Tamaño título */
            margin-bottom: 25px;
            padding: 0 10px;
        }


        /* ==========================
       CONTENEDOR GENERAL
    ========================== */

        .categoria-section {
            padding: 0 4px 40px;
        }


        /* ==========================
       GRID TARJETAS
    ========================== */

        .categoria-grid {
            grid-template-columns: 1fr;
            gap: 25px;
            /* Espacio entre tarjetas */
        }


        /* ==========================
       TARJETAS
    ========================== */

        .categoria-card {
            width: 90%;
            max-width: 280px;
            margin-left: 11px;
            margin-right: auto;
        }

        .categoria-img {
            height: 220px;
            /* Altura imagen */
        }

        .categoria-card h3 {
            font-size: 20px;
            margin: 12px;
        }

        .categoria-card p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0 12px 15px;
        }

        .btn-ir {
            width: 85%;
            margin-bottom: 20px;
            font-size: 15px;
        }


        /* ==========================
       MODAL
    ========================== */

        .modal-content {
            width: 92%;
            /* Ancho modal */
            padding: 20px;
        }

        .modal-img {
            max-height: 220px;
        }

        .modal-title {
            font-size: 24px;
        }

        .modal-field h4 {
            font-size: 16px;
        }

        .modal-field p {
            font-size: 14px;
        }

        .modal-close {
            font-size: 28px;
            top: 10px;
            right: 15px;
        }
    }


    /* =========================================================
   CELULARES PEQUEÑOS
========================================================= */
    @media (max-width: 480px) {

        /* ==========================
       TÍTULO
    ========================== */

        .categoria-title {
            font-size: 22px;
            letter-spacing: 1px;
        }


        /* ==========================
       CONTENEDOR
    ========================== */

        .categoria-section {
            padding: 0 10px 30px;
        }


        /* ==========================
       TARJETAS
    ========================== */

        .categoria-card {
            max-width: 100%;
        }

        .categoria-img {
            height: 190px;
        }

        .categoria-card h3 {
            font-size: 18px;
        }

        .categoria-card p {
            font-size: 13px;
        }


        /* ==========================
       BOTÓN
    ========================== */

        .btn-ir {
            width: 90%;
            font-size: 14px;
            padding: 10px;
        }


        /* ==========================
       VOLVER
    ========================== */

        .btn-volver {
            font-size: 13px;
            padding: 8px 12px;
        }


        /* ==========================
       MENÚ
    ========================== */

        .menu-links {
            gap: 10px;
            padding: 8px 10px;
        }

        .menu-links li a {
            font-size: 12px;
            padding: 6px 10px;
        }


        /* ==========================
       MODAL
    ========================== */

        .modal-content {
            width: 95%;
            padding: 15px;
        }

        .modal-title {
            font-size: 20px;
        }

        .modal-img {
            max-height: 180px;
        }
    }

    /* =========================================================
   RESPONSIVE MOVIL
========================================================= */

    @media (max-width: 768px) {

        body {
            overflow-x: hidden;
        }

        /* ==========================
   MENU MOVIL COMPLETO
========================== */

        .menu-superior {
            position: sticky;
            top: 0;
            width: 100%;
            left: 0;
            right: 0;
            z-index: 9999;
        }

        .menu-container {
            width: 100%;
            max-width: 100%;
            padding: 0;
            margin: 0;
        }

        .menu-superior::before,
        .menu-superior::after {
            content: "";
            position: absolute;
            top: 0;
            width: 70px;
            height: 100%;
            pointer-events: none;
            z-index: 25;
        }

        .menu-superior::before {
            left: 0;
            background: linear-gradient(to left,
                    rgba(0, 0, 0, 0),
                    rgba(0, 0, 0, .75));
        }

        .menu-superior::after {
            right: 0;
            background: linear-gradient(to right,
                    rgba(0, 0, 0, 0),
                    rgba(0, 0, 0, .75));
        }

        .menu-links {
            width: 100%;
            margin: 0;
            padding: 10px 20px;

            display: flex;
            flex-wrap: nowrap;
            justify-content: flex-start;
            align-items: center;

            gap: 20px;

            overflow-x: auto;
            overflow-y: hidden;

            scrollbar-width: none;
            box-sizing: border-box;
        }

        .menu-links::-webkit-scrollbar {
            display: none;
        }

        .menu-links li {
            flex-shrink: 0;
            width: auto;
        }

        .menu-links li a {
            min-width: auto;
            width: auto;
            white-space: nowrap;

            font-size: 14px;
            padding: 8px 12px;
        }

        /* LOGO INICIO */

        .home-icon {
            display: block;
            flex-shrink: 0;
        }

        .home-icon img {
            width: 65px;
            height: 65px;
            object-fit: contain;
        }

        /* LOGIN */

        .login-icon {
            flex-shrink: 0;
            width: auto !important;
        }

        .login-icon img {
            width: 35px;
            height: 35px;
        }

        /* =====================================================
       BOTON VOLVER
    ===================================================== */

        .btn-volver {
            margin: 15px;
            font-size: 14px;
            padding: 10px 15px;
        }

        /* =====================================================
       TITULO
    ===================================================== */

        .categoria-title {
            font-size: 28px;
            margin-bottom: 25px;
            padding: 0 15px;
        }

        /* =====================================================
       CONTENEDOR
    ===================================================== */

        .categoria-section {
            padding: 0 4px 40px;
        }

        /* =====================================================
       GRID
    ===================================================== */

        .categoria-grid {
            grid-template-columns: 1fr;
            gap: 30px;

            justify-items: center;
            align-items: center;
        }

        /* =====================================================
       CARDS
    ===================================================== */

        .categoria-card {

            width: 100%;
            max-width: 420px;

            margin: 0 auto;

            border-radius: 20px;
            overflow: hidden;

            background: rgba(255, 255, 255, .95);

            box-shadow:
                0 8px 25px rgba(0, 0, 0, .25);

            transition: .3s ease;
        }

        .categoria-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
        }

        .categoria-card h3 {
            font-size: 20px;
            margin: 15px;
            text-align: center;
        }

        .categoria-card p {
            font-size: 14px;
            line-height: 1.7;

            padding: 0 15px;
            margin-bottom: 18px;

            text-align: justify;
        }

        /* =====================================================
       BOTON
    ===================================================== */

        .btn-ir {

            width: 90%;
            max-width: 260px;

            display: block;

            margin: 18px auto 20px;

            padding: 12px;

            font-size: 15px;
            text-align: center;

            border-radius: 14px;
        }

        /* =====================================================
       MODAL
    ===================================================== */

        .modal-content {
            width: 92%;
            max-height: 90vh;
            padding: 20px;
            border-radius: 20px;
        }

        .modal-img {
            max-height: 220px;
        }

        .modal-title {
            font-size: 24px;
        }

        #mapa {
            height: 220px !important;
        }
    }


    /* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

    @media (max-width: 480px) {

        .categoria-title {
            font-size: 22px;
        }

        .categoria-card {
            width: 95%;
            max-width: 380px;
        }

        .categoria-img {
            height: 220px;
        }

        .categoria-card h3 {
            font-size: 18px;
        }

        .categoria-card p {
            font-size: 13px;
        }

        .btn-ir {
            width: 90%;
            font-size: 14px;
        }

        .menu-links {
            gap: 10px;
            padding: 8px 5px;
        }

        .menu-links li a {
            font-size: 12px;
            padding: 6px 10px;
        }

        .home-icon img {
            width: 55px;
            height: 55px;
        }

        .modal-content {
            width: 95%;
            padding: 15px;
        }

        #mapa {
            height: 180px !important;
        }
    }