@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import "https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css";


@font-face {
  font-family: leporsche;
  src: url("../fnt/leporsche.OTF");
}

.section {
  scroll-margin-top: 50px;
}

p.custom_font {
  font-family: leporsche;
}

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

li,
a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
}


.hero-body {
  background-image: url("../img/portada.webp");
  background-size: cover;
  background-position: center;
}

#hero1 {
  text-shadow: black 2px 2px 2px;
}

#boton-reserva {
  background-color: #FF0028;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
  font-family: leporsche;
  transition: all .2s
}

#boton-reserva:hover {
  background-color: #ff1639;
  transform: scale(1.05);
}

#botonWapp {
  background: #25D366;
  overflow: hidden;
}

#botonRappi {
  background: #FF4940;
  overflow: hidden;
}

@keyframes infiniteTransform {
  0% {
    transform: rotate(-20deg) translate(-540px, 0);
  }

  100% {
    transform: rotate(-20deg) translate(540px, 0);
  }
}

.botonAnimacion::before {
  content: "";
  position: absolute;
  height: 10rem;
  width: 15px;
  background: #f3f3f3;
  filter: blur(2px);
  opacity: .9;
  top: -60px;
  animation: infiniteTransform 4s ease-in-out infinite;
}



#banner {
  background-color: #FF0028;
  font-family: leporsche;
  box-shadow: 0px 4px 8px 0px;
}

#img-bebidas {
  width: 100%;
}

.navbar {
  background-color: white;
}

.navbar-item {
  color: black !important;
}

.navbar-menu {
  transition: all 300ms ease-in-out;
}

.navbar-end a {
  color: white;
}


.whatsapp {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  border-radius: 100%;
  background: #40C351;
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  z-index: 5;
}

.whatsapp-icon {
  width: 3rem;
  height: 3rem;
  color: #40C351;
}

.marcaagua {
  height: 50vh;
  filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
}

.swiper {
  max-width: 433px;
  max-height: 542px;
}

.logo {
  width: 200px;
}



#direccion {
  display: none;
}

/*.navbar-menu{
  transition: all 300ms ease-in-out;
}*/


@media only screen and (max-width: 500px) {
  #direccion {
    display: block;
    font-size: 1rem;
  }

  .logo {
    width: 0;
  }

  .navbar-brand {
    transition: all 100ms ease-in-out;
    border-radius: 1rem;
    border: solid red;
    border-width: 2px;
    margin: 4px 10px;
  }

}

#logoSvg {
  filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4)) drop-shadow(-3px -3px 2px rgb(0 0 0 / 0.4));
}

.gallery {
  columns: 120px;
  padding: 70px 0;
}

@media (width >=40rem) {
  .gallery {
    columns: 320px;
    padding: 70px 0;
  }

}

#divFb {
  max-width: 600px;
}



hr.center-diamond {
  background: #FF0028;
}

hr.center-diamond:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #FF0028;
  display: inline-block;
  border: 2px solid #FF0028;
  position: absolute;
  top: -5px;
  left: 50%;
  margin: 0 0 0 -3px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Opera, Chrome, and Safari */
}

#mensaje {
  position: relative;
}

#mensaje::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/favicon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(1) sepia(1) saturate(0%) opacity(.1);
  z-index: -1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}