* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  letter-spacing: 0.07rem;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: #f0efef;
}

a {
  text-decoration: none;
  color: black;
}

/* Nav bar */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 7vh;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
  width: 20%;
  text-align: center;
  color: #016a7fd6;
  letter-spacing: 0.2rem;
  background: linear-gradient(90deg, #23a4be9e 30%, #9355ba 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-sections {
  font-size: 1rem;
  width: 60%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.nav-sections a {
  padding: 0 0.5rem;
  color: #4b0055f6;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-sections a:hover {
  background-color: #2392be61;
}

.nav-button {
  display: flex;
  justify-content: center;
  width: 20%;
}

.btn {
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #8114b0f6;
  color: white;
  cursor: pointer;
}

.btn:hover {
  background-color: #621284f6;
}

@media (max-width: 595px) {
  .nav-sections {
    display: none;
  }

  nav {
    justify-content: space-between;
  }

  .logo {
    width: 40%;
  }

  .nav-button {
    width: 40%;
  }
}

/* ------------------------------- */

/* Hero */

.hero {
  padding-top: 3rem;
  height: 80vh;
  background: linear-gradient(90deg, #23a4be9e, #9355bad4); 
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.hero-text-container {
  padding: 0 1.5rem;
  width: 50%;
  color: azure;
}

.hero-text-container h2 {
  font-size: 2.5rem;
  line-height: 3rem;
}

.hero-text-container h2 strong {
  color: #9355ba;
}

.hero-text-container p {
  margin-top: 1.5rem;
  line-height: 1.5rem;
}

.hero-search-container {
  display: flex;
  width: 100%;
  margin-top: 1rem;
}

.hero-search-container input {
  width: 70%;
  border: none;
  border-radius: 5px 0px 0px 5px;
  padding-left: 1rem;
  outline: none;
  border: none;
  box-shadow: none;
}

.hero-search-container button {
  width: 30%;
  border-radius: 0;
  border-radius: 0px 5px 5px 0px;
}

.hero-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
}

.hero-img-container img {
  width: 75%;
  height: 90%;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 750px) {
  .hero {
    padding-top: 6rem;
    flex-direction: column;
    height: 105vh;
  }

  .hero-text-container {
    width: 95%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-text-container h2 {
    font-size: 1.8rem;
  }

  .hero-img-container {
    width: 90%;
    height: 60%;
  }
}

@media (max-width: 430px) {
  .hero {
    height: 115vh;
  }
}

/* -------------------------- */

/* Servicios */

.services {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header p {
  color: #17566f;
  font-size: 0.9rem;
  padding: 0 2rem;
}

.section-title {
  margin-bottom: 1rem;
  color: #9355ba;
  font-size: 1.7rem;
}

@media (max-width: 750px) {
  .section-title {
    font-size: 1.5rem;
  }
}

.service-container {
  width: 95%;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
}

.service-card {
  background-color: #fafafa;
  width: 20rem;
  height: 22rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.card-image {
  border-radius: 10px 10px 0 0;
  background-size: cover; 
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  height: 60%;
}

.nails {
  background-image: url('/images/manicuria.jpeg');
}

.hair {
  background-image: url('/images/peluqueria.jpeg');
}

.legs {
  background-image: url('/images/depilacion.jpeg');
}

.back {
  background-image: url('/images/masajes.jpeg');
}

.card-image span {
  font-size: 0.8rem;
  padding: 0.2rem 0.45rem;
  color: white;
  border-radius: 10px;
  background-color: #a245cab8;
}

.card-text {
  height: 20%;
  color: #4b0055f6;
  font-size: 0.9rem;
  padding: 1rem;
}

.card-button {
  font-size: 0.9rem;
  margin-left: 1rem;
  height: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.card-button p {
  font-weight: bold;
}

.card-button a {
  color: #9355ba;
}

.card-button span {
  letter-spacing: -5px;
}

.card-button a:hover {
  color: #5c1a86;
}

.more {
  letter-spacing: 0.2rem;
  padding: 0.7rem 2rem;
  margin-bottom: 3rem;
}
 
/* -------------------------- */

/* How */

.how {
  background-color: #fafafa;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 3rem;
}

.step-container {
  width: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center;
  padding: 0 2rem;
}

.icon-container {
  cursor: pointer;
  height: 4rem;
  width: 4rem;
  background-color: #2392be61;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  height: 3rem;
  width: 3rem;
  stroke: #5c1a86;
}

.magnifier {
  padding: 0 0.2rem 0.2rem 0;
}

.calendar {
  height: 2.8rem;
  width: 2.8rem;
}



.step-title {
  color: #5c1a86;
  margin: 0.5rem 0;
}

.step-text {
  color: #17566f;
  font-size: 0.9rem;
}
