@font-face {
    font-family: "GT America Extended Medium";
    src: url("https://db.onlinewebfonts.com/t/0a6fd874c0e72df13e27ccf65a53a417.eot");
    src: url("https://db.onlinewebfonts.com/t/0a6fd874c0e72df13e27ccf65a53a417.eot?#iefix") format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/0a6fd874c0e72df13e27ccf65a53a417.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/0a6fd874c0e72df13e27ccf65a53a417.woff") format("woff"),
        url("https://db.onlinewebfonts.com/t/0a6fd874c0e72df13e27ccf65a53a417.ttf") format("truetype"),
        url("https://db.onlinewebfonts.com/t/0a6fd874c0e72df13e27ccf65a53a417.svg#GT America Extended Medium") format("svg");
}

@font-face {
    font-family: "GT America Extended Regular";
    src: url("https://db.onlinewebfonts.com/t/879269be836bf8d970d4ef4fb0e54f42.eot");
    src: url("https://db.onlinewebfonts.com/t/879269be836bf8d970d4ef4fb0e54f42.eot?#iefix") format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/879269be836bf8d970d4ef4fb0e54f42.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/879269be836bf8d970d4ef4fb0e54f42.woff") format("woff"),
        url("https://db.onlinewebfonts.com/t/879269be836bf8d970d4ef4fb0e54f42.ttf") format("truetype"),
        url("https://db.onlinewebfonts.com/t/879269be836bf8d970d4ef4fb0e54f42.svg#GT America Extended Regular") format("svg");
}

@font-face {
    font-family: 'ITC Cheltenham Std Light Condensed';
    font-style: normal;
    font-weight: normal;
    src: local('ITC Cheltenham Std Light Condensed'),
        url('/assets/fonts/itc-cheltenham-std/CheltenhamStdLightCond.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'ITC Cheltenham Std Light Condensed Italic';
    font-style: normal;
    font-weight: normal;
    src: local('ITC Cheltenham Std Light Condensed Italic'),
        url('/assets/fonts/itc-cheltenham-std/CheltenhamStdLightCondIt.woff') format('woff');
    font-display: swap;
}

:root {
    --color-primario: #1b327b;
    --color-blanco: #ffffff;
    --color-texto: #333333;
    --color-gris: #f4f4f4;
    --fuente-principal: 'ITC Cheltenham Std Light Condensed', serif;
    --fuente-secundaria: 'GT America Extended Medium', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fuente-secundaria);
    color: var(--color-texto);
    background-color: var(--color-blanco);
}

dialog {
    width: 80vw;
    max-width: 1366px;
    height: 80vh;
    border: 40px solid #ededed;
    border-radius: 20px;
    background: #fff;
    margin: 0 auto;
    position: fixed;
    top: 10vh;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.7);
}

.modal-header {
    text-align: right;
    padding: 10px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.modal-body {
    width: 100%;
    height: 100%;
    padding-top: 60px;
}

.modal-body iframe {
    width: 100%;
    height: 99%;
}

#closeBtn {
    cursor: pointer;
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    outline: none !important;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 45px 45px 20px;
    font-size: 0.9rem;
}

.logo {
    font-family: var(--fuente-principal);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.phone a {
    color: #fff;
    text-decoration: none;
}

.phone {
    font-weight: 500;
    font-style: auto;
    font-family: var(--fuente-secundaria);
    font-size: 15px;
    line-height: 95%;
    text-align: right;
}

.phone b {
    font-weight: 500;
    font-size: 25px;
}

.hero {
    color: var(--color-blanco);
    position: relative;
    padding-bottom: 80px;
    background: url(/assets/images/fondo.png) no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 100vh;
    width: 100%;
}

.hero-content {
    text-align: center;
    padding: 80px 20px 20px;
}

.hero-content h1 {
    font-family: var(--fuente-principal);
    font-weight: 300;
    font-size: 59.57px;
    line-height: 95%;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content h1 i {
    font-family: 'ITC Cheltenham Std Light Condensed Italic';
    font-weight: 300;
    font-size: 59.57px;
    line-height: 95%;
    text-align: center;
}

.flecha {
    height: 38vh;
    overflow: hidden;
    position: relative;
    display: block;
}

.flecha svg {
    position: absolute;
    bottom: 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    padding: 23px 0;
    white-space: nowrap;
    position: absolute;
    bottom: 72px;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-weight: 500;
    font-family: var(--fuente-secundaria);
    font-size: 22px;
    line-height: 95%;
    text-align: right;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.main-section {
    padding: 60px 20px 0;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-family: var(--fuente-secundaria);
    color: var(--color-primario);
    font-weight: 500;
    font-size: 28px;
    line-height: 111%;
    letter-spacing: 3%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.grid-restaurantes {
    display: flex;
    justify-content: center;
    max-width: 1366px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mini-rest {
    background: rgba(234, 234, 234, 0.87);
    width: 48%;
    border-radius: 16px;
    margin: 2% 1%;
    overflow: hidden;
    padding: 36px;
    color: rgba(32, 54, 150, 1);
    position: relative;
}
.rrss{position:relative;max-width:300px;display:flex;flex-direction:column;margin:20px auto 0;}
.rrss a{padding:10px 0;color:#000;text-decoration:none;padding-left:30px;position:relative;display:flex;justify-content:flex-start;align-items:center;text-align:left;}
.rrss a:before{left:0;content:"";display:block;background:url('/assets/images/ig.png') no-repeat;width:20px; height:20px;position:absolute;background-size:100%;}
.mini-rest:first-child {
    width: 98%;
    border-radius: 20px;
}

.mini-rest .imagen {
    width: 100%;
}

.mini-rest .imagen img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1.36 / 1;
}
.confianza{margin:40px auto;}
.imgconfianza{display:flex;justify-content:space-between;align-items:center;max-width:600px;margin:40px auto;}
.imgconfianza img{max-width:250px;max-width:45%;}

.mini-rest h3 {
    font-family: var(--fuente-secundaria);
    font-weight: 500;
    font-size: 35.57px;
    line-height: 95%;
    padding: 23px 0 20px;
}

.mini-rest .etiqueta {
    text-align: left;
    margin-bottom: 110px;
}

.mini-rest .etiqueta p {
    font-weight: 400;
    font-family: "GT America Extended Regular", sans-serif;
    font-size: 24px;
    line-height: 115%;
    margin-bottom: 16px;
}

.mini-rest .etiqueta .dir {
    font-family: var(--fuente-secundaria);
    font-weight: 500;
    font-size: 21px;
    line-height: 115%;
    margin-bottom: 28px;
}

.mini-rest .etiqueta .dir a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: block;
    color: rgba(245, 245, 245, 1);
    background: rgba(32, 54, 150, 1);
    width: calc(100% - 72px);
    font-weight: 400;
    font-family: "GT America Extended Regular", sans-serif;
    font-size: 32px;
    line-height: 95%;
    letter-spacing: 3%;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    cursor: pointer;
    position: absolute;
    bottom: 36px;
    left: 36px;
}

.card {
    background: var(--color-blanco);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 15px;
    text-align: left;
    transition: transform 0.3s ease;
}

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

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.card h3 {
    font-family: var(--fuente-principal);
    color: var(--color-texto);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.card p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.btn-reservar {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: var(--color-blanco);
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-reservar:hover {
    background-color: var(--color-primario);
}

.mapa {
    width: 102%;
    margin: 0 -23px;
    border-top: 13px solid rgba(32, 54, 150, 1);
    margin-top: 137px;
    margin-bottom: -6px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.mapaimg {
    width: 73%;
    overflow: hidden;
}

.mapaimg img {
    width: 100%;
    margin-top: -3px;
}

.mapalogos {
    width: 27%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-end;
    align-items: flex-end;
    padding: 35px 35px 35px 0;
}

.latenea {
    width: 16.4vw;
}

.lateneo {
    width: 13.4vw;
}

.ltatel {
    width: 10.4vw;
}

.lfront {
    width: 20vw;
}

.lmara {
    width: 19.5vw;
}

.mapa-ilustracion {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 30px;
}

.mapa-ilustracion img {
    width: 100%;
    height: auto;
}

footer {
    background-color: var(--color-primario);
    padding: 60px 5%;
    text-align: center;
    color: var(--color-blanco);
    position: relative;
    z-index: 2;
}

.footer-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logos img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.wrap-legal {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 35px 0 0;
}

.legal-text {
    text-align: right;
    border-top: 1px solid rgba(255, 255, 255, 1);
    padding-top: 15px;
    font-family: var(--fuente-secundaria);
    font-weight: 500;
    font-size: 19.57px;
    line-height: 95%;
}

.legal-text p a {
    text-decoration: none;
    color: inherit;
}

.legal-text p i.smai {
    display: inline;
}

.whatsapp-btn {
    position: fixed;
    bottom: 160px;
    right: 20px;
    color: white;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
}
.lang-switcher{color:#fff;font-size:25px;}
.lang-switcher a{color:#fff;text-decoration:none;}
.lang-switcher a.active{display:none;}
.whatsapp-btn img {
    width: 100%;
    height: auto;
}
.back{float:left;}

@media (max-width: 1490px) {
    .main-section {
        padding-left: 0;
        padding-right: 0;
    }

    .grid-restaurantes {
        padding: 0 20px;
    }
}

@media (max-width: 1250px) {
    .copy {
        display: block;
        width: 100%;
    }

    .legal-text p i {
        display: none;
    }

    .legal-text {
        text-align: center;
        line-height: 1.5;
        font-size: 15px;
    }
}

@media (max-width: 1150px) {
    .latenea {
        width: 150px;
    }

    .lateneo {
        width: 110px;
    }

    .ltatel {
        width: 70px;
    }

    .lfront {
        width: 200px;
    }

    .lmara {
        width: 190px;
    }
}

@media (max-width: 900px) {
    h2.section-title br {
        display: none;
    }

    h2.section-title {
        max-width: 585px;
        margin-left: auto;
        margin-right: auto;
    }

    .mapalogos {
        padding: 25px 25px 25px 0;
    }
}

@media (max-width: 780px) {
    .top-bar {
        padding: 22px 10px;
    }

    .logo a img {
        max-width: 131px;
        height: auto;
    }

    .phone a span {
        display: none;
    }

    .phone b {
        font-size: 17px;
    }

    .hero-content h1,
    .hero-content h1 i {
        font-size: 37px;
    }

    .flecha {
        height: 40vh;
    }

    .marquee-container {
        padding: 20px 0;
    }

    .marquee-content {
        font-size: 17px;
    }

    h2.section-title {
        font-size: 21px;
        margin-top: 0;
    }

    .mini-rest {
        padding: 20px;
        width: 100%;
        margin: 14px 0;
        border-radius: 12px;
    }

    .mini-rest:first-child {
        width: 100%;
    }

    .mini-rest h3 {
        font-size: 22px;
        padding: 10px 0 8px;
    }

    .mini-rest .etiqueta p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .mini-rest .etiqueta p br {
        display: none;
    }

    .mini-rest .etiqueta .dir {
        margin-bottom: 17px;
    }

    .mini-rest .etiqueta .dir a {
        font-size: 13px;
    }

    .mini-rest .btn {
        font-size: 20px;
        padding: 12px;
    }

    .mapa {
        flex-direction: column;
        margin-top: 50px;
        margin-left: 0;
        margin-right: 0;
    }

    .mapaimg {
        width: 100%;
        border-bottom: 13px solid rgba(32, 54, 150, 1);
    }

    .mapaimg img {
        margin-bottom: -6px;
    }

    .mapalogos {
        width: 100%;
        padding: 38px;
        align-items: center;
        gap: 25px;
    }

    .latenea {
        width: 136px;
    }

    .lateneo {
        width: 112px;
    }

    .ltatel {
        width: 91px;
    }

    .lfront {
        width: 163px;
    }

    .lmara {
        width: 160px;
    }

    .whatsapp-btn {
        right: 10px;
        width: 40px;
        height: 40px;
        bottom: 80px;
    }

    #popup {
        width: 98vw;
        border: 10px solid #ededed;
        height: 90vh;
        top: 2vh;
    }
}

@media (max-width: 650px) {
    .legal-text p i.smai {
        display: none;
    }

    .correo {
        width: 100%;
        display: block;
    }
}

@media (max-width: 450px) {

    .hero-content h1,
    .hero-content h1 i {
        font-size: 8vw;
    }
}

@media (max-width: 350px) {

    .hero-content h1,
    .hero-content h1 i {
        font-size: 7vw;
    }
}

@media (min-width: 300px) and (max-height: 960px) {
    .hero {
        height: 100vh;
    }

    .flecha {
        height: 34vh;
        overflow: hidden;
        position: relative;
    }

    .marquee-container {
        bottom: 50px;
    }
}

@media (min-width: 300px) and (max-height: 780px) {
    .hero {
        height: 100vh;
    }

    .hero-content {
        padding-top: 6vh;
        padding-bottom: 0;
    }

    .hero-content h1 {
        margin-bottom: 6vh;
    }

    .flecha {
        height: 30vh;
        overflow: hidden;
        position: relative;
    }

    .marquee-container {
        bottom: 20px;
    }
}

@media (min-width: 300px) and (max-height: 560px) {
    .hero {
        height: 100vh;
    }

    .hero-content {
        padding-top: 6vh;
        padding-bottom: 0;
    }

    .hero-content h1 {
        margin-bottom: 6vh;
    }

    .flecha {
        display: none;
    }

    .marquee-container {
        bottom: 20px;
    }
}

@media (min-width: 500px) and (max-height: 800px) {
    .hero {
        height: 100vh;
    }

    .marquee-container {
        bottom: 20px;
    }
}