@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");
/*VARIABLES*/
* {
  font-family: "Dancing Script";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  background-color: rgba(177, 4, 4, 0.904);
  color: rgba(255, 255, 255, 0.932);
  overflow-x: hidden;
  padding-top: 120px;
}
body h1 {
  text-transform: uppercase;
}
body ul {
  list-style: none;
}
body a {
  text-decoration: none;
}

.menu_general {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 10px;
  font-size: 24px;
  background-color: rgba(177, 4, 4, 0.904);
  color: rgba(255, 255, 255, 0.932);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Muy importante para que esté por encima de todo */
}
.menu_general .logo {
  width: 100%;
  max-width: 100px;
}
.menu_general ul {
  display: flex;
  gap: 30px;
}
.menu_general a {
  color: rgba(255, 255, 255, 0.932);
}
.menu_general a:hover {
  outline: 2px solid rgba(255, 255, 255, 0.932);
  background-color: rgba(177, 4, 4, 0.904);
  color: rgba(255, 255, 255, 0.932);
  border-radius: 5px;
}

/*FOOTER*/
.footer_titulo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.932);
  position: static;
  margin-top: 20px;
}
.footer_titulo h2 {
  font-size: 1.5rem;
}
.footer_titulo ul {
  display: flex;
  gap: 20px;
}
.footer_titulo ul img {
  width: 40px;
  height: auto;
}

/*MAIN*/
.portal_principal {
  display: flex;
  justify-content: center;
  padding: 50px;
  background-image: url(../img/portada_pagina.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.portal_texto {
  text-align: center;
}
.portal_texto h2 {
  font-size: 50px;
  color: rgba(255, 255, 255, 0.932);
  text-transform: uppercase;
}
.portal_texto button {
  font-family: "Playwrite Australia QLD";
  font-size: 1.2rem;
  background-color: rgba(248, 171, 71, 0.685);
  margin: 40px;
  padding: 20px;
  font-style: italic;
  font-weight: bold;
}
.portal_texto button:hover {
  background-color: rgba(255, 145, 0, 0.685);
  color: rgba(255, 255, 255, 0.932);
}
.portal_texto a {
  color: rgba(255, 255, 255, 0.932);
}

/*Carousel*/
.carousel-inner {
  margin: 10px;
}
.carousel-inner h2 {
  font-size: 3rem;
}

.carousel-item {
  margin: 10px;
}
.carousel-item img {
  width: 50%;
  height: auto;
}

/*FIN Carousel*/
.delivery {
  margin: 0;
  animation: delivery 2s ease-in-out infinite alternate;
}
.delivery img {
  width: 100%;
  height: auto;
}

@keyframes delivery {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

/*# sourceMappingURL=estilos.css.map */
