@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  background: linear-gradient(to left, rgba(254, 246, 184, 0.15), rgba(217, 196, 226, 0.15));
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

.destacado {
  background-color: #e9ecef;
  padding: 10px;
  border-left: 5px solid #007bff;
}

.btn-dark {
  border-radius: 12px;
}

.navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  padding: 22px !important;
}

#mainContainer {
  margin-top: 70px;
}

#formularioSeccion {
  top: 43px;
  right: 14px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  width: 292px;
}

.error {
  color: red;
  font-weight: 400;
  font-size: 0.8rem;
}

section {
  padding: 100px 0;
}

/* Sección del carrusel */
#miCarrusel {
  border-radius: 30px;
}

#miCarrusel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 90px 30px;
  height: auto;
  border-radius: 30px;
}

@media (max-width: 599px) {
  #miCarrusel .item {
    padding: 90px 40px;
  }
}

#miCarrusel .item img {
  width: 300px;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.02);
}

.owl-stage-outer {
  border-radius: 30px;
}

.owl-carousel .owl-item.center .item img {
  transform: scale(1.2);
}

.owl-carousel .owl-item:not(.center) .item img {
  transform: scale(0.9);
  opacity: 0.7;
}

.owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.owl-nav button {
  width: 30%;
  opacity: 0;
  height: 100% !important;
}


/* Sección de las animaciones */

#animaciones article {
  padding: 20px;
  border-radius: 20px;
  transition: transform 0.3s ease;
  border: 1px solid #e9e9e9;
  background-color: #fff;
}

#animaciones article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05), 0 6px 6px rgba(0, 0, 0, 0.02);
}

/*  Sección de la galería */

.galeria-img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 6px solid #fff;
  box-sizing: border-box;
}

.galeria-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

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