body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-container {
  background-color: rgb(253 242 248);
}
.header-service{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}
.title-logo{
  font-size: 35px;
  color: #f472cb;
}
.header-title {
  font-weight: 700;
  font-size: 3rem;
  color: #f472cb;
 
}
.abrir-menu {
  display: none;
  
}

.cerrar-menu {
  display: none;
  color: #fff;
  border: none;
  background: none;
  font-size: 25px;
}
.list-nav{
  display: flex;
  align-items: center;
  margin-right: 3%;
}
.list {
  margin-right: 2rem;
  text-decoration: none;
  text-decoration: none;
  list-style-type: none; 
}
.list a {
  text-decoration: none;
  position: relative; /* Agrega esta línea para posicionar el subrayado */
  color: black;
}

.list a::before {
  content: "";
  position: absolute;
  bottom: -2px; /* Ajusta la posición vertical del subrayado */
  left: 0; /* Subrayado desde el lado izquierdo */
  width: 100%;
  height: 2px;
  background-color: #f472cb;
  transform: scaleX(0); /* Inicialmente oculto */
  transition: transform 0.3s ease; /* Agrega una transición suave */
}

.list a:hover::before {
  transform: scaleX(1); /* Muestra el subrayado en el hover */
}

/*LOGIN */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animación de salida */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.login-overlay {
  display: none; /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:  #fc8edb;; /* Fondo con opacidad */
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.login-overlay.show {
  display: flex;
  animation: fadeIn 0.9s forwards; /* Animación de entrada */
}

.login-overlay.hideen {
  animation: fadeOut 0.9s forwards; /* Animación de salida */
}
.close-button {
  position: absolute;
  top: 8%; /* Ajusta según necesites */
  right: 10%; /* Ajusta según necesites */
  background: none;
  border: none;
  font-size: 50px;
  color: white;
  cursor: pointer;
}
.input-login {
  border: none;
  border-bottom: 1.5px solid white;
  background: none;
  outline: none;
  padding: 5px 8px;
  color: white;
}

.login-section {
  width: 100%;
  max-width: 40%; /* Limita el ancho máximo del formulario */
  padding: 20px;
  color: white;
  position: relative;
}
.login-section h1{
  margin-top: 10rem;
  text-align: center;
}
.button-login {
  padding: 15px 40px;
  border: none;
  color: #fc8edb;
  font-weight: 700;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  background-color: #ffffff; 
  border-radius: 5px; 
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.button-login:hover {
  background-color: #ff69b4; 
  color: #ffffff;
  transform: scale(1.1); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
}
::placeholder {
  color: #fff;
  font-size: 15px;
}
.error-message{
  color: red;
  margin-top: 1rem;
  display: none;
}


/* botón de reservar cita */
.btn-reservar {
  background-color: #f472cb; /* Color de fondo normal */
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 15px 30px;
  background-size: 200%; /* Duplicamos el fondo para el efecto de desplazamiento */
  background-image: linear-gradient(to right, #efbeda 50%, #f472cb 50%);
  background-position: right bottom;
  transition: background-position 0.3s ease;
}

/* Efecto de hover */
.btn-reservar:hover {
  background-position: left bottom; /* Cambia el fondo desde la izquierda */
  color: #e623a8;
  font-weight: 700;
}
.semicirculo {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  color: rgb(252 231 243);
  border: 60px solid;
  left: -16rem;
  top: -3rem;
  z-index: 0;
}
.contenedor {
  position: relative;
  display: inline-block;
}
.contenedor img {
  z-index: 10;
}
.semicirculo2 {
  position: absolute;
  bottom: 0;
  right: 289px;
  width: 50%;
  height: 50%;
  background-color: rgb(252 231 243);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
  transform: rotate(180deg); 
}
.img-bauty {
  width: 80%;
  height: 500px;
  object-fit: cover;
  opacity: 0;
  transform: translateY(20px); /* Comienza un poco hacia abajo */
  animation: fadeInMove 1.5s ease forwards; /* Animación suave */
}

@keyframes fadeInMove {
  to {
    opacity: 1;
    transform: translateY(0); /* Vuelve a su posición original */
  }
}

.button-bauty {
  border: none;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  background-color: rgb(249 168 212);
  font-size: 20px;
  color: white;
  padding: 3% 10%;
  bottom: -5%;
  left: 40%;
  transform: translateX(-50%) translateY(20px); /* Comienza un poco hacia abajo */
  opacity: 0;
  animation: fadeInMoveTitle 2s ease forwards; /* Animación suave */
  animation-delay: 1.5s; /* Retardo para que aparezca después de la imagen */
}

@keyframes fadeInMoveTitle {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Vuelve a su posición original */
  }
}
.title-favorite{
  width: 25%;
  font-size: 60px;
  font-family: "Playfair Display", serif;
  color: rgb(33,33,33);
  margin: 5% 12%;
}
.favorite-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    border: 2px solid black; /* Borde negro */
    margin: 8% 12%;
}

.image-container {
    background: url('../img/img-fav.webp') no-repeat center center ;
    background-size: contain;
    width: 50%;
    height: 500px; /* Altura específica */
}

.fav-button {
  padding: 15px 20px;
  background-color: rgb(249 168 212);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.fav-button:hover {
  background-color: #f472cb;;
}


/* botón de ver mas servicio */
.btn-servicio {
  width: 20%;
  background-color: #f472cb; /* Ajusta el color de fondo según tu preferencia */
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Efecto de hover */
.btn-servicio:hover {
  transform: translateY(-5px); /* Mueve el botón hacia arriba */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Añade sombra */
}

.principal-contenedor {
  margin: 3rem;
  display: flex;
  flex-direction: column;
}

em strong {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #f472cb;
}
.about{
width: 50%;
}
.title-about{
  font-size: 2.25rem;
  font-family: 'Poppins';
}

.details{
  margin-bottom: 12%;
}
.imagen-diferenciales {
  padding: 20px 20px 20px 20px;
  box-shadow: 1px 1px 0px 0px #836d1a;
  width: 500px;
  height: 290px;
  animation: slide 5s linear 1 forwards;
}

.items:first-child {
  font-weight: bold;
}
.items:before {
  content: "✶";
  color: #f472cb;
}

/*Footer*/
.footer-container {
  margin-left: 8rem;
  background-color: rgb(255 255 255);
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); 
  width: 80%;
  position: relative;
  z-index: 10;
}

.footer-contact {
  background-color: rgb(249 168 212);
  width: 27%;
  height: 537px;
  position: relative;
  z-index: 1; 
}

.footer-service {
  background-color: rgb(253 242 248);
  margin-top: -8rem;
  padding-top: 15%;
}
.icons-content {
  border: 1px solid white;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  padding: 4%;
}

.form-input {
  color: black;
  border: 1.5px solid rgb(249 168 212);
  padding: 8px 15px;
  margin-bottom: 23px;
  border-radius: 4px;
  background-color: transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-left: 8px;
}
.input-container--invalid {
  margin-bottom: 0.5rem;
}

.input-container--invalid .form-input {
  border: 1px solid red;
  border-radius: 4px;
}

.input-container--invalid {
  color: rgb(210, 28, 28);
}

.input-container--invalid .input-message-error {
  color: rgb(231, 29, 29);
  display: block;
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.input-message-error {
  display: none;
}

.text-mensaje {
  color: black;
  width: 98%;
  height: 170px;
  resize: none;
  padding: 8px 15px;
  border: 1.5px solid rgb(249 168 212);
  background-color: transparent;
  border-radius: 4px;
}
.form-input:focus,
.text-mensaje:focus {
  border-color: rgb(249 168 212);
  outline: none;
  box-shadow: 0 0 5px rgb(249 168 212);
}
.radio-custom{
    margin-top: 1rem;
}

.icon-contact{
  color: #f472cb;
  font-weight: 500;

}
.left-circle{
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  color: rgb(252 231 243);
  border: 60px solid;
  left: -20%;
  top: 0;
  z-index: 0;
}
.right-circle{
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  color: rgb(252 231 243);
  border: 60px solid;
  left: 80%;
  top: 32%;
  z-index: 0;
}
.copy {
  background-color: rgb(252 231 243);
  padding: 1rem;
}
.title-aura{
  width: 25%;
}

/* estilos de la Pagina de servicios */

.list {
  list-style-type: none; /* Quitar los puntos de la lista */
 
}
/* Contenedor de la lista de servicios */
.list-service-container {
  display: flex;
  justify-content: center;
  position: relative;

}

/* Estilos para la lista de servicios */
.service-list {
  list-style-type: none; /* Quitar los puntos de la lista */
  padding: 0;
  margin: 0;
  gap: 5%; /* Ajusta el espacio entre los elementos */
  position: relative;
 

}
.line{
  border-top: 1px solid rgb(0,0,0); /* Borde inferior debajo de todos los elementos */
  margin: 0 33%;
}

/* Estilo para los items individuales */
.service-item {
  position: relative;
  padding-bottom: 5px; /* Espacio para el subrayado */
  cursor: pointer;
  transition: color 0.3s ease; /* Transición para el color del texto */
}

/* Subrayado individual */
.service-item.active::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 3px;
  background-color:  rgb(0,0,0); /* Borde inferior debajo de todos los elementos */; /* Color del subrayado */
  bottom: -2px; /* Para que el subrayado esté justo encima del borde inferior */
  left: -5%;
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
}


/* Animación de subrayado */
.service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: transparent; /* Inicialmente transparente */
  bottom: -2px; /* Posición del subrayado */
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.img-service{
  margin: 15% 20%;
    border: 10px solid white;
    width: 100%;
    height: 70%;
    object-fit: cover
}
.title-price{
  margin-left: 20%;
}
.image-content {
  overflow: hidden;
  width: 350px; 
  height: 500px; 
}

.image-service {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 5%; */
  transition: transform 0.3s ease;
  cursor: pointer;
}

.image-service:hover {
  transform: scale(1.1); 
}
.wrapper-content{
  margin-top: 10%;
  width: 45%;
  height: 700px;
  background-color: rgb(249 168 212);
 
}
.wrapper-title{
  width: 25%;
  margin-top: 20%;
  margin-left: 20%;
}
.price-list{
  margin: 3% 20%;
}
.service-content {
  display: none;
}

.service-content.active {
  display: block;
}

.separator{
    border-bottom-style: dotted;
    border-bottom-width: 2px;
    border-bottom-color: #f3bae1;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 10px;
    margin-right: 10px 
}.testimonials {
  text-align: center;
  margin-top: 3%;
  margin-bottom: 10%;
}

.testimonial {
  max-width: 70%;
  margin: 0 auto;
  padding: 20px 30px;
  font-style: italic;
  position: relative;
  text-align: center;
  font-size: 1.2rem;
}

.testimonial p {
  line-height: 1.8;
}

.testimonial::before, .testimonial::after {
  font-size: 3.5rem;
  color: #fc8edb;
  position: absolute;
}

.testimonial::before {
  content: '“'; /* Comilla de apertura */
  top: -12%;
  left: 1%;
}

.testimonial::after {
  content: '”'; /* Comilla de cierre */
  bottom: -15%;
  right: -10%;
}

.author {
  text-align: right;
  font-weight: bold;
  margin-top: 10px;
}

.carousel-control-prev, .carousel-control-next {
  display: none;
}

.carousel-indicators.custom-indicators {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-indicators.custom-indicators button {
  background-color: #fc8edb;
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: default;
  opacity: 1;
}

.carousel-indicators.custom-indicators .active {
  background-color: #ff40b6;
}
.sobreDescription {
  margin-top: 3%;
  font-size: 19px;
  text-align: left;
  line-height: 28px;
  color: rgb(55 65 81);
  
  margin-bottom: 1.5rem;
  font-family: 'Poppins';
  
}
.sobreItems {
  margin-top: 3%;
  display: flex;
  margin-left: 3%;
  line-height: 28px;
  gap: 5%;
}
.icons {
  color:#e623a8;
  font-weight: 700;
}
.quadrant{
  background-image: radial-gradient(#cccccc 3px, transparent 3px);
  width: 190px;
  height: 145px;
  position: absolute;
  top: 22%;
  right: 3.5%;
  background-size: 16px 16px;
  z-index: -1;
}
.img-tintura {
  height: 369px;
  width: 369px;
  margin-top: 20%;
  border-radius: 1rem;
  object-fit: cover;
}

.tintura {
  width: 150px;
  height: 100%;
  position: relative;
  top: 7%;
  right: -1%;
  object-fit: cover;
}

.content-tintura {
  top: 50%;
  padding: 0.5rem;
  background-color: white;
  right: 80px;
  aspect-ratio: 1 / 1;
  z-index: 10;

}
.triangle{
  left: 62%;
  top: 55%;
  position: absolute;
  width: 18%;
   height: 27%;
    background-color:rgb(249 168 212);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    transform: rotate(180deg);
    z-index: -1;
}

html {
  scroll-behavior: smooth;
}

/* boton de scroll */
#ir-arriba-boton{
  position: fixed;
  z-index: 1000;
  right: 25px;
  bottom: 25px;
  background-color: #f472cb;
  width: 64px;
  height: 65px;
  color: white;
  text-align: center;
  border-radius: 50%;
  transition: all .2s;
}
/* boton de scroll */
#ir-arriba-boton:hover{
  cursor: pointer;
  transform: scale(1.1);
}
.indicador-contenedor{
  width: 100%;
  position: fixed;
  top: 0;
  height: 7px;
  z-index: 1001;
}
.indicador-scroll{
  height: 100%;
  width: 0;
  background-color: #efbeda;
}
.ocultar{
  opacity: 0;
  visibility: hidden;
}
.mostrar{
  opacity: 1;
  visibility: visible;
}






/* tablet */ 
@media screen and (max-width: 768px) {
.abrir-menu {
    display: block;
    border: none;
    background: none;
    font-size: 35px;
    color: #e623a8;
}
  .cerrar-menu{
    display: block;
    color: #fff;
    border: none;
    background: none;
    font-size: 25px;
  }
   .list-nav{
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    background-color: #fc8edb;
    bottom: 0;
    box-shadow: 0 0 100vmax rgba(0, 0, 0, .5);
    z-index: 12;
   }
   .list-login{
    color: white;
    margin-right: 18%;
   }
   .list-nav.visible{
    opacity: 1;
    visibility: hidden;
   }
   .list{
    display: flex;
    flex-direction: column;
    align-items: end;
   }
   .list a {
    color: white;
   }

   .contenedor img{
    display: none;
   }
   .title-favorite{
    width: 80%;
    font-size: 40px;
    margin: auto;
   }
   .imagen-diferenciales {
    width: 400px;
    height: 230px;
    padding: 15px;
}
   .favorite-container{
    flex-direction: column;
   }
   .image-container{
    width: 100%;
    height: 400px;
   }

   .about{
    width: 100%;
   }
   .title-about{
    text-align: center;
    margin-top: 6%;
   }
   
   .section-tintura img, 
   .section-tintura .quadrant,
   .section-tintura .triangle{
    display: none;
   }
  
   /* footer */
   .footer-container{
    margin-left: 10%;
   }
   .footer-contact{
    width: 100%;
    height: 30%;
    padding: 5%;
   }
   .contact{
    display: none;
   }
   .form-input{
    width:100%;
    padding: 3px 15px;
    margin-left: 0;
    margin-top: 1%;
   }
   .btn-reservar{
    padding: 1rem;
    margin-bottom: 2%

   }
.footer-service{
  padding-top: 25%;
}
.close-button{
  right: 3%;
  top: 2%;
  font-size: 40px;
}
.login-section{
  padding: auto;
  max-width: 80%;
}
.login-section h1{
  margin-top: 12rem;
  text-align: justify;
}
.img-bauty{
  width: 100%;
  height: auto;
}
.button-bauty{
  left: 50%;
}
.list-footer{
  margin-left: -6%;

}
/* servicio */
.service-content{
  display: flex;
  flex-direction: column;
  background-color: none;
}
.line {
  margin: 0 3%;
}
.wrapper-content{
  background:none;
  width: 100%;
  padding: 2%;
  height: auto;

 }
 .wrapper{
  flex-direction: column;
 }

.wrapper-title{
  padding: 2%;
  margin-top: 2%;
  margin-left: 0;
  width: 100%;
} 
.img-service{
  margin: -3% 0%;
  border: 9px solid #fc8edb;
  height: 50%;
  padding: 2%;

}

.price-list {
  margin: 3% 4%;
}
.title-price {
  margin-left: 3%;
}
.image-content{
  height: auto;
  padding: 2%;
}
.btn-servicio {
  width: 50%;
}
.title-aura{
  width: 80%;
}

}