/*indice de estilos
  001 - generales
  002 - boton de whatsapp
  003 - redes sociales
  004 - header
  005 - slider
  006 - inicio main informacion
  007 - inicio main ventajas
  008 - inicio mail testimonios
  009 - footer
  010 - paquetes portada
  011 - paquetes packets
  012 - pauqtes condiciones
  015 - menu infantil
  017 - pagina especialidades 
*/

/* 001 - generales */

html {
  box-sizing: border-box;
  font-family: "century gothic", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
}
  
*,
*::after,
*::before {
  box-sizing: inherit;
}
  
body {
  margin: 0;
  padding: 0;
}

a{
  margin: 0;
  text-decoration: none;
}

h1{
  width: 100%;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 900;
  padding-top: 50px;
}

h1 em{
  color: #da8001;
}

h2{
  text-align: center;
  color: #da8001;
  font-size: 3rem;
}

main{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

ul{
  list-style-type: none;
}

.front{
  width: 100%;
  height: 60vh;
  position: relative;
}

/* 002 - boton de whatsap */

.whatsapp_container{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  z-index: 980;
  bottom: 10px;
}

.whatsapp_container a img{
  width: 100%;
}

.whatsapp_container:hover{
  transform: scale(1.3);
  transition: 0.4s;
}


/* 003 - redes sociales */

.social_container{
  display: inline-flex;
  flex-direction: column;
  width: 50px;
  height: 100px;
  position: fixed;
  bottom: 10px;
  z-index: 960;
}

.social_items{
  flex-grow: 1;
  margin: 0;
}

.social_items img{
  width: 100%;
  height: auto;
}

.social_items:hover{
  transform: scale(1.3);
  transition: 0.4s;
}

/* 004 - header */
header {
  width: 100%;
  overflow: hidden;
}

header nav {
  width: 100%;
  height: 70px;
  background: #ff8a46;
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 950;
}

.icono {
  display: none;
}

.enlaces {
  display: flex;
  height: 100%;
  width: 60%;
  justify-content: space-evenly;
  align-items: center;
}

.enlaces a {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
  transition: 0.7s ease-out;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
}

.enlaces a:hover{
  border-top: 2px solid #680606;
  border-bottom: 2px solid #680606;
}

nav .logo {
  height: 85%;
  margin-left: 60px;
  margin-top: 10px;
}

nav .logo img {
  object-fit: cover;
  height: inherit;
}

.enlaces .activo{
  color: #680606;
}


@media screen and (max-width:950px) {

  header nav{
      justify-content: space-evenly;
  }

  nav .logo {
      margin-left: 30px;
  }

  .icono {
      display: flex;
      justify-content: center;
      height: 70px;
      align-items: center;
      color: #fff;
      background: transparent;
      padding: 20px;
      z-index: 100;
      cursor: pointer;
      margin-right: 40px;
      font-weight: 600;
  }

  .enlaces {
      position: fixed;
      height: 100vh;
      right: 0;
      width: 100%;
      font-size: 2rem;
      flex-direction: column;
      transition: all 1s ease;
      background: #f46b45;
      /* fallback for old browsers */
      background: -webkit-linear-gradient(to right, #680606, #f82424);
      /* Chrome 10-25, Safari 5.1-6 */
      background: linear-gradient(to right, #680606, #f82424);
      /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  }

  .uno {

      -webkit-clip-path: circle(0% at 100% 0%);
      clip-path: circle(0% at 100% 0%);

  }

  .dos {

      -webkit-clip-path: circle(150% at 100% 0%);
      clip-path: circle(150% at 100% 0%);

  }
}

@media screen and (max-width:400px){
  nav .logo{
      margin-left: 20px;
  }
  .icono{
      margin-right:20px;
  }
}

/* 005 - slider */

.carousel{
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.carousel .list .item{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.carousel .list .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .list .item .content{
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .title{
  font-size: 5em;
  font-weight: bold;
  color: #f1683a;
}

.carousel .list .item .des{
  font-size: 1.2em;
  font-weight:500;
  color: #eee;
}

.carousel .list .item .buttons{
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}
.carousel .list .item .buttons a{
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  letter-spacing: 3px;
  font-family: Poppins;
  font-weight: 500;
  color: #000;
}
.carousel .list .item .buttons a:nth-child(2){
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}
/* thumbail */
.thumbnail{
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 30%;
  overflow: hidden;
  z-index: 100;
  display: flex;
  gap: 20px;
}
.thumbnail .item{
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}
.thumbnail .item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.thumbnail .item .content{
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.thumbnail .item .content .title{
  font-weight: 500;
}
.thumbnail .item .content .description{
  font-weight: 300;
}
/* arrows */
.arrows{
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.arrows button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: .3s;
}
.arrows button:hover{
  background-color: #fff;
  color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
  z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
  to{
      transform: translateY(0px);
      filter: blur(0px);
      opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .title{
  animation-delay: .6s!important;
}

.carousel .list .item:nth-child(1) .content .des{
  animation-delay: .8s!important;
}

.carousel .list .item:nth-child(1) .content .buttons{
  animation-delay: 1s!important;
}


/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
  to{
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1){
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
  z-index: 100;
}
@keyframes showThumbnail{
  from{
      width: 0;
      opacity: 0;
  }
}
.carousel.next .thumbnail{
  animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
  from{
      transform: translateX(150px);
  }
}

/* running time */

.carousel .time{
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time{
  animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
  from{ width: 100%}
  to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame{
  to{
      width: 150px;
      height: 220px;
      bottom: 50px;
      left: 50%;
      border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1){
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
  pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
  animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
  to{
      transform: translateY(-150px);
      filter: blur(20px);
      opacity: 0;
  }
}
@media screen and (max-width: 678px) {
  .carousel .list .item .content{
      padding-right: 0;
  }
  .carousel .list .item .content .title{
      font-size: 30px;
  }
}

@media screen and (max-width:580px){
  .thumbnail{
    display: none;
  }
}

/* 006 - inicio main informacion */

.information{
  background-color: #aa1919;
  width: 100%;
}

.information h2{
  color: #fff;
  border-bottom: 3px double #fff;
}

.article_information{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background-color: #aa1919;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
}

.text_information{
  font-size: 1.3rem;
  color: #fff;
  padding-right: 25px;

}

.image_information{
  border-radius: 50%;
  padding: 0;
  min-width: 40%;
}

.image_information img{
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 3px 3px 5px #000;
}

@media screen and (max-width:700px){

  .article_information{
    flex-direction: column;
  }

  .text_information{
    padding: 0;
    text-align: justify;
  }
  
}

/* 007 - inicio main ventajas */

.advantages{
  background-color: #fff;
}

.advantages h2{
  border-bottom: 3px double #aa1919;
  color: #aa1919;
}

.article_advantages{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}

.article_advantages img{
  width: 90%;
  border-radius: 25px;
  box-shadow: 0 0 15px #000;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

/*008 - inicio main testimonias */

.testimonial_container{
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.testimonial_container h2{
  text-align: center;
  color: #da8001;
  font-size: 3rem;
}

.testimonial_slider{
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}

.testimonial_item{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
  color: #000;
}

.testimonial_item p{
  width: 70%;
  text-align: justify;
}

.testimonial_item img{
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;

}

/* 009 - footer */

footer{
  background-color: #eba817;
  margin-bottom: 0;
  color: #fff;
}

.footer_flex{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}

.footer_flex_item{
  margin: 8px;
}

.copyright{
  width: 100%;
  background-color: #d09310;
  border-top: 1px solid #fff;
  color: #fff;
  padding: .4rem;
}
.copyright p{
  text-align: center;
}

/*  010 - paquetes portada */

.front_packet{
  background-image: url(../img/front/front_packet.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.h1_packet{
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 30%;
  background-color: #00000050;
  border: none;
  color: #fff;
}

/* 011 - paquetes packets */

.packets{
  width: 100%;
  padding: 15px 10%;
}

.packets_container{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.packets_items img{
  width: 100%;
}

.packets_items{
  width: 30%;
  text-align: center;
  padding: 10px;
  background-color: #da8001;
  color: #fff;
  border-radius: 0 0 20px 20px;
}


.h3_packets{
  background-color: #0008;
  padding: 5px;
}

.list_packet{
  padding: 0;
}

@media screen and (max-width:870px){

  .packets_container{
    flex-direction: column;
    margin-bottom:30px;
    justify-content: center;
    align-items: center;
  }

  .packets_items{
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }
  
}

/* 012 - paquetes condiciones */

.conditions{
  width: 100%;
  margin-top: 40px;
  padding: 20px 0;
}

.conditions_list{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style-type: square;
}

.text_client{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
  font-weight: 900;
  color: #aa1919;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 20px;
  text-align: center;
}

/* 013 - menu portada */

.front_menu{
  background-image: url(../img/front/front_menu.jpg);
  background-size: cover;
  background-attachment: fixed;
}

.h1_menu{
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 30%;
  background-color: #00000050;
  border: none;
  color: #fff;
}

/* 014 - menú menu_eat */

.menu_eat{
  width: 100%;
  padding: 15px 10%;
}

.menu_grid{
  display: grid;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-column-gap: 10px;
}

.menu_item{
  text-align: center;
}

.menu_item h3{
  background-color: #aa1919;
  padding: 5px;
  color: #fff;
}

.ul_menu_eat{
  padding: 2px 0;
}

/* 015 - menu infantil */

.menu_kids{
  width: 100%;
  height: auto;
  padding: 10px 0;
}

.article_kids{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  background-color: #aa1919;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
}

.ul_kids{
  font-size: 1.3rem;
  color: #fff;
  padding-right: 25px;
  list-style-type: disc;
  padding-left: 0;
  list-style: inside;

}

.image_kids{
  border-radius: 50%;
  padding: 0;
  min-width: 40%;
}

.image_kids img{
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 3px 3px 5px #000;
}

.text_kids{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
  font-weight: 900;
  background-color: #fff;
  color: #aa1919;
  padding: 10px;
  margin-bottom: 10px;
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width:600px){

  .article_kids{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
  }
  
}

/* 016 menu slider vegan */

.carrusel {
  height: 35vh;
  display: flex;
  align-items: center;
}

.carrusel-items {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 30px 0px;
}

.carrusel-item {
  min-width: 250px;
  max-width: 250px;
  height: 180px;
  outline: 2px solid black;
  cursor: pointer;
}

.carrusel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrusel-item:hover {
  transform: scale(1.2);
}

/* 017 - menu vegan */ 

.menu_vegan h2{
  border-bottom: 3px double #aa1919;
  color: #aa1919;
}

.ul_vegan{
  width: 80%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  font-size: 1.3rem;
  list-style-type: disc;
  padding-left: 0;
  list-style: inside;
}

/* 017 - pagina especialidades */ 

.front_especialidades{
  background-image: url(../img/front/font_especialidades.png);
  background-size: cover;
  background-attachment: fixed;
}

.pag_especialidades{
  width: 100%;
  padding: 15px;
}

.pag_especialidades_text{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
  color: #680606;
  font-weight: 400;
}

.ul_pag_especialidades{
  margin-left: 15px;
  font-weight: 600;
  color: #aa1919;
}

/* 017 - pagina postres */ 

.front_postres{
  background-image: url(../img/front/front_postres.jpg);
  background-size: cover;
  background-attachment: fixed;
}

/* 017 - pagina contacto */ 


.landing-header{
  position: relative;
  width: 100%;
  padding: 80px 10px 60px;
  background-image: url(../img/contacto-header.webp);
  background-position: center;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media screen and (max-width:800px){
  .landing-header{
      height: auto;
      background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(3,18,119,1) 100%);
  }
}

.landing-header-flex{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.landing-header-item{
  width: 45%;
  gap: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.landing-header-item p{
  font-size: 1.6rem;
  font-weight: 600;
  color: #030660;
}

.landing-header-item p span{
  color: #0ca5c4;
}

.landing-header-item h1{
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  align-self: start;
}

.landing-header-item img{
  width: 90%;
}

.contac-header-item img{
  width: 75%;
}

@media screen and (max-width: 800px){
  .landing-header-flex{
      flex-direction: column-reverse;
  }

  .landing-header-item{
      width: 90%;
  }
}


.intro-contacto{
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  padding: 40px 25px;
  line-height: 1.5;
  color: #898989;
}

.contacto-form{
  padding: 45px 20px;
  background-color: #001a2b;
}

.contac-form-flex{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.form-section{
  width: 50%;
  min-width: 330px;
  padding: 20px;
  background-color: #1d2b3a;
  border-radius: 25px;
}

.form-style{
  display: flex; 
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 15px;
  margin-top: 20px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
-webkit-appearance: none; 
margin: 0; 
}

.box-input,
.box-textarea{
  position: relative;
  width: 100%;
}

.textarea{
  height: 8rem;
}

.box-input .input-style,
.box-textarea .textarea{
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #0ca5c4;
  background-color: transparent;
  border-radius: 5px;
  outline: none;
  color: #fff;
  font-size: 1rem;
  resize: none;
}

.box-input label,
.box-textarea label{
  position: absolute;
  left: 0;
  padding: 10px;
  pointer-events: none;
  font-size: 1rem;
  color: #ffffff55;
  transition: 0.5s;
}

.box-input .input-style:valid ~ label,
.box-input .input-style:focus ~ label,
.box-textarea .input-style:focus ~ label{
  color: #1d2b3a;
  transform: translateX(10px) translateY(-5px);
  font-size: 0.8rem; 
  padding: 0 10px; 
  background-color: #0ca5c4;
  letter-spacing: 2px;
  border-radius: 3px;
}

.option-form{
  color: #0ca5c4;
}

legend{
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  color: #fff;
}

.contacto-section{
  width: 40%;
  min-width: 320px;
}

.contacto-info{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 0;
  align-items: flex-start;
}

.contacto-info-item{
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.contacto-info-item i{
  color: #fff;
  font-size: 1.5rem;
  padding: 10px;
}

.contacto-datos-container{
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 0;
}

.contacto-datos-titulo{
  font-weight: 600;
  letter-spacing: 2px;
}

.box-submit input{
  background-color: transparent;
  padding: 12px 30px;
  color: #0ca5c4;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: 600;
}

.validacion-input{
  position: absolute;
  color: #fff;
  bottom: -25px;
  left: 20px;
  display: none;
}

.validacion-active{
  display: block;
}

.honeypot-container {
  margin-bottom: 16px;
}

.label-honey{
  color: #2232467d;
}

#honeypot{
  opacity: 0.01;

}


/* ----- -----  Estilos para Validacion ----- ----- */
.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
	color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: #bb2929;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
	border: 3px solid #bb2929;
}


/* ----- -----  Mediaqueries ----- ----- */
@media screen and (max-width: 800px) {
	.formulario_contenido {
		grid-template-columns: 1fr;
	}

	.formulario__grupo-terminos, 
	.formulario__mensaje,
	.formulario__grupo-btn-enviar {
		grid-column: 1;
	}

	.formulario__btn {
		width: 100%;
	}
}

/* 018 - gracaias */ 
.gracias{
  background-color: #680606;
  height: 100vh;
}

.contenedor_gracias{
  margin-top: 35px;
  padding: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.text_gracias{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-align: justify;
  font-size: 1.6rem;
  font-weight: 600;
}

.img_gracias{
  height: 190px;
  width: auto;
  margin-top: 30px;
}

/* 019 - aviso de privacidad */

.privacidad_aviso{
  background-color: #680606;
  height: auto;
}

.contenedor_gracias{
  margin-top: 35px;
  padding: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.h3_aviso{
  color: #fff;
}

.contenedor_gracias .text_gracias{
  font-size: 1.3rem;
  font-weight: 300;
}

.flex_boton{
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.products_clic{
  margin: 25px auto;
  width: max-content;
  padding: 15px;
  background-color: #680606;
  color: #dededf;
  border-radius: 15px 0 15px 0;
  box-shadow: 3px 3px 3px #000;
  font-weight: 900;
  transition: .7s;
}

.products_clic:hover{
  background-color: #fff;
  border: 3px solid #680606;
  color: #dededf;
  border-radius: 0 15px 0 15px ;
  box-shadow: 3px 3px 3px #000;
  font-weight: 900;
  color: #da8001;
}

.recaptcha{
  margin-bottom: 25px;
}

/*-------------------------------------blog--------------------------*/

.port-blog{
  width: 100%;
  height: 70vh;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,91,151,1) 35%, rgba(0,91,151,1) 65%, rgba(0,0,0,1) 100%);
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: grab;
}

.port-blog-h1{
  position: relative;
  color: #fff;
  font-size: 8rem;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}

.port-blog img{
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 70%;
  object-fit: cover;
}

@media screen and (max-width:700px) {
  .port-blog-h1{
      font-size: 3rem;
  } 
}

/*--------------------blog-complit-----------------------*/

.blog-complit{
  width: 100%;
  padding: 20px 20px 20px 60px;
  margin-top: 50px;
}

.blog-flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.blog-principal{
  width: 70%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 30px;
  justify-content: center;
}

.blog-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px 15px;
  border-radius: 25px;
  border-bottom: 2px solid #680606;
  background-color: #f5f5f5;
}

.blog-figure{
  width: 100%;
  height: 300px;
  margin: 0;
}

.blog-figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 4px 4px 8px 1px #36363689;
}

.blog-h3{
  font-size: 1.2rem;
  margin: 20px auto;
  color: #d09310;
  font-weight: 800;
  text-align: center;
}

.blog-info{
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.blog-reusmen{
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: justify;
  padding: 0 10px;
  text-indent: 1rem;
  color: #848484;
}

.blog-liga{
  text-decoration: none;
  position: relative;
  background-color: #da8001;
  padding: 10px 30px;
  width: max-content;
  color: #fff;
  transform-style: preserve-3d;
  transition: ease-in-out 0.8s;
  border-radius: 16px;
  font-size: 0.8rem;
}

.blog-liga:hover{
  transform: rotateX(360deg);

}

.blog-liga-div{
  text-decoration: none;
  font-weight: 700;
  transform-style: preserve-3d;
  transform: perspective(25px) translateZ(12px);
}

.blog-liga::before{
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  right: 6px;
  bottom: 4px;
  border: 2px solid #680606;
  border-radius: 15px;
  transform-style: preserve-3d;
  transform: perspective(300px) translateZ(9px);
}

.blog-liga::after{
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 2px solid #680606;
  border-radius: 15px;
  transform-style: preserve-3d;
  transform: perspective(300px) translateZ(-12px);
}

/*--------------------blog-aside-----------------------*/

.blog-lateral{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 65px;
  width: 25%;
}

.blog-lateral::before{
  content: "";
  position: absolute;
  outline: 1px solid #680606;
  height: 100%;
  left: -15px;
}

.ultimas-noticias-h2, 
.proximos-articulos-h2{
  color: #fff;
  background-color: #da8001;
  padding: 25px 30px;
  border-radius: 0 50px 50px 0;
  width: 90%;
}

.ultimas-noticias-ul,
.proximos-articulosul{
  color: #6b6b6b;
  line-height: 1.5;
}

.aside-figure{
  width: 90%;
  align-self: center;
}

.aside-figure img{
  width: 100%;
}

.engagement{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.engagement-text{
  font-size: 1.5rem;
  line-height: 1.2;
  color: #680606;
  font-weight: 900;
}

.engagement-redes{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.engagement-redes-img{
  width: 70px;
  height: 70px;
}

.link-articulo:hover span{
color: #da8001;
}

.link-articulo:hover i{
  color: #0053a2;
  }

/*-------articulos del blog general----------*/

.port-articulos-blog{
  width: 100%;
  height: 350px;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,91,151,1) 35%, rgba(0,91,151,1) 65%, rgba(0,0,0,1) 100%);
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: grab;
}

.articulo-h1{
  color: #fff;
  font-style: italic;
  font-size: 3rem;
  font-weight: 900;
}

.articulo-de-Blog{
  width: 65%;
  padding: 10px 20px 10px 0;
}

.articulo-blog-h2{
  color: #680606;
  font-size: 2rem;
}

.articulo-blog-h3{
  color: #da8001;
  font-size: 1.7rem;
}

.articulo-blog-h4{
  color: #797979;
  font-size: 1.5rem;
}

.articulo-blog-text{
  font-size: 1.1rem;
  color: #575757;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}

.blog-img-float-left{
  border-radius: 0 50% 50% 0;
  width: 400px;
  height: 300px;
  object-fit: cover;
  float: left;
  shape-outside: circle(50%);
  margin: 25px 30px;
  margin-left: 0;
  opacity: .8;
}

.blog-img-float-rigth{
  border-radius: 50% 0 0 50%;
  width: 400px;
  height: 300px;
  object-fit: cover;
  float: right;
  shape-outside: circle(50%);
  margin: 25px 30px;
  margin-right: 0;
  opacity: .8;
}

@media screen and (max-width: 850px) {
  .blog-flex{
      flex-direction: column;
      align-items: center;
  }

  .articulo-de-Blog{
      width: 90%;
      padding: 10px;
  }

  .blog-principal{
      width: 100%;
  }

  .blog-lateral{
  width: 90%;
  }

  .blog-img-float-left,
  .blog-img-float-rigth{
      border-radius: 0;
      width: 100%;
      height: auto;
      shape-outside: none;
      float: none;
      margin: 10px auto;
  }

  .blog-complit{
      width: 100%;
      padding: 20px 5px;
      margin-top: 50px;
  }
  
}

.volver-text{
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  color: #888888;
  transition: 0.6s;
  animation: moveinicio 2s infinite;
  margin-top: 20px;
}

@keyframes moveinicio{
  0%{
      transform: translateX(20px);
      opacity: 0.5;
  }
  50%{
      transform: translateX(-20px);
      opacity: 1;
  }

  100%{
      transform: translateX(20px);
      opacity: 0.5;
  }
}

.landing-info-a {
  text-decoration: none;
  display: block;
  background-color: #da8001;
  border-radius: 25px;
  padding: 5px 20px;
  transition: .5s;
}

.landing-info-a:hover{
  background-color: transparent;
  outline: 2px solid #fff;
}

.landing-info-a .fa-whatsapp{
  margin-right: 15px;
  color: #fff;
}

.landing-info-a span{
  text-decoration: none;
  margin-right: 10px;
  color: #fff;
  font-weight: 600;
}


/*inicio cambios 05/05/24*/

.taquizas-descripcion{
  width: 50%;
  font-size: 1.5rem;
  min-width: 330px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.paquetes-taquizas, .reservar-evento{
  display: flex;
  justify-content: space-evenly;
  padding-top: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.revers{
  flex-direction: row-reverse;
}

.pt-img{
  min-width: 300px;
}

.pt-img img{
  width: 100%;
  object-fit: cover;
}

.pt-decription{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pt-h4{
  color: #da8001;
  font-size: 1.5rem;
}

.pt-link{
  padding: 5px 15px;
  outline: 1px solid #d09310;
  color: #da8001;
  font-weight: 900;
  transition: 0.3s;
}

.pt-precio{
  font-weight: 900;
  font-size: 1.3rem;
  color: #680606;
}

.pt-link:hover{
  padding: 5px 15px;
  background-color: #d09310;
  outline: none;
  color: #ffffff;
}

.galeria-grid{
  margin-top: 120px;
  padding: 30px 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 25px;
}

@media screen and (max-width: 850px){
  .galeria-grid{
    padding: 30px;
  }
}

.galeria-item{
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
}

.galeria-item img{
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: 0.6s;
}

.galeria-item:hover img{
  transform: scale(1.5);
}

.testimonios-text, .direccion-text{
  padding: 15px 35px;
  text-align: center;
  font-size: 1.7rem;
  color: #d09310;
  font-weight: 900;
}

.direccion{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tiempos-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  padding: 30px;
}

.tiempos-img{
  height: 230px;
  overflow: hidden;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  
}

.tiempos-img img{
  width: 90%;
  border-radius: 0 0 10px 10px;
  text-align: center;
  object-fit: cover;
}

.bg-menu-banquetes{
  position: relative;
}

.bg-menu-banquetes img{
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 150;
}

.bg-black-color{
  height: 100%;
  background-color: #000000dc;
  width: 100%;
  position: relative;
  z-index: 200;
}

.menu-banquetes-h2{
  color: #fff;
  padding-top: 50px;
  margin-top: 0;
}

.menu-banquetes-flex{
  display: flex;
  flex-wrap: wrap;
  padding: 10px 20px;
  align-items: flex-start;
}

.menu-banquetes-item{
  color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  margin: 0 10px;
}

.menu-banquetes-h3{
  color: #d09310;
  font-size: 1.7rem;
}

.menu-banquetes-ul{
  font-size: 1.2rem;
  padding: 0;
  text-align: center;
}