*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI', sans-serif;
}

/* 🌸 PRIMERA VISTA */

/* 🌸 PRIMERA VISTA */

.bienvenida{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:white;
}
.overlay{
  background:rgba(106,27,154,0.65);
  backdrop-filter: blur(5px);
  padding:50px;
  border-radius:25px;
}
.overlay h2{
  font-family:cursive;
  font-size:28px;
}

.overlay h1{
  font-size:35px;
  margin:15px 0;
}

.overlay button{
  margin-top:20px;
  padding:12px 30px;
  border:none;
  border-radius:30px;
  background:white;
  color:#9c27b0;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.overlay button:hover{
  background:#7b1fa2;
  color:white;
}

/* 💜 SEGUNDA VISTA */

.principal{
  background:#f8f1f1;
  min-height:100vh;
  padding:40px 20px;
  text-align:center;
}

header{
  margin-bottom:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-bottom:40px;
}

.card{
  background:white;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.formulario{
  max-width:400px;
  margin:20px auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.formulario input,
.formulario select{
  padding:12px;
  border-radius:10px;
  border:1px solid #ddd;
}

.formulario button{
  padding:12px;
  border:none;
  border-radius:30px;
  background:#9c27b0;
  color:white;
  font-weight:bold;
  cursor:pointer;
}
header{
  height:350px;
  background:url("uñas.jpg") center/cover no-repeat;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:white;
  text-align:center;
  border-radius:0 0 30px 30px;
}

header h1{
  font-size:40px;
  background:rgba(0,0,0,0.4);
  padding:10px 20px;
  border-radius:15px;
}

header p{
  background:rgba(0,0,0,0.4);
  padding:8px 15px;
  border-radius:15px;
}
.servicios{

  background:#f8f1f1;
  padding:80px 20px;
  text-align:center;

}

.titulo-servicios{

  font-size:45px;
  color:#a16a5e;
  margin-bottom:50px;

}


.contenedor-servicios{

  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;

}


.servicio{

  position:relative;
  width:300px;

}


.servicio img{

  width:100%;
  height:400px;
  object-fit:cover;

}


.info{

  background:white;
  padding:25px;

  position:absolute;

  bottom:-40px;

  left:50%;

  transform:translateX(-50%);

 width: 90%;
    height: 40%;

  box-shadow:0 10px 20px rgba(0,0,0,0.2);

}


.info h3{

  color:#a16a5e;
  font-size:25px;
  margin-bottom:10px;

}


.info p{

  font-size:14px;
  margin-bottom:10px;

}


.precio{

  color:#a16a5e;
  font-weight:bold;
  font-size:18px;

}

.hero{

  display:flex;
  align-items:center;
  justify-content:center; /* CENTRA TODO */

  gap:400px; /* espacio controlado entre texto e imagen */

  padding:60px 40px; /* menos espacio */

  background:#f5f1f1;

}


.hero-texto{

  max-width:500px; /* evita que se aleje mucho */

}


.hero-texto h1{

  font-size:55px;
  color:#9c6b5c;
  margin-bottom:20px;

}


.hero-texto p{

  font-size:18px;
  color:#777;
  margin-bottom:30px;

}


.hero-img img{

  width:800px; /* tamaño fijo mejor controlado */
  border-radius:10px;

}









.btn-reserva{

  background:#9c6b5c;
  color:white;
  border:none;
  padding:15px 30px;
  font-size:16px;
  cursor:pointer;

}


.btn-servicios{

  background:transparent;
  border:2px solid #9c6b5c;
  padding:15px 30px;
  font-size:16px;
  cursor:pointer;
  color:#9c6b5c;

}



.navbar{

  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  background:#f8f3f2;

}


.navbar a{

  text-decoration:none;
  color:#9c6b5c;
  font-size:18px;
  margin:0 15px;
  font-weight:500;

}


.navbar a:hover{

  color:#000;

}


.nav-logo img{

  height:60px;

}


.nav-izq,
.nav-der{

  display:flex;
  align-items:center;

}