/* ESTILOS GLOBALES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

.card {
  border-radius: 15px;
}

.mobile-price {
  bottom: 5px;
}

/* NAVBAR */

.image-container {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url("assets/banner-vitanova.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 250px;
}

.navbar-toggler[aria-expanded="true"] {
  overflow: hidden;
}

.navbar-mobile:has(div):has(.navbar-toggler[aria-expanded="true"]) {
  background-color: black;
}
.navbar-collapse:not(.show) {
  display: none;
  transition: 0.5ms ease-in-out;
}

.dropdown-mobile {
  background-color: black;
  color: white;
}

.dropdown-mobile .dropdown-item {
  color: white;
}

.dropdown-mobile .dropdown-item:hover {
  background-color: inherit;
}

.text-color-dropdown-items {
  color: darkgrey !important;
  font-style: italic;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("assets/close-line.svg");
}

.img-logo {
  width: 290px;
  height: 180px;
}

.dropdown-menu-custom {
  transform: translateX(400px);
}

/* CAROUSEL */

.carousel-indicators {
  height: 25px;
  background-color: white;
  border-radius: 25px;
  width: max-content;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
}

#carousel-web .carousel-item {
  height: 100%;
}

#carousel-web .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

#carousel-web .carousel-inner {
  height: 100%;
}

#carousel-web .badge-custom {
  background-color: rgba(134, 211, 134, 0.37);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

#carousel-web .carousel-indicators button {
  background-color: grey;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: auto 5px;
}

#carousel-web .carousel-indicators .active {
  background-color: black;
}

#carousel-mobile .carousel-item img {
  border-radius: 15px;
  object-fit: cover;
}

#carousel-mobile .carousel-indicators .active {
  background-color: black;
}

#carousel-mobile .carousel-inner {
  border-radius: 15px;
  overflow: hidden;
}

/* Estilos personalizados para la insignia (badge) */
#carousel-mobile .badge-custom {
  background-color: rgba(134, 211, 134, 0.37);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

#carousel-mobile .carousel-indicators button {
  background-color: grey;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

#carousel-mobile .carousel-item.active {
  height: 100%;
}

#carousel-mobile .shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* EXPERIENCE CARD */

/* IFRAME */

/* FOOTER */
.footer-mobile-conditions {
  color: darkgray;
  font-style: italic;
}

.footer-mobile-contact-info {
  color: darkgray;
  font-style: italic;
}

/* Media querys */
@media (max-width: 1200px) {
  .img-logo {
    width: 200px;
    height: 120px;
  }

  .dropdown-menu-custom {
    transform: translateX(300px);
  }
}

@media (max-width: 1010px) {
  .dropdown-menu-custom {
    transform: translateX(300px);
  }
}

@media (max-width: 768px) {
  .contact-mobile {
    margin-left: 20px !important;
  }
}

@media (min-width: 768px) {
  #carousel-section {
    width: 75%;
    margin-bottom: 150px !important;
  }

  #iframe-section {
    margin-bottom: 85px !important;
  }

  .card-section-experiences {
    margin-bottom: 150px !important;
  }
}

@media (max-width: 768px) {
  #mobile-card-experience {
    width: 90% !important;
  }

  #mobile-image-experience {
    width: 90% !important;
    height: 90% !important;
  }
}

@media (min-width: 768px) and (max-width: 890px) {
  #spalopia-logo-div {
    width: 40% !important;
  }

  #contact-info-div {
    width: 60% !important;
  }
}

.header__selectors {
  display: inline-flex;
  justify-content: space-between;
  width: 80px;
}

.header__selector {
  position: relative;
  display: flex;
}

.header__selector__selected {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
}

.header__selector__options {
  top: 2.2rem;
  left:0;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, .14);
  background: white;
  border-radius: 4px;
  padding: 0.5rem;
  position: absolute;
  opacity: 0;
  transition: all ease-in-out 200ms;
}

.header__selector__options li {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 1px;
  padding-bottom: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all ease-in-out 200ms;
}

.header__selector__options a {
  text-decoration: none;
  color: #292929;
}

.header__selector__options li:hover {
  background: #ededed;
}

.header__selector:hover .header__selector__options {
  opacity: 1;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.is--pointer { cursor: pointer; }

