﻿

/*PÁGINA DE INICO*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: grid;
    grid-template-columns:auto 1fr auto; 
    align-items: center; 
    padding: 0px 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.menu-links {
    display: flex;
    justify-content: center; 
    gap: 60px;
}

.menu {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 20px;
}

    .menu:hover {
        color: #d9701a;
    }


.logo img {
    height: 70px;
    width: auto ;
    display:block;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

    .modal-overlay.activo {
        display: flex;
    }

.modal-box {
    background-color: white;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 350px;
}

.modal-cerrar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.modal-opciones {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.modal-btn {
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    color: white;
}

    .modal-btn.uber {
        background-color: #06C167;
    }

    .modal-btn.didi {
        background-color: #FF6600;
    }

    .modal-btn:hover {
        opacity: 0.85;
    }


.hero-banner {
    width: 100%;
    position: relative;
}

    .hero-banner img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0;
    }

.hero-btn-invisible {
    position: absolute;
    display: block;
}

.btn-ver-menu {
    top: 68%;
    left: 8%;
    width: 24%;
    height: 11%;
}

.sopas-seccion {
    text-align: center;
    padding:0px 40px 60px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

    .sopas-seccion h2 {
        font-family: 'Baloo 2', sans-serif;
        color: #4a2e1e;
        font-size: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

        .sopas-seccion h2::before,
        .sopas-seccion h2::after {
            content: "✦";
            color: #f5821f;
            font-size: 22px;
        }

.sopas-subtitulo {
    color: #888;
    margin-top: -30px;
    margin-bottom: 40px;
}

.sopas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.sopa-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .sopa-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .sopa-card h3, .sopa-card p, .sopa-card .sopa-precio {
        padding: 0 18px;
    }

    .sopa-card h3 {
        margin-top: 15px;
        color: #4a2e1e;
    }

    .sopa-card p {
        color: #777;
        font-size: 14px;
    }


.convenios {
    text-align: center;
    padding: 35px 40px;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 12px;
}

.club-sopero {
    background-color: #2196c9;
}

    .club-sopero h2 {
        font-family: 'Baloo 2', sans-serif;
        color: white;
        font-size: 30px;
        margin-bottom: 8px;
    }

    .club-sopero .convenios-subtitulo {
        color: white;
    }

.club-flotante {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #f5821f;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    z-index: 997;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

    .club-flotante:hover {
        background-color: #d9701a;
        transform: scale(1.05);
    }

    .club-flotante i {
        font-size: 18px;
    }

@media (max-width: 500px) {
    .club-flotante {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
        font-size: 13px;
    }

        .club-flotante span {
            display: none;
        }

        .club-flotante i {
            font-size: 22px;
        }
}












.convenios-plano {
    background-color: transparent;
    margin-top: 20px;
}

    .convenios-plano h2 {
        font-family: 'Baloo 2', sans-serif;
        color: #4a2e1e;
        font-size: 30px;
        margin-bottom: 8px;
    }

.convenios-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.convenio-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 220px;
}

    .convenio-card img {
        height: 80px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

.btn-convenio {
    background-color: #2196c9;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

    .btn-convenio:hover {
        background-color: #1a7ba3;
    }

.club-sopero-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 750px;
    width: 100%;
    margin: 20px auto 0 auto;
}

    .club-sopero-form input {
        flex: 1;
        min-width: 160px;
        padding: 12px 16px;
        border: none;
        border-radius: 25px;
        font-size: 14px;
    }

    .club-sopero-form button {
        background-color: #f5821f;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: bold;
        cursor: pointer;
        white-space: nowrap;
    }

        .club-sopero-form button:hover {
            background-color: #d9701a;
        }


.club-sopero-birthday {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: white;
    border-radius: 25px;
    padding: 0 16px;
}

    .club-sopero-birthday input {
        border: none;
        padding: 12px 4px;
        width: 34px;
        text-align: center;
        font-size: 14px;
        border-radius: 0;
    }

    .club-sopero-birthday span {
        color: #999;
    }

.club-sopero-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .club-sopero-field label {
        color: rgba(255,255,255,0.85);
        font-size: 12px;
        font-weight: 600;
        margin-left: 16px;
    }

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    background-color: #f5821f;
    padding: 15px 60px 0px 60px;
}



.footer-col-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.footer-redes {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.footer-col-logo .footer-redes a {
    background-color: #f5821f;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    margin-bottom: 0;
}

    .footer-col-logo .footer-redes a:hover {
        background-color: #1a7ba3;
    }

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-col a, .footer-col p {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-sucursal {
    margin-bottom: 4px !important;
}

    .footer-sucursal strong {
        color: white;
    }

.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    background-color: #f5821f;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 12px 0;
    margin-top: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}

@media (max-width: 700px) {
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }
}







/* PÁGINA DE MENU*/
.pagina-titulo {
    text-align: center;
    padding: 50px 40px 20px 40px;
}

    .pagina-titulo h1 {
        font-family: 'Baloo 2', sans-serif;
        color: #4a2e1e;
        font-size: 38px;
        margin-bottom: 8px;
    }

    .pagina-titulo p {
        color: #888;
    }

.menu-filtros {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 40px 30px 40px;
    flex-wrap: wrap;
}

.filtro-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
}

    .filtro-btn.activo {
        background-color: #2196c9;
        color: white;
        border-color: #2196c9;
    }
.menu-lista {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .menu-item img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
    }

.menu-item-info {
    flex: 1;
}

    .menu-item-info h3 {
        color: #4a2e1e;
        margin: 0 0 5px 0;
    }

    .menu-item-info p {
        color: #777;
        font-size: 14px;
        margin: 0;
    }

.menu-item-accion {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.menu-item-precio {
    font-weight: bold;
    color: #f5821f;
    font-size: 16px;
}

.btn-pedir-chico {
    background-color: #2196c9;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
}

    .btn-pedir-chico:hover {
        background-color: #1a7ba3;
    }

@media (max-width: 600px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item-accion {
        align-items: center;
    }
}

.menu-hero-banner {
    max-width: 900px;
    margin: 0 auto;
    max-height: 280px;
    overflow: hidden;
}

    .menu-hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



/* ===== MENÚ - chispitas, precios, botón pedir, tablas ===== */
.menu-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.chispa {
    width: 22px;
    height: 22px;
    fill: #FF8C00;
    flex-shrink: 0;
}

.btn-pedir {
    display: block;
    margin: 12px auto 0;
    padding: 8px 20px;
    background-color: #FF8C00;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .btn-pedir:hover {
        background-color: #e07b00;
    }

.sopa-precios {
    display: flex;
    justify-content: center;
    margin-top: 6px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #4a2e1f;
}

    .sopa-precios span.precio {
        color: #FF8C00;
        font-weight: 800;
    }

.menu-nota {
    text-align: center;
    font-style: italic;
    color: #7a5c46;
    margin-bottom: 10px;
}

.menu-tabla {
    background: #fff;
    border: 2px solid #f0d9c0;
    border-radius: 18px;
    padding: 22px;
    max-width: 520px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.menu-tabla-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FF8C00;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    margin-bottom: 14px;
}

    .menu-tabla-header.bebidas {
        background-color: #4a2e1f;
    }

    .menu-tabla-header i {
        background: #fff;
        color: #FF8C00;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-tabla-header.bebidas i {
        color: #4a2e1f;
    }

    .menu-tabla-header h3 {
        margin: 0;
        font-size: 1.2rem;
    }

.menu-tabla-lista {
    display: grid;
    grid-template-columns: 1fr;
}

    .menu-tabla-lista.dos-columnas {
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }

.menu-tabla-item {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed #e5cdb3;
    color: #4a2e1f;
    font-weight: 600;
}

    .menu-tabla-item .precio {
        color: #FF8C00;
        font-weight: 800;
    }




/*PÁGINA DE LOCALES*/

.locales-seccion {
    padding: 50px 6%;
    text-align: center;
}

.locales-titulo {
    font-size: 2rem;
    color: #4a2e1f;
    margin-bottom: 6px;
}

.locales-subtitulo {
    color: #7a5c46;
    margin-bottom: 40px;
}

.locales-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 30px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .locales-grid {
        grid-template-columns: 1fr;
    }
}

.locales-col h3 {
    color: #4a2e1f;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.sucursal-item {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

    .sucursal-item i.fa-location-dot {
        color: #2196c9;
        font-size: 1.2rem;
        margin-top: 4px;
    }

.sucursal-info h4 {
    margin: 0 0 4px;
    color: #4a2e1f;
}

.sucursal-info p {
    margin: 0 0 8px;
    color: #7a5c46;
    font-size: 0.92rem;
}

.btn-llegar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #2196c9;
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 700;
}

    .btn-llegar:hover {
        background-color: #2196c9;
    }

.mapa-ilustrado {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

    .contacto-item i {
        color: #2196c9;
        font-size: 1.1rem;
        margin-top: 3px;
    }

    .contacto-item p {
        margin: 0;
        color: #4a2e1f;
    }

.locales-redes {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

    .locales-redes a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: #FF8C00;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

        .locales-redes a:hover {
            background-color: #2196c9;
        }





/*PÁGINA DE PROMOCIONES*/


.promos-seccion {
    padding: 50px 6% 20px;
    text-align: center;
}

.promos-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 2.4rem;
    color: #4a2e1f;
    margin-bottom: 6px;
}

    .promos-titulo .chispa {
        width: 26px;
        height: 26px;
        fill: #FF8C00;
        flex-shrink: 0;
    }

.promos-subtitulo {
    color: #7a5c46;
    margin-bottom: 40px;
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    max-width: 1100px;
    margin: 0 auto 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    text-align: left;
}

.promo-texto {
    flex: 1;
}

.promo-imagen {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

    .promo-imagen img {
        width: 100%;
        max-width: 420px;
        border-radius: 18px;
        object-fit: cover;
    }

.promo-etiqueta {
    display: inline-block;
    background-color: #1e88c7;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.promo-titulo-grande {
    font-size: 1.8rem;
    color: #FF8C00;
    font-weight: 800;
    margin: 0 0 4px;
    line-height: 1.15;
}

.promo-porcentaje {
    font-size: 3rem;
    color: #FF8C00;
    font-weight: 800;
    line-height: 1;
    margin: 6px 0;
}

.promo-descuento-texto {
    font-size: 1.4rem;
    color: #4a2e1f;
    font-weight: 800;
    margin: 0 0 14px;
}

.promo-fecha {
    display: inline-block;
    background-color: #1e88c7;
    color: #fff;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.promo-nota {
    color: #7a5c46;
    font-size: 0.95rem;
}

.promo-badge-circulo {
    position: absolute;
    top: 20px;
    left: -20px;
    background-color: #1e88c7;
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

    .promo-badge-circulo .porcentaje {
        font-size: 1.6rem;
        line-height: 1;
    }

    .promo-badge-circulo .detalle {
        font-size: 0.65rem;
        line-height: 1.1;
        margin-top: 2px;
    }

.promo-badge-esquina {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background-color: #1e88c7;
    color: #fff;
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.promo-imagen-doble {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .promo-imagen-doble img.circular {
        width: 160px;
        height: 160px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
        box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    }

    .promo-imagen-doble img.rectangular {
        width: 220px;
        height: 220px;
        border-radius: 18px;
        object-fit: cover;
    }

@media (max-width: 800px) {
    .promo-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-imagen-doble {
        flex-direction: column;
    }

    .promo-badge-circulo {
        position: static;
        margin: 0 auto 14px;
    }
}

.promos-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #1e88c7;
    color: #fff;
    border-radius: 20px;
    padding: 26px 40px;
    max-width: 1100px;
    margin: 40px auto 10px;
}

.promos-cta-texto {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.15rem;
    font-weight: 700;
}

    .promos-cta-texto i {
        font-size: 1.8rem;
    }

.btn-cta-pedir {
    background-color: #fff;
    color: #FF8C00;
    font-weight: 800;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-cta-pedir:hover {
        background-color: #f2f2f2;
    }

.promos-final-nota {
    text-align: center;
    color: #7a5c46;
    font-size: 0.85rem;
    font-style: italic;
    margin: 20px 0 40px;
}







/*PÁGINA DE NOSOTROS */

.nosotros-header {
    text-align: center;
    padding: 50px 6% 10px;
}

.nosotros-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 2.6rem;
    color: #4a2e1f;
    margin-bottom: 4px;
}

    .nosotros-titulo .chispa {
        width: 26px;
        height: 26px;
        fill: #FF8C00;
        flex-shrink: 0;
    }

.nosotros-subtitulo {
    color: #7a5c46;
    margin-bottom: 30px;
}

.nosotros-historia {
    background: #fdf1e2;
    border-radius: 26px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.nosotros-historia-texto {
    flex: 1;
}

    .nosotros-historia-texto h3 {
        color: #1e88c7;
        font-size: 1.6rem;
        margin: 0 0 4px;
        line-height: 1.2;
    }

        .nosotros-historia-texto h3.naranja {
            color: #FF8C00;
            margin-bottom: 18px;
        }

.historia-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

    .historia-item .icono {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        flex-shrink: 0;
        font-size: 1.1rem;
    }

    .historia-item p {
        margin: 0;
        color: #4a2e1f;
        line-height: 1.4;
    }

.icono.icono-1 {
    background-color: #1e88c7;
}

.icono.icono-2 {
    background-color: #FF8C00;
}

.icono.icono-3 {
    background-color: #1e88c7;
}

.icono.icono-4 {
    background-color: #FF8C00;
}

.nosotros-historia-imagen {
    flex: 1;
}

    .nosotros-historia-imagen img {
        width: 100%;
        border-radius: 18px;
        object-fit: cover;
    }

.nosotros-camino {
    background: #fff;
    border-radius: 26px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.camino-titulo {
    flex-shrink: 0;
    font-size: 1.9rem;
    font-weight: 800;
    color: #4a2e1f;
    line-height: 1.15;
}

    .camino-titulo span {
        color: #FF8C00;
        display: block;
        font-size: 2.2rem;
    }

.camino-hitos {
    flex: 1;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.camino-hito {
    flex: 1;
    min-width: 180px;
}

.camino-hito-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

    .camino-hito-header .icono-circulo {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background-color: #fdeee0;
        color: #FF8C00;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .camino-hito-header .anio {
        display: inline-block;
        background-color: #1e88c7;
        color: #fff;
        font-weight: 700;
        font-size: 0.8rem;
        padding: 4px 14px;
        border-radius: 16px;
    }

.camino-hito h4 {
    margin: 0 0 6px;
    color: #4a2e1f;
}

.camino-hito p {
    margin: 0;
    color: #7a5c46;
    font-size: 0.9rem;
    line-height: 1.4;
}

.nosotros-equipo {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    padding: 0 6%;
}

.equipo-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.equipo-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.equipo-card {
    background: #fdf1e2;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

    .equipo-card .icono-grande {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .equipo-card.mision .icono-grande {
        background-color: #1e88c7;
    }

    .equipo-card.vision .icono-grande {
        background-color: #FF8C00;
    }

    .equipo-card h4 {
        margin: 0 0 6px;
        color: #4a2e1f;
    }

    .equipo-card p {
        margin: 0;
        color: #7a5c46;
        font-size: 0.92rem;
        line-height: 1.4;
    }

.nosotros-cta {
    background-color: #1e88c7;
    color: #fff;
    text-align: center;
    padding: 22px 6%;
    max-width: 1200px;
    margin: 0 auto 50px;
    border-radius: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

    .nosotros-cta strong {
        color: #ffd9a8;
    }

    .nosotros-cta i {
        font-size: 1.4rem;
    }

@media (max-width: 900px) {
    .nosotros-historia,
    .nosotros-camino {
        flex-direction: column;
    }

    .nosotros-equipo {
        grid-template-columns: 1fr;
    }
}






@media (max-width: 700px) {
    .navbar {
        grid-template-columns: auto 1fr auto;
        padding: 10px 15px;
    }

    .menu-links {
        justify-content: center;
        gap: 8px;
        row-gap: 10px;
    }

    .menu {
        font-size: 13px;
        background-color: #fdeee0;
        color: #d9701a;
        padding: 8px 14px;
        border-radius: 20px;
        font-weight: bold;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

        .menu:hover,
        .menu:active {
            background-color: #f5821f;
            color: white;
        }

    .logo img {
        height: 45px;
    }

    .sopas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sopa-card img {
        height: 130px;
    }

    .club-sopero-form {
        flex-direction: column;
    }

        .club-sopero-form input {
            width: 100%;
            min-width: unset;
        }
}

.club-sopero-birthday .input-anio {
    width: 55px;
}

.navbar {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #4a2e1e;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 700px) {
    .menu-toggle {
        display: block;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        padding: 15px;
        gap: 10px;
        z-index: 998;
    }

        .menu-links.activo {
            display: flex;
        }

    .menu {
        text-align: center;
    }
}

.contacto-item p a {
    color: #2196c9;
    text-decoration: none;
    font-weight: bold;
}

    .contacto-item p a:hover {
        text-decoration: underline;
    }

.sopa-card p {
    overflow-wrap: break-word;
}



.btn-unete-club {
    top: 74%;
    left: 2%;
    width: 44%;
    height: 17%;
}

.btn-pedir-club {
    top: 80%;
    left: 81%;
    width: 16%;
    height: 11%;
}


.menu-hero-banner {
    width: 100%;
    height: 90px;
    overflow: hidden;
}

    .menu-hero-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }





.menu-hero-banner {
    width: 100%;
    height: 140px;
    background-color: #fdeee0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .menu-hero-banner img {
        max-height: 100%;
        width: auto;
        object-fit: contain;
    }




.modal-btn.local-btn {
    background-color: #2196c9;
}

    .modal-btn.local-btn:hover {
        background-color: #1a7ba3;
    }


.convenio-card {
    background-color: white;
    border: 2px solid #f5821f;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 220px;
}












.club-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: flex-end;
    justify-content: center;
}

    .club-popup-overlay.activo {
        display: flex;
    }

.club-popup-box {
    background-color: #f5821f;
    width: 100%;
    max-width: 500px;
    border-radius: 40px 40px 0 0;
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    color: white;
    max-height: 90vh;
    overflow-y: auto;
    animation: club-popup-subir 0.35s ease;
}

@keyframes club-popup-subir {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.club-popup-cerrar {
    position: absolute;
    top: 16px;
    right: 20px;
    background-color: rgba(0,0,0,0.2);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.club-popup-step h3 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 32px;
    margin: 0 0 14px;
}

.club-popup-step p {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 22px;
}

#clubPopupForm {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    #clubPopupForm input {
        padding: 12px 18px;
        border: none;
        border-radius: 25px;
        font-size: 14px;
        color: #333;
    }

.club-popup-fecha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: white;
    border-radius: 25px;
    padding: 0 16px;
}

    .club-popup-fecha input {
        border: none;
        padding: 12px 4px;
        width: 34px;
        text-align: center;
        font-size: 14px;
        color: #333;
    }

        .club-popup-fecha input#popup-anio {
            width: 55px;
        }

    .club-popup-fecha span {
        color: #999;
    }

#clubPopupForm button {
    background-color: white;
    color: #f5821f;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    margin-top: 6px;
}

    #clubPopupForm button:hover {
        background-color: #fdeee0;
    }

.club-popup-no-gracias {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    opacity: 0.85;
}

@media (max-width: 500px) {
    .club-popup-box {
        border-radius: 30px 30px 0 0;
        padding: 30px 20px 24px;
    }
}




.club-popup-box {
    overflow-x: hidden;
}

.club-popup-fecha {
    max-width: 100%;
    box-sizing: border-box;
}


.club-popup-fecha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: white;
    border-radius: 25px;
    padding: 0 8px;
    flex-wrap: nowrap;
}

    .club-popup-fecha input {
        border: none;
        padding: 12px 2px;
        width: 62px;
        text-align: center;
        font-size: 14px;
        color: #333;
        box-sizing: border-box;
    }

        .club-popup-fecha input#popup-anio {
            width: 85px;
        }

    .club-popup-fecha span {
        color: #999;
    }



.menu-filtros {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 40px 40px 30px 40px;
    flex-wrap: wrap;
}




.filtro-btn {
    background-color: white;
    border: 1px solid #ddd;
    padding: 14px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    color: #666;
}
