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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Cabecera (Marco negro) */
.marco-negro {
  width: 100%;
  background: black;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  height: 64px;
  justify-content: space-between;
}

.marco-negro img {
  max-width: 90px;
  height: auto;
}

.frase {
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin-left: auto;
}

/* Estilos del carrusel */
#carouselExample {
  flex: 1;
  width: 100%;
  height: calc(100vh - 180px);
  margin-bottom: 60px
}

.carousel-inner,
.carousel-item {
  height: 100%;
  background-color: black; /* Fondo negro */
}

.carousel-item img {
  height: 100%; /* Se ajusta a la altura del carrusel */
  object-fit: contain; /* Ajusta la imagen dentro del contenedor sin recortarla */
  object-position: center; /* Centra la imagen dentro del contenedor */
}

/* Estilos del footer */
footer {
  height: 60px;
  width: 100%;
  background: linear-gradient(90deg, #ffffff, #ec0202);
  background-size: 400% 400%;
  animation: gradientChange 7s ease infinite;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

footer img {
  width: 100px;
}

@keyframes gradientChange {
  0% {
      background-position: 0% 50%;
  }

  50% {
      background-position: 100% 50%;
  }

  100% {
      background-position: 0% 50%;
  }
}

.floating-button {
  position: fixed;
  bottom: 60px;
  width: 60px;
  height: 60px;
  border-radius: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp {
  right: 20px;
  background-color: #25D366;
}

.maps {
  right: 90px;
  background-color: #4285F4;
}

.floating-button img {
  width: 35px;
  height: 35px;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.frase {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}