/* Llamado de fuentes personalizadas */

@font-face {
    font-family: 'lemonmilkbold';
    src: url(assets/fonts/LEMONMILK-Bold.woff);
}

@font-face {
    font-family: 'lemonmilkmedium';
    src: url(assets/fonts/LEMONMILK-Medium.woff);
}

@font-face {
    font-family: 'lemonmilkregular';
    src: url(assets/fonts/LEMONMILK-Regular.woff);
}

@font-face {
    font-family: 'lemonmilklight';
    src: url(assets/fonts/LEMONMILK-Light.woff);
}

@font-face {
    font-family: 'futura';
    src: url(assets/fonts/Futura.woff);
}

@font-face {
    font-family: 'goboldbold';
    src: url(assets/fonts/Gobold-Bold.woff);
}

/* Reseteo de CSS para HTML5 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* termina reseteo  */

body{
    line-height: 1;
    background-color: #f4a11e;
    margin-top: 58px;
    /* overflow-y: hidden; */
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

header,section,footer{
    width: 100%;
}
/* header */
#logo{
    background-image: url(assets/svgs/logoSanPetter.svg);
    height: 7vh;
    background-repeat: no-repeat;
    background-position: center;
}

#menu-desktop{
    height: 5vh;
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: center;
}

#menu-desktop .btnMenuDskt{
    height: 2vh;
    margin: 2.8vh 1.5vw;
    cursor: pointer;
}

/* end header*/

@keyframes marqueeLeft {
    from {
        background-position: 50% 0;
    }
    to {
        background-position: -70% 0;
    }
}

@keyframes marqueeRight {
    from {
        background-position: -70% 0;
    }
    to {
        background-position: 50% 0;
    }
}

section#landing{
    height: 63vw;
    position: relative;
    max-height: 756px;
}

#textScrollContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 9ch;
}

#textScrollContainer .slogan1{
    height: 23%;
    width: 120%;
    background-image: url(assets/svgs/slogan1spaces2.svg);
    background-repeat: repeat-x;
    background-size: cover;
    transform: rotate3d(1, 1, 1, -7.6deg);
    margin: 2% -2%;
}

#textScrollContainer #line1, #textScrollContainer #line3 {
    background-position: -50%;
    animation: marqueeRight 10s linear infinite;
}

#textScrollContainer #line2{
    background-position: 50%;
    animation: marqueeLeft 10s linear infinite;
}

#portadaContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#maskContainer {
    width: 33.3%;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#masked-img {
    width: 100%;
    height: 100%;
    mask: url(#maskKing);
    -webkit-mask: url(#maskKing);
    position: relative;
    background-image: url(assets/imgs/FOTO-PORTADA-CORONA.jpg);
    background-size: 239%;
    background-position: 54% 45%;
}
#kingMaskSVG{
    left: 5%;
    width: 100%;
    height: 100%;
}
#shadowKing{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(assets/imgs/sombraRey.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}
#imageKing{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background-image: url(assets/imgs/imgPortadaMiddle.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

#fotoPortada{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-image: url(assets/imgs/FOTO-PORTADA-CORONA.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#outlineKing{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(assets/imgs/outlinePortadaRey.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

/* end landing */

section#priceTeaser{
    height: 53.5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 642px;
    position: relative;
}

#teaserContainer{
    width: 52%;
    height: 83.5%;
    position: relative;
    transform: scale(0.75);
}


#teaserContainer #lines{
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-image: url(assets/svgs/lines.svg); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
#teaserContainer #lines > svg{
    position: inherit;
    width: 100%;
}


#teaserContainer #price{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(assets/svgs/price.svg);
    background-repeat: no-repeat;
    background-size: 54%;
    background-position: center;
}

#bgTeaserElem{
    width: 100%;
    aspect-ratio: 1.34/1;
    background-image: url(assets/imgs/bgTeaser.png);
    position: absolute;
    z-index: -1;
    background-size: cover;
    top: 0vh;
}

.sideOrnaments{
    position: absolute;
}

#leftOrnament{
    width: 19.62%;
    aspect-ratio: 0.45/1;
    background-image: url(assets/imgs/leftOrnament.png);
    position: absolute;
    z-index: -1;
    background-size: cover;
    top: 4.4vh;
    left: 0;
}

#rightOrnament{
    width: 19.62%;
    aspect-ratio: 0.45/1;
    background-image: url(assets/imgs/rightOrnament.png);
    position: absolute;
    z-index: -1;
    background-size: cover;
    top: 4.4vh;
    right: 0;
}



/* end teaser */

section#sectionInfo1{
    height: 38.6vw;
    max-height: 464px;
}

section#sectionInfo1 #upperInfo{
    width: 100%;
    height: 78.2%;
    background-image: url(assets/svgs/enEsteReino.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;
}

section#sectionInfo1 #lowerInfo{
    width: 100%;
    height: 21.8%;
    /* background-image: url(assets/svgs/creemospodercomida.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%; */
    font-family: 'lemonmilklight';
    font-size: 96%;
    align-content: start;
    text-align: center;
}

section#sectionInfo1 #lowerInfo span{
    font-family: 'lemonmilkbold';
    font-size: (1em + ((1vw - 20px) * 1));
}

/* end sectionInfo1 */

#sectionManjares{
    width: 100%;
    height: 91vw;
    /* max-height: 1092px; */
}

#titleManjares{
    width: 100%;
    height: 8%;
    background-image: url(assets/svgs/titleManjares.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30%;
}

#divisiones{
    display: flex;
    justify-content: space-around;
    margin-bottom: 1vw;
}

.subMenuManjares{
    aspect-ratio: 1.125/1;
    width: 19%;
    background-color: blue;
    border-radius: 1.5vw;
    box-shadow: 5px 5px;
    cursor: pointer;
}

.subMenuManjares#entradas{
    background-image: url(assets/imgs/entradasBack-100.jpg);
    background-position: center;
    background-size: contain;
    
}

.subMenuManjares#festin{
    background-image: url(assets/imgs/festinBack-100.jpg);
    background-position: center;
    background-size: contain;
}

.subMenuManjares#bebidas{
    background-image: url(assets/imgs/bebidasBack-100.jpg);
    background-position: center;
    background-size: contain;
}

.subMenuManjares#hamburguesas{
    background-image: url(assets/imgs/hamburguesasBack-100.jpg);
    background-position: center;
    background-size: contain;
}

.subMenuManjares#postres{
    background-image: url(assets/imgs/postresBack-100.jpg);
    background-position: center;
    background-size: contain;
}

.subTitle{
    width: 100%;
    height: 100%;
}

.subTitle#titleEntrada{
    background-image: url(assets/svgs/manjaresEntradas.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 62%;
}
.subTitle#titleFestin{
    background-image: url(assets/svgs/manjaresFestin.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}
.subTitle#titleBebidas{
    background-image: url(assets/svgs/manjaresBebidas.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}
.subTitle#titleHamburguesas{
    background-image: url(assets/svgs/manjaresHamburguesas.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 86%;
}
.subTitle#titlePostres{
    background-image: url(assets/svgs/manjaresPostres.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

#wrapperPlatillos{
    width: 100%;
    height: 72.7%;
    position: relative;
    overflow: hidden; 
}

#backManjaresContainer{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

canvas {
    display: block;
    position: absolute;
    width: 100%!important;
    height: 100%!important;
}

#frontManjaresContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.containerPlatillos{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.platillos{
    aspect-ratio: 1/1;
    width: 20%;
    position: absolute;
    background-position: center;
    background-size: contain;
    pointer-events: all;
    cursor: pointer;
}

.space1{
    top: 10%;
    left: 3%;
}

.space2{
    top: 38%;
    left: 13%;
}

.space3{
    top: 64%;
    left: 3%;
}

.space4{
    top: 10%;
    right: 3%;
}

.space5{
    top: 38%;
    right: 13%;
}

.space6{
    top: 64%;
    right: 3%;
}

#showcase #plate1{
    background-image: url(assets/imgs/menu/manjares/SOPA_AZTECA.png);
    background-repeat: no-repeat;
    background-position: center;
}

#showcase #plate2{
    background-image: url(assets/imgs/menu/manjares/COSTILLAS-DE-ELOTE.png);
    background-repeat: no-repeat;
    background-position: center;
}

#showcase #plate3{
    background-image: url(assets/imgs/menu/manjares/PAPA-AL-GRATIN-CON-PASTOR.png);
    background-repeat: no-repeat;
    background-position: center;
}

#showcase #plate4{
    background-image: url(assets/imgs/menu/manjares/NACHOS.png);
    background-repeat: no-repeat;
    background-position: center;
}

#showcase #plate5{
    background-image: url(assets/imgs/menu/manjares/PAPAS-SARATOGA.png);
    background-repeat: no-repeat;
    background-position: center;
}

#showcase #plate6{
    background-image: url(assets/imgs/menu/manjares/MAC-N-CHEESE.png);
    background-repeat: no-repeat;
    background-position: center;
}

#festinPlt #plate1{
    background-image: url(assets/imgs/menu/manjares/ALITAS.png);
    background-repeat: no-repeat;
    background-position: center;
}

#festinPlt #plate2{
    background-image: url(assets/imgs/menu/manjares/BURRITO-DE-PASTOR.png);
    background-repeat: no-repeat;
    background-position: center;
}

#festinPlt #plate3{
    background-image: url(assets/imgs/menu/manjares/BONELESS.png);
    background-repeat: no-repeat;
    background-position: center;
}

#festinPlt #plate4{
    background-image: url(assets/imgs/menu/manjares/BANDERILLA.png);
    background-repeat: no-repeat;
    background-position: center;
}

#festinPlt #plate5{
    background-image: url(assets/imgs/menu/manjares/TACOS-AL-PASTOR.png);
    background-repeat: no-repeat;
    background-position: center;
}

#festinPlt #plate6{
    background-image: url(assets/imgs/menu/manjares/HOT-DOG-CHILI.png);
    background-repeat: no-repeat;
    background-position: center;
}

#bebidasPlt #plate1{
    background-image: url(assets/imgs/menu/manjares/michelada-mango-pina.png);
    background-repeat: no-repeat;
    background-position: center;
}

#bebidasPlt #plate2{
    background-image: url(assets/imgs/menu/manjares/CANTARITO.png);
    background-repeat: no-repeat;
    background-position: center;
}

#bebidasPlt #plate3{
    background-image: url(assets/imgs/menu/manjares/mojito_mora_azul.png);
    background-repeat: no-repeat;
    background-position: center;
}

#bebidasPlt #plate4{
    background-image: url(assets/imgs/menu/manjares/CARAJILLO-4.png);
    background-repeat: no-repeat;
    background-position: center;
}

#bebidasPlt #plate5{
    background-image: url(assets/imgs/menu/manjares/BEBIDA-10.png);
    background-repeat: no-repeat;
    background-position: center;
}

#bebidasPlt #plate6{
    background-image: url(assets/imgs/menu/manjares/MALTEADA-COOKIES.png);
    background-repeat: no-repeat;
    background-position: center;
}

#hamburguesasPlt #plate1{
    background-image: url(assets/imgs/menu/manjares/TROMPO-BURGER.png);
    background-repeat: no-repeat;
    background-position: center;
}

#hamburguesasPlt #plate2{
    background-image: url(assets/imgs/menu/manjares/BACON-CHEESE-BURGER.png);
    background-repeat: no-repeat;
    background-position: center;
}

#hamburguesasPlt #plate3{
    background-image: url(assets/imgs/menu/manjares/CHICKEN-BURGER.png);
    background-repeat: no-repeat;
    background-position: center;
}

#hamburguesasPlt #plate4{
    background-image: url(assets/imgs/menu/manjares/BBQ-ONION-BURGER.png);
    background-repeat: no-repeat;
    background-position: center;
}

#hamburguesasPlt #plate5{
    background-image: url(assets/imgs/menu/manjares/JULIANA-BURGER.png);
    background-repeat: no-repeat;
    background-position: center;
}

#hamburguesasPlt #plate6{
    background-image: url(assets/imgs/menu/manjares/PULLED-PORK-BURGER.png);
    background-repeat: no-repeat;
    background-position: center;
}

#postresPlt #plate1{
    background-image: url(assets/imgs/menu/manjares/PAN-DE-ELOTE.png);
    background-repeat: no-repeat;
    background-position: center;
}

#postresPlt #plate2{
    background-image: url(assets/imgs/menu/manjares/CORONA-DEL-REY.png);
    background-repeat: no-repeat;
    background-position: center;
}

#postresPlt #plate3{
    background-image: url(assets/imgs/menu/manjares/EMPANADAS-DE-MANZANA.png);
    background-repeat: no-repeat;
    background-position: center;
}

/* end manjares */

section#sectionSlider1{
    background-color: aliceblue;
    height: 68vw;
    /* max-height: 816px; */
    margin-top: -5vh;
}


@keyframes marquee {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-33.5%);
    }
}

.bannersLocations{
    width: 100%;
    height: 8.63%;
    background-color: blue;
    font-family: 'lemonmilkmedium';
    color: #f4a932;
    font-size: calc(2em + ((1vw - 20px) * 1));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bannersLocations span{
    transform: translateX(0%);
    text-wrap: nowrap;
    animation: marquee 10s linear infinite;
}

#bannerLocations1{
    background-image: url(assets/imgs/sombraPlecaSuperior.jpg);
    background-size: contain;
}

#bannerLocations2{
    background-image: url(assets/imgs/sombraPlecainferior.jpg);
    background-size: contain;
}

#slider1 {
    width: 100%;
    height: 82.7%;
    background-color: black;
    position: relative;
    overflow: hidden; /* Oculta cualquier desbordamiento para el efecto de marquee */
}

#slidesContainer {
    display: flex; /* Alinear las diapositivas horizontalmente */
    width: 100%; /* Asegura que el contenedor de slides ocupe el 100% del ancho disponible */
    height: 100%; /* Asegura que el contenedor de slides ocupe el 100% de la altura disponible */
    position: relative;
}

.slides {
    min-width: 100%; /* Cada slide toma el 100% del ancho del contenedor padre */
    height: 100%;
    background-image: url(assets/imgs/coverSlider-100.jpg);
    background-size: cover;
    background-position: center;
    flex-shrink: 0; /* Evita que las diapositivas se reduzcan en tamaño */
}

.slides#slide1{
    background-image: url(assets/imgs/promos/promo1.jpg);
}

.slides#slide2{
    background-image: url(assets/imgs/promos/promo2.jpg);
}

.slides#slide3{
    background-image: url(assets/imgs/promos/promo3.jpg);
}

.slides#slide4{
    background-image: url(assets/imgs/promos/promo4.jpg);
}
.slides#slide4{
    background-image: url(assets/imgs/promos/promo_catrina.jpg);
}
.slides#slide5{
    background-image: url(assets/imgs/promos/promo_vampiro.jpg);
}


/* end slider1 */

section#sectionInfo2{
    width: 100%;
    height: 30.3vw;
    background-image: url(assets/svgs/info2.svg);
    background-repeat: no-repeat;
    background-size: 68.41%;
    background-position: 50% 70%;
    max-height: 364px;
}

/* end section info2 */

section#sectionSocial{
    height: 63vw;
    position: relative;
    max-height: 756px;
}

#textScrollContainer .slogan2{
    height: 23%;
    width: 120%;
    background-image: url(assets/svgs/slogan1spaces2.svg);
    background-repeat: repeat-x;
    background-size: cover;
    margin: 2% -2%;
}

#socialKing{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(assets/imgs/reySocial.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
}

.videosSocial{
    position: absolute;
    width: 33.33%;
    height: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#videoLeft{
    left: 0;
}

#videoRight{
    right: 0;
}

.containerVideo{
    aspect-ratio: 9/16;
    width: 50%;
    background-color: rgb(0, 0, 0);
    border-radius: 1.5vw;
    box-shadow: 5px 5px;
    overflow: hidden;
}

/* end social */

section#ourValues{
    width: 100%;
    height: 63.4vw;
    margin-bottom: 4vw;
    max-height: 761px;
}

#fotoRey{
    width: 50%;
    height: 100%;
    background-image: url(assets/imgs/FotoRey-100.jpg);
    float: right;
    border-radius: 1.5vw;
    background-position: 50% 54%;
    background-size: cover;
}

#containerValues{
    width: 50%;
    height: 100%;
}

#tituloWrapper{
    width: 100%;
    height: 45.78%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#wrapperCopyRey{
    width: 100%;
    height: 10.5%;
}

#menuValues{
    width: 100%;
    height: 43.72%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tituloContainer{
    height: 90%;
    aspect-ratio: 1.15 / 1;
    position: relative;
}

#linesRey{
    position: relative;
    width: 100%;
    height: 100%;
    /* background-image: url(assets/svgs/lines.svg); */
}

#linesRey>svg{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

#reyARey{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(assets/svgs/DeReyARey.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

#wrapperCopyRey{
    font-family: 'lemonmilkbold';
    font-size: calc(1.7em + ((1vw - 20px) * 1));
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#containerMenuValues{
    height: 79.39%;
    aspect-ratio: 1.5 / 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.btnMenuValues{
    height: 46%;
    aspect-ratio: 1.5 / 1;
    background-color: rgb(255, 255, 255);
    border-radius: 1vw;
    cursor: pointer;
}

.iconMenuValues{
    width: 100%;
    height: 60%;
}

.textMenuValues{
    width: 100%;
    height: 40%;
    font-family: 'lemonmilkregular';
    font-size: calc(1.5em + ((1vw - 20px) * 1));
    text-align: center;
    color: rgba(0, 0, 0, 0.0);
}

.textMenuValues span{
    font-family: 'lemonmilkbold';
}

#btnConociendo{
    /* background-image: url(assets/svgs/iconMV1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%; */
    background-image: url(assets/imgs/btnConociendo.png);
    background-size: cover;
}

#btnPueblo{
    /* background-image: url(assets/svgs/iconMV2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35%; */
    background-image: url(assets/imgs/btnPueblo.png);
    background-size: cover;
}

#btnRey{
    /* background-image: url(assets/svgs/iconMV3.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%; */
    background-image: url(assets/imgs/btnReyes.png);
    background-size: cover;
}

#btnViva{
   /*  background-image: url(assets/svgs/iconMV4.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%; */
    background-image: url(assets/imgs/btnViva.png);
    background-size: cover;
}

#btnConociendo:hover
{
    background-image: url(assets/imgs/btnConociendoActive.png);
    background-size: cover;
}
#btnPueblo:hover
{
    background-image: url(assets/imgs/btnPuebloActive.png);
    background-size: cover;
}
#btnRey:hover
{
    background-image: url(assets/imgs/btnReyActive.png);
    background-size: cover;
}
#btnViva:hover
{
    background-image: url(assets/imgs/btnVivaActive.png);
    background-size: cover;
}

/* .btnMenuValues:hover{
    background-color: black;
} */

/* .btnMenuValues:hover .textMenuValues{
    color: white;
} */

#containerValuesInfo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.slidesValue{
    position: absolute;
    font-family: 'lemonmilkregular';
    color: aliceblue;
    width: 70%;
    aspect-ratio: 1.64/1;
    background-color: #1c1c1c;
    border: 8px solid #e1750e;
    border-radius: 3vw;
}

.slidesValue span{
    font-family: 'lemonmilkbold';
}

.slidesValue .iconSV{
    width: 100%;
    height: 39.29%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 21%;
}

#slideConociendo .iconSV{
    background-image: url(assets/svgs/iconMV1.svg);
}

#slidePueblo .iconSV{
    background-image: url(assets/svgs/iconMV2.svg);
}

#slideRey .iconSV{
    background-image: url(assets/svgs/iconMV3.svg);
    background-size: 18%;
}

#slideViva .iconSV{
    background-image: url(assets/svgs/iconMV4.svg);
    background-size: 17%;
}

.slidesValue .titlesSV{
    width: 100%;
    height: 10.04%;
    font-size: x-large;
    text-align: center;
    box-sizing: border-box;
    padding-top: 1vw;
}
.slidesValue .infoSV{
    width: 100%;
    height: 50.67%;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding: 0 3vw;
    font-size: 0.9em;
    justify-content: center;
}

.btnCerrarSV{
    position: absolute;
    top: 2vw;
    right: 2vw;
    aspect-ratio: 1/1;
    width: 4%;
    background-image: url(assets/svgs/cerrarValue.svg);
    cursor: pointer;
    background-repeat: no-repeat;
}

/* end ourValues */

section#sectionContact{
    width: 100%;
    height: 67.3vw;
    background-color: white;
    max-height: 808px;
}

#contactoUpper{
    width: 100%;
    height: 82%;
    box-sizing: border-box;
    padding: 5.5% 4%;
    display: flex;
    justify-content: center;
}

#containerBuzon{
    width: 100%;
    height: 100%;
    background-image: url(assets/imgs/buzonContacto.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    position: relative;
    max-width: 1084px;
}

#titleBuzon{
    position: absolute;
    width: 47%;
    aspect-ratio: 2.7/1;
    background-image: url(assets/svgs/reyEscucha.svg);
    background-repeat: no-repeat;
    left: 0;
    top: 21%;
}

#promesaBuzon{
    position: absolute;
    aspect-ratio: 3/2;
    width: 12.5%;
    background-image: url(assets/svgs/promesaEscucha.svg);
    background-repeat: no-repeat;
    right: 12.4%;
    bottom: 2%;
}

#botonBuzon{
    position: absolute;
    aspect-ratio: 5.6/1;
    background-image: url(assets/svgs/btnContacto.svg);
    background-repeat: no-repeat;
    width: 31%;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

#contactoLower{
    box-sizing: border-box;
    padding: 0% 4%;
    font-family: 'lemonmilkregular';
    font-size: calc(1.5em + ((1vw - 20px) * 1));
    max-width: 1084px;
    margin: 0 auto;
}

#contactoLower span{
    font-family: 'lemonmilkbold';
}

/* end contacto */

footer{
    width: 100%;
    height: 12.25vw;
    box-sizing: border-box;
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 0 4vw;
    font-family: 'lemonmilkregular';
    max-height: 147px;
}

footer span{
    font-family: 'lemonmilkbold';
}

.socialIcons{
    width: 5vw;
    aspect-ratio: 1/1;
}

#socialLinks{
    display: flex;
    align-items: center;
}

#socialLinks div{
    margin-left: 0.8vw;
}

#socialContainer{
    display: flex;
    flex-direction: row;
}

#fbIcon{
    background-image: url(assets/svgs/iconFb.svg);
    background-repeat: no-repeat;
    background-position: center;
}

#inIcon{
    background-image: url(assets/svgs/iconInsta.svg);
    background-repeat: no-repeat;
    background-position: center;
}

#ttIcon{
    background-image: url(assets/svgs/iconTiktok.svg);
    background-repeat: no-repeat;
    background-position: center;
}

#txtLegal, #followUs{
    font-size: calc(1.4em + ((1vw - 20px) * 1));
}

/* end footer */

#fixedMenu{
    position: fixed;
    bottom: 1vw;
    /*margin: 0 auto;
     width: 42vw;
    aspect-ratio: 11.83 / 1;
    left: 28vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between; */
    display: flex;
    gap: 2vw;
    width: 35%;
}



.menu-mobile {
    display: none;
}

.menu-toggle-checkbox {
    display: none;
}

.fixedButtons {
    cursor: pointer;
}

/* FORMULARIOS */
.contact-form-container {
    display: none;
    position: fixed;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32%;
    padding: 20px;
    background-color: #1d1d1b;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: fromBottomForm;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
}

.reservacion-form-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32%;
    padding: 20px;
    background-color: #1d1d1b;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: fromBottomForm;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
}

#firstStep {
    display: block;
}

#secondStep {
    display: none;
}

.contact-form h2 {
    font-family: 'lemonmilkbold';
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.contact-form label, .reservacion-form label {
    display: block;
    margin-bottom: 5px;
    font-family: 'lemonmilklight';
    color: white;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.reservacion-form input,
.reservacion-form select,
.reservacion-form textarea {
    width: calc(100% - 20px); /* Para dejar espacio para el padding */
    padding: 10px;
    margin-bottom: 15px;
    color: #494949;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px; /* Ajuste del tamaño de fuente */
    font-family: 'futura';
}

.reservacion-form #hora {
    width: 100%;
}

.checkbox-section {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 20px;
}

.reservacion-form #labelNoticias {
    width: 80%;
}
.reservacion-form #noticias {
    width: 20%;
    height: 35px;
    cursor: pointer;
}

#secondStep #fecha {
    cursor: pointer;
}

.contact-form textarea, .reservacion-form textarea {
    resize: none; /* Para evitar el redimensionamiento manual del área de texto */
}

.button-group {
    display: flex;
    justify-content: center;
}

.button-group button {
    padding: 10px 20px;
    border: none;
    background-color: white;
    color: #525252;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px; /* Ajuste del tamaño de fuente en botones */
}

.button-group button[type="submit"]:hover {
    background-color: #4cae4c;
    color: white;
}

.close-group {
    justify-content: flex-end;
    margin-bottom: 20px;
}

.button-group button[class="close"] {
    background-color: #c9302c;
}

.cerrar-button {
    display: none;
    width: 100%;
    opacity: 0;
    justify-content: center;
    padding: 10px 15px;
    border: none;
    background-color: #1d1d1b;
    border-radius: 10px;
    cursor: pointer;
    animation: fromBottomClose 1s forwards;
    animation-delay: 0.5s;
    animation-timing-function: ease-in-out;
}

.cerrar-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 1vw;
    border-radius: 5px;
    font-family: 'futura';
}

.cerrar-button:hover {
    background-color: #c9302c;
}

.cerrar-button img {
    width: 50%;
}

#wrapperVideosLanding{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

#videoLanding{
    border: 3px solid rgb(37, 38, 35);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    aspect-ratio: 966 / 542;
    position: relative;
}

#closeVideos{
    position: absolute;
    top: 1vw;
    right: 1vw;
    aspect-ratio: 1/1;
    width: 3vw;
    background-image: url(assets/svgs/btnCerrarVideoldpi.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@keyframes fromBottomClose {
    from {
        transform: translate(0, 200%);
        opacity: 0;
    }
    to {
        transform: translate(0, 0%);
        opacity: 1;
    }
}

@keyframes fromBottomForm {
    from {transform: translate(-50%, 100%);}
    to {transform: translate(-50%, -50%);}
}


/* media queries */
@media (min-width: 1280px) {

    #upperInfo{
        background-size: 48%!important;
    }

    .subMenuManjares{
        aspect-ratio: 1 / 0.3;
        background-size: cover!important;
    }
    
}

@media (max-width: 1100px) {

    #closeVideos{
        width: 8vw;
    }

    #menu-desktop{
        display: none;
    }

    section#sectionInfo1 {
        height: 110vw;
        max-height: unset;
        height: 50vw;
    }

    section#sectionInfo1 #upperInfo{
        height: 55%;
    }

    section#sectionInfo1 #lowerInfo{
        height: 55%;
        width: 80%;
        margin: 0 auto;
        display: none;
    }

    section#sectionSocial{
        height: 100vw;
    }

    #videoLeft{
        left: 33%;
        transform: scale(2.2);
    }

    #videoRight{
        display: none;
    }
    
    section#ourValues{
        height: 168vw;
        max-height: unset;
    }

    #fotoRey{
        width: 100%;
        height: 50%;
    }

    #containerValues{
        width: 50%;
        height: 50%;
        margin: auto;
    }

    #promesaBuzon{
        right: unset;
        left: 18vw;
        bottom: 22%;
    }

    #botonBuzon{
        left: unset;
        right: 0;
        width: 50%;
    }

    #fixedMenu{
        width: 55vw;
    }

    #menu-desktop {
        display: none;
    }

    .menu-hamburguesa {
        position: absolute;
        top: 0;
        right: 3%;
        width: 6.2%;
        height: 6.1vw;
        background-image: url(./assets/svgs/movil/menuMovil.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        cursor: pointer;
    }

    .menu-mobile {
        overflow: hidden;
        display: flex; /* Initially hidden */
        justify-content: center;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: #222222;
        z-index: 1000;
        transform: translateX(100%); /* Start off-screen */
    }

    .list-wrapper {
        width: 41%;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .list-wrapper > .btnMenuMob:nth-child(2) {
        width: 100%;
        aspect-ratio: 28 / 9;
        background-image: url(assets/svgs/movil/menu-cometodo-mobile.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 80%;
        animation-name: fromRight;
        animation-timing-function: ease-in-out;
        animation-duration: 2s;
        transform: translate(0%, 0);
    }

    .list-wrapper > .btnMenuMob:nth-child(3) {
        width: 100%;
        aspect-ratio: 28 / 9;
        background-image: url(assets/svgs/movil/menu-carta-mobile.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 80%;
        animation-name: fromLeft;
        animation-timing-function: ease-in-out;
        animation-duration: 2s;
        transform: translate(0%, 0);
    }

    .list-wrapper > .btnMenuMob:nth-child(4) {
        width: 100%;
        aspect-ratio: 28 / 9;
        background-image: url(assets/svgs/movil/MMBebidas.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60%;
        animation-name: fromRight;
        animation-timing-function: ease-in-out;
        animation-duration: 2s;
        transform: translate(0%, 0);
    }

    .list-wrapper > .btnMenuMob:nth-child(5) {
        width: 100%;
        aspect-ratio: 28 / 9;
        background-image: url(assets/svgs/movil/MMInfantil.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        animation-name: fromLeft;
        animation-timing-function: ease-in-out;
        animation-duration: 2s;
        transform: translate(0%, 0);
    }

    .list-wrapper > .btnMenuMob:nth-child(6) {
        width: 100%;
        aspect-ratio: 28 / 9;
        background-image: url(assets/svgs/movil/MMReinos.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60%;
        animation-name: fromRight;
        animation-timing-function: ease-in-out;
        animation-duration: 2s;
        transform: translate(0%, 0);
    }

    .list-wrapper > .btnMenuMob:nth-child(7) {
        width: 100%;
        aspect-ratio: 28 / 9;
        background-image: url(assets/svgs/movil/MMContacto.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 90%;
        animation-name: fromLeft;
        animation-timing-function: ease-in-out;
        animation-duration: 2s;
        transform: translate(0%, 0);
    }
 
    .logoMob {
        width: 100%;
        height: 14.5%;
        background-image: url(./assets/svgs/logoSanPetter.svg);
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: 50%;
        animation: scaling;
        animation-timing-function: ease-in-out;
        animation-duration: 5s;
        scale: 1;
    }

    .btnMenuMob {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .btnMenuMob img {
        width: 100%;
    }

    .closeIcon {
        width: 100%;
        height: 8%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #closeMenu {
        cursor: pointer;
        animation: fromBottom;
        animation-timing-function: ease-in-out;
        animation-duration: 2.3s;
        transform: translate(0, 0%);
    }

    .closeIcon img {
        width: 11%;
        height: 29%;
    }

    section#sectionSlider1 {
        margin-top: 0vh;
    }

    footer{
        width: 100%;
        height: 24vw;
        box-sizing: border-box;
        display: flex;
        align-content: flex-start;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 4vw;
        font-family: 'lemonmilkregular';
        max-height: 147px;
        padding-top: 3vh;
    }

    #txtLegal{
        margin-top: 1vh;
    }

    .reservacion-form-container, .contact-form-container {
        width: 50%;
    }

    .reservacion-form-container {
        top: 45%;
    }

    .contact-form-container {
        top: 55%;
    }

    .contact-form label, .reservacion-form label {
        font-size: calc(1.8em + ((1vw - 20px) * 1));
    }

    .reservacion-form select, .reservacion-form input, .reservacion-form textarea, .contact-form select, .contact-form input, .contact-form textarea {
        font-size: calc(1.7em + ((1vw - 20px) * 1));
    }

    .reservacion-form input, .reservacion-form select, .reservacion-form textarea {
        padding: 5px;
    }
    
    .checkbox-section {
        margin-bottom: 10px;
    }
    
    .reservacion-form #noticias {
        width: 20%;
        height: 20px;
    }

    .button-group button {
        padding: 8px 20px;
    }

    #sectionSocial #portadaContainer {
        opacity: 0;
    }
}

@media (max-width: 400px){
    .menu-hamburguesa {
        top: 7vw;
        width: 10.2%;
        height: 10.1vw;
    }
    section#landing {
        height: 133vw;
    }
    section#priceTeaser {
        height: 83.5vw;
    }

    #teaserContainer {
        width: 132%;
    }
    .slidesValue {
        aspect-ratio: unset;
        padding: 30px;
    }
    .slidesValue .iconSV {
        height: 6.29vh;
        margin-bottom: 2vh;
    }

    .slidesValue .titlesSV {
        margin-bottom: 2vh;
    }

    .slidesValue .infoSV {
        font-size: 0.8em;
    }
    .reservacion-form-container, .contact-form-container {
        width: 80%;
    }
    #fixedMenu {
        width: 80vw;
    }
    .contact-form-container {
        top: 45%;
      }
}

@keyframes fromRight {
    from {transform: translate(150%, 0);}
    to {transform: translate(0%, 0);}
}

@keyframes fromLeft {
    from {transform: translate(-150%, 0);}
    to {transform: translate(0%, 0);}
}

@keyframes fromBottom {
    from {transform: translate(0, 300%);}
    to {transform: translate(0, 0%);}
}

@keyframes scaling {
    0%   {scale: 0; opacity: 0;}
    25%  {scale: 1; opacity: 1;}
}