/* Variables */
:root {
  --turquesa: #007a93;
}

/* Buscador */
.buscador {
  margin: -2.5rem auto;
  background-color: #fff;
  border-radius: 1rem;
  width: 90%;
  position: absolute;
  left: 0;
  right: 0;
}

@media (min-width: 768px) {
  .buscador {
    width: 75%;
  }
}

.buscador__contenedor {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  width: 100%;
}
@media (min-width: 492px) {
  .buscador__contenedor {
    display: flex;
  }
}
.buscador__img {
  width: 3.5rem;
}
.buscador__input {
  color: #333;
  background-color: transparent;
  border: none;
  padding: 1rem;
  flex: 1;
  font-family: sans-serif;
}
.buscador__input::placeholder {
  color: #6c757d;
}
.buscador__input:focus {
  outline: none;
}
.buscador__btn {
  display: flex;
  margin: 0 auto;
  background-color: #007a93;
  padding: 0.8rem 2rem;
  border-radius: 1rem;
  border: none;
  color: #fff;
  text-align: center;
  font-family: sans-serif;
}
.buscador__btn:hover {
  text-decoration: none;
  color: #fff;
}

/* Banner */
.banner {
  position: relative;
}

/* Mensaje */
.mensaje {
  margin: 3rem auto;
  max-width: 75%;
  text-align: center;
}
.mensaje h1 {
  color: var(--turquesa);
  font-weight: bold;
  margin: 3rem 0;
}
.mensaje p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.mensaje p:last-child {
  font-weight: bold;
  margin-bottom: 3rem;
  color: #000;
}

/* Contacto */
.contacto {
  display: flex;
  padding: 1.4rem 0;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--turquesa);
  text-align: center;
  font-weight: bold;
  font-family: sans-serif;
}
.contacto p {
  color: #fff;
  margin: 0;
  padding: 0;
}
.contacto a {
  background-color: #333;
  color: #fff;
  padding: 0.4rem 1.4rem;
  border-radius: 2rem;
  text-decoration: none;
}

/* Disponibles */
.detalles {
  max-width: 90%;
  margin: 6rem auto 3rem auto;
  background-color: #fff;
  border-radius: 2rem;
  padding: 2rem 3.5rem 2.5rem 3.5rem;
  border: 0.5px solid #333;
}
@media (min-width: 992px) {
  .detalles {
    max-width: 50%;
  }
}
.detalles p {
  margin: 0.5rem 0;
}
.detalles h1 {
  background-color: var(--turquesa);
  max-width: max-content;
  text-transform: uppercase;
  padding: 0.3rem;
  font-size: 0.9rem;
  color: #fff;
  font: bold;
  margin: 0;
  font-family: sans-serif;
}
.detalles__dominio {
  font-weight: bold;
  font-size: 3.1rem;
  font-family: sans-serif;
  color: #000;
}
.detalles__dominio span {
  color: var(--turquesa);
}
.detalles__precio {
  color: #333;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1.5rem !important;
  font-family: sans-serif;
}
.detalles__enlace {
  background-color: #333;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1.3rem;
}
.detalles__enlace:hover {
  color: #fff;
  text-decoration: none;
}
.detalles__info {
  margin-top: 3rem;
}
.detalles__info h2 {
  color: #333;
}
.detalles__info ul {
  list-style: circle;
  color: #000;
  margin: 0;
  padding: 0 1rem;
  line-height: 1.5;
}
.detalles__info ul li {
  list-style: initial;
}

/* No disponibles */
.no-disp {
  border: none;
  background-color: transparent;
  margin: 3rem auto;
}
.no-disp h1 {
  text-transform: unset;
  background-color: transparent;
  color: #333;
  font-size: 1.5rem;
}
@media (min-width: 1200px) {
  .no-disp h1 {
    font-size: 1.9rem;
  }
}
.no-disp h1 span {
  color: var(--turquesa);
}
.no-disp__sugeridos {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 1200px) {
  .no-disp__sugeridos {
    padding-left: 1.8rem;
  }
}
.no-disp__detalles,
.no-disp__carrito {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.no-disp__detalles {
  justify-content: space-between;
  border-bottom: 1px solid #ddd9d9;
  margin-bottom: 0.5rem;
}
.no-disp__detalles:last-child {
  margin-bottom: 0;
  border: none;
}
.no-disp__detalles h2,
.no-disp__precio {
  color: #333;
  font-family: sans-serif;
  font-weight: normal;
}
.no-disp__precio {
  font-size: 0.85rem;
}
.no-disp__imagen {
  width: 3.7rem;
}
