/*
 * =======================================================
 * ARCHIVO DE ESTILOS MODERNOS (moderno.css)
 * * * Versión Final Ajustada (Espacios reducidos + Navidad 1 col). 
 * * Sobrescribe 'estilos.css'
 * =======================================================
 */

/* ---- 0. Fuentes Modernas (Google Fonts) ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');


/* ---- 1. Estilos Globales (Fresco y Limpio) ---- */
html {
    scroll-behavior: smooth; /* Efecto moderno: scroll suave */
}

body {
    font-family: 'Roboto', sans-serif !important; /* Forzamos la fuente */
    line-height: 1.6;
    color: #333; /* Texto principal más legible */
    background-color: #ffffff !important; /* Fondo blanco limpio (GANAR) */
}

/* Tipografía de títulos moderna */
h1, h2, h3, h4, h5, h6,
.navbar-nav .nav-link,
.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}


/* * =======================================================
 * 2. HEADER REESTRUCTURADO
 * =======================================================
 */

header, .modern-header { 
    background-color: #ffffff !important; 
    position: sticky !important; 
    top: 0;
    z-index: 1020;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important; 
}

header .logo_principal, .modern-header .logo_principal {
    width: 120px !important;
    height: auto !important;
}

header .navbar, .modern-header .navbar {
    background: transparent !important; 
}

header .navbar-nav .nav-link, .modern-header .navbar-nav .nav-link {
    color: #333 !important; 
    font-weight: 500;
    font-size: 0.9rem; 
    margin-right: 12px; 
    transition: color 0.3s ease, transform 0.3s ease; 
}

header .navbar-nav .nav-link:hover, .modern-header .navbar-nav .nav-link:hover {
    color: #ffc107 !important; 
    transform: translateY(-2px); 
}

.nav-link-highlight {
    color: #087f5b !important; 
    font-weight: 700 !important; 
}
.nav-link-highlight:hover {
    color: #ffc107 !important; 
}

header .navbar-toggler-icon, .modern-header .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.7)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.btn-cta {
    display: inline-block;
    background-color: #ffc107; 
    color: #333 !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background-color: #ffd040;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* * =======================================================
 * 3. HERO SECTION
 * =======================================================
 */
.hero-section {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh; 
    color: white; 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3.5rem; 
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.btn-moderno {
    display: inline-block;
    background-color: #ffc107; 
    color: #333;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    text-decoration: none; 
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4); 
    transition: all 0.3s ease;
}

.btn-moderno:hover,
.btn-moderno:focus {
    color: #000;
    background-color: #ffd040;
    transform: translateY(-3px); 
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.5);
    text-decoration: none;
}


/* * =======================================================
 * 4. SECCIÓN DE CARDS (index.html)
 * =======================================================
 */

.menu-section {
    padding: 80px 0;
    background-color: #f8f9fa; 
}

.alineacion_opciones {
    padding: 0 !important;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.section-title p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.modern-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    height: 100%; 
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.modern-card-img-container {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.modern-card-img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.modern-card:hover .modern-card-img {
    transform: scale(1.05);
}

.modern-card-body {
    padding: 30px;
    text-align: center;
}

.modern-card-title {
    font-size: 1.5rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.modern-card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-card {
    display: inline-block;
    background-color: #2a2a2a;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background-color: #ffc107;
    color: #333 !important;
}

/* * =======================================================
 * 5. SECCIÓN "SOBRE NOSOTROS"
 * =======================================================
 */
.about-section {
    padding: 80px 0;
    background-color: #ffffff; 
}
.about-col {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 30px;
}
.about-col h3 {
    font-size: 2.5rem; 
    margin-bottom: 15px;
}
.about-col h4 {
    font-size: 1.25rem;
    color: #2a2a2a;
    margin-bottom: 15px;
}
.about-col p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}


/* * =======================================================
 * 6. FOOTER (MODERN-FOOTER)
 * =======================================================
 */

.modern-footer {
    background-color: #1a1a1a !important; 
    color: #e0e0e0 !important; 
    padding: 80px 0 30px 0; 
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
}

.modern-footer form {
    background-color: transparent !important; 
}


.modern-footer .container {
    max-width: 1200px; 
}

.footer-col-modern {
    margin-bottom: 40px; 
}

.footer-logo-modern {
    width: 150px; 
    margin-bottom: 25px;
    filter: brightness(0) invert(1); 
}

.footer-description {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.footer-col-modern h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff !important;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-links-modern {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-links-modern li {
    margin-bottom: 15px;
}
.footer-links-modern a {
    color: #b0b0b0 !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links-modern a:hover {
    color: #ffc107 !important; 
}

.footer-contact-modern {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-contact-modern li {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 15px;
    color: #b0b0b0;
    font-size: 0.95rem;
}
.footer-contact-modern li img {
    width: 22px; 
    height: 22px;
    margin-right: 15px;
    filter: brightness(0) invert(1) opacity(0.7); 
    transition: filter 0.3s ease;
}
.footer-contact-modern li a {
    color: #b0b0b0 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.footer-contact-modern li a:hover {
    color: #ffc107 !important;
}

.footer-social-modern {
    display: flex;
    gap: 15px; 
    margin-top: 20px;
}
.footer-social-modern a img {
    width: 35px; 
    height: 35px;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.3s ease;
}
.footer-social-modern a:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: translateY(-3px);
}

.footer-subscribe-modern h3 {
    font-size: 1.1rem;
    color: #ffffff !important;
    margin-bottom: 15px;
}
.footer-subscribe-modern p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 20px;
}
#mc_embed_signup_modern form {
    display: flex; 
    flex-wrap: wrap; 
}
.email-modern {
    flex: 1; 
    min-width: 150px;
    background: #444;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 10px; 
}

.btn-subscribe-modern {
    background-color: #ffc107 !important; 
    border: none !important;
    color: #333 !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px; 
}
.btn-subscribe-modern:hover {
    background-color: #ffffff !important;
    color: #000 !important;
}

.footer-bottom-modern {
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    gap: 10px; 
}
.footer-copyrigth-modern {
    margin: 0;
    text-align: center; 
}
.footer-info-modern {
    margin: 0;
    text-align: center; 
}
.footer-info-modern a {
    color: #aaa !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}
.footer-info-modern a:hover {
    color: #ffc107 !important;
}

@media (min-width: 768px) {
    .footer-bottom-modern {
        text-align: left; 
    }
    .footer-info-modern {
        text-align: right; 
    }
}


/* * =======================================================
 * 7. ESTILOS MENÚ DEL DÍA (menudeldia.html)
 * =======================================================
 */

.menu-page-section {
    padding: 60px 0;
    background-color: #f8f9fa; 
}

.menu-page-title {
    margin-bottom: 40px;
}
.menu-page-title h1 {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.menu-page-title h5 {
    font-size: 1.2rem;
    color: #555; 
    font-weight: 700;
}
.menu-page-title p {
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Card para cada categoría */
.menu-category-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden; 
}

.menu-category-header {
    background-color: #2a2a2a; /* Fondo oscuro */
    color: #ffffff;
    padding: 20px 25px;
    display: flex; 
    align-items: center; 
    gap: 15px; 
}

.category-icon {
    width: 24px; 
    height: 24px;
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
}
.category-icon svg {
    width: 100%;
    height: 100%;
    fill: #ffc107; 
}
.menu-category-title {
    font-size: 1.5rem; 
    margin-bottom: 0; 
    color: #ffffff; 
}

.food-list {
    list-style: none;
    padding: 10px 25px 25px 25px; 
    margin-bottom: 0;
}
.food-item {
    font-size: 1rem;
    color: #555;
    padding: 6px 0; /* REDUCIDO DE 12PX (Escritorio) */
    border-bottom: 1px dashed #e0e0e0;
}
.food-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.food-item-special {
    font-size: 1.1rem;
    font-weight: 700; 
    color: #333;
    padding: 6px 0; /* REDUCIDO DE 12PX (Escritorio) */
    border-bottom: 1px dashed #e0e0e0;
}

.menu-page-not-found {
    font-size: 1.5rem;
    color: #e04a4a; 
    margin-top: 40px;
    margin-bottom: 1rem;
}
.menu-page-not-found-text {
    font-size: 1.1rem;
    color: #888;
}

.menu-page-actions {
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}
.menu-page-actions .btn-moderno {
    margin: 5px 10px;
}
.menu-page-actions .btn-card {
    margin: 5px 10px;
}

.menu-page-extras {
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: center;
}

/* * =======================================================
 * 8. ESTILOS MENÚ SEMANAL (menucompleto.html)
 * =======================================================
 */

.weekly-month-title {
    font-size: 1.8rem; /* REDUCIDO DE 2.5rem */
    color: #2a2a2a;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 3px solid #ffc107;
    display: inline-block;
    padding-bottom: 5px;
}
.weekly-week-title {
    font-size: 1.5rem;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}
.menu-page-subtitle {
    font-size: 1rem;
    color: #888;
    margin-top: -10px;
    margin-bottom: 30px;
}

.weekly-accordion {
    margin-bottom: 40px;
}
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden; 
    transition: box-shadow 0.3s ease;
}
.accordion-item:hover {
     box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


.accordion-header {
    width: 100%;
    padding: 12px 20px; /* REDUCIDO DE 20px 25px */
    background-color: #ffffff;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #333;
    transition: background-color 0.3s ease;
}
.accordion-header:hover {
    background-color: #fcfcfc;
}
.accordion-header:focus {
    outline: none; 
}
.accordion-header .accordion-icon {
    font-size: 2rem;
    font-weight: 400;
    color: #ffc107;
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}
.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg); 
}

.accordion-content {
    background-color: #fdfdfd;
}

.accordion-content-inner {
    padding: 30px 25px;
}

@media (max-width: 991px) {
    .accordion-content-inner .col-lg-5 {
        margin-top: 30px;
    }
}

.accordion-content-inner .menu-category-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    margin-bottom: 30px; 
}
.accordion-content-inner .col-lg-7 .menu-category-card:last-child,
.accordion-content-inner .col-lg-5 .menu-category-card:last-child {
    margin-bottom: 0;
}


/* * =======================================================
 * 9. BOTÓN DESHABILITADO
 * =======================================================
 */
.btn-card.btn-disabled {
    background-color: #ccc;
    color: #888 !important;
    cursor: not-allowed;
    pointer-events: none; 
}

.btn-card.btn-disabled:hover {
    background-color: #ccc;
    color: #888 !important;
    transform: none; 
}

/* * =======================================================
 * 10. ESTILOS NAVIDAD
 * =======================================================
 */

.user-icon {
    width: 0.9em; 
    height: 0.9em;
    vertical-align: -0.12em; 
    margin: 0 3px 0 4px; 
    fill: #666; 
}
.price-list-single .item-details b .user-icon,
.price-list-single .item-details-multi b .user-icon {
    fill: #333; 
}

.price-list-clean .food-item-new {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
    padding: 14px 0; 
    border-bottom: 1px dashed #e0e0e0;
}
.price-list-clean .food-item-new:last-child {
    border-bottom: none;
}

.price-list-clean .item-name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px; 
}

.price-list-clean .item-details {
    display: flex;
    justify-content: space-between; 
    width: 100%;
    font-size: 1rem;
    color: #666;
}
.price-list-clean .item-details .item-capacity {
    display: flex;
    align-items: center;
}
.price-list-clean .item-details .item-price b {
    font-size: 1.1rem;
    color: #333;
}

.price-list-clean .item-details-multi {
    display: flex;
    flex-direction: column; 
    width: 100%;
    font-size: 1rem;
    color: #666;
    gap: 5px; 
}
.price-list-clean .item-details-multi .item-size {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%; 
}
.price-list-clean .item-details-multi .item-size b {
    font-size: 1.1rem;
    color: #333;
    margin-left: 10px;
}

.price-list-clean .item-details-multi .item-size span b {
    font-size: 1rem;      
    color: inherit;     
    font-weight: 700;   
    margin-left: 0;    
}


.price-size-header {
    display: none;
}


.modern-alert {
    background-color: #fffaf0; 
    border: 2px solid #ffc107; 
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.modern-alert h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2a2a2a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modern-alert ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.modern-alert li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
}

.modern-alert li .highlight {
    font-weight: 700;
    color: #d9480f; 
}

.modern-alert p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
}

/* * =======================================================
 * 11. TEMA NAVIDEÑO (page-navidad)
 * =======================================================
 */
body.page-navidad .menu-category-header {
    background-color: #087f5b; 
}
body.page-navidad .category-icon svg {
    fill: #fff; 
}
body.page-navidad .menu-page-actions .btn-moderno {
    background-color: #c92a2a; 
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(201, 42, 42, 0.4);
}
body.page-navidad .menu-page-actions .btn-moderno:hover {
    background-color: #e03131; 
    color: #ffffff;
}
body.page-navidad .menu-page-actions .btn-card {
    background-color: #087f5b; 
}
body.page-navidad .menu-page-actions .btn-card:hover {
    background-color: #099268;
    color: #ffffff !important;
}
body.page-navidad .modern-alert {
    background-color: #fff5f5; 
    border-color: #e03131; 
}
body.page-navidad .modern-alert li .highlight {
    color: #087f5b; 
}

/* * =======================================================
 * 12. HIGHLIGHT EN INDEX
 * =======================================================
 */
.btn-navidad {
    background-color: #087f5b !important; 
    color: #ffffff !important;
}
.btn-navidad:hover {
    background-color: #099268 !important; 
    color: #ffffff !important;
}

/* * =======================================================
 * 13. MENÚ PERSONAL (index.html)
 * =======================================================
 */
.personal-menu-promo {
    background-color: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.promo-icon {
    fill: #2a2a2a; 
    width: 80px; 
    height: auto;
}

.promo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem; 
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.promo-includes {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem; 
    color: #555;
    font-weight: 500;
    margin-bottom: 1rem;
}

.promo-disclaimer {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0;
}

.promo-price-badge {
    background-color: #2a2a2a; 
    border: 4px solid #ffc107; 
    color: #ffffff;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.promo-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem; 
    font-weight: 700;
    color: #ffc107; 
    line-height: 1.1;
}

.promo-price-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .promo-title {
        font-size: 2rem;
    }
    .promo-price-badge {
        width: 120px;
        height: 120px;
    }
    .promo-price {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .personal-menu-promo {
        padding: 40px 0;
    }
    .promo-icon {
        width: 60px;
    }
}

/* * =======================================================
 * 14. MAPA RESPONSIVE
 * =======================================================
 */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; 
    position: relative;
    height: 0; 
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* =======================================================
 * 15. OPTIMIZACIÓN MÓVIL (2 COLUMNAS)
 * =======================================================
 */
@media (max-width: 768px) {
    
    .accordion-content-inner {
        padding: 10px !important;
    }
    
    .accordion-content-inner .menu-category-card {
        margin-bottom: 15px !important; 
        box-shadow: none !important; 
        border: 1px solid #eee;
    }

    .menu-category-header {
        padding: 8px 15px !important;
    }
    .menu-category-title {
        font-size: 1.1rem !important;
    }

    /* Regla general para el Menú Semanal (2 Columnas) */
    .food-list {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 5px 10px; 
        padding: 10px !important;
    }

    /* EXCEPCIÓN: Navidad en 1 columna (para que quepan precios y descripciones) */
    body.page-navidad .food-list {
        grid-template-columns: 1fr !important;
    }

    .food-item, .food-item-special {
        padding: 2px 0 !important; /* REDUCIDO DE 4px (Móvil) */
        border-bottom: 1px dashed #f0f0f0 !important; 
        font-size: 0.85rem !important; 
        line-height: 1.2;
        display: flex;
        align-items: center; 
    }

    .food-item:last-child {
        border-bottom: none !important;
    }
}

/* =======================================================
 * 16. MASONRY GRID (PARA JAVASCRIPT)
 * * Estilo que se aplica al contenedor creado por el JS
 * =======================================================
 */
.masonry-grid {
    display: block;
    column-count: 2; /* Crea dos columnas tipo periódico/Pinterest */
    column-gap: 30px; /* Espacio entre columnas */
    width: 100%;
}

/* Asegura que las tarjetas no se partan entre columnas */
.masonry-grid .menu-category-card {
    display: inline-block; /* Necesario para column-count */
    width: 100%;
    margin-bottom: 30px;
    break-inside: avoid; /* Prohibido partir la tarjeta */
}

/* En móvil, volvemos a una sola columna */
@media (max-width: 991px) {
    .masonry-grid {
        column-count: 1;
    }
}