/*general*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
/*fin general*/
/*header*/
header {
  z-index: 1;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  background-color: rgba(255, 192, 203, 0.9);
}
.enlace-a-sobre-mi {
  text-decoration: none;
}
.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo svg {
  width: 25px;
  height: 25px;
}
.logo h2 {
  font-size: 24px;
}
.logo p {
  font-size: 16px;
  color: rgb(64, 159, 127);
}
nav {
  display: flex;
  gap: 24px;
}
nav a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
}
nav a:hover {
  color: rgb(64, 159, 127);
  transition: 0.5s;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.wsp {
  text-decoration: none;
}
.enlace {
  text-decoration: none;
}
.boton-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px 5px 8px;
  gap: 8px;
  border-radius: 10px;
  background-color: white;
  border: 0.5px solid rgb(165, 165, 165);
  cursor: pointer; /* ← agrega esto */
  font-size: 14px; /* ← agrega esto */
  font-family: "Poppins", sans-serif; /* ← agrega esto */
}
.boton-header:hover {
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.5);
}
/*fin header*/
/*hero*/
#hero {
  display: flex;
  padding: 30px;
  padding-top: 100px;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(255, 246, 248);
}
.texto-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 24px;
  line-height: 1.4;
  margin-top: 40px;
}
.hero-image img {
  max-width: 100%;
  height: 550px;

  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%),
    linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-composite: destination-in; /* ← cambia source-in por destination-in */
  mask-image: linear-gradient(to right, transparent 0%, black 15%),
    linear-gradient(to bottom, black 80%, transparent 100%);
  mask-composite: intersect; /* ← agrega esto */
}
.anuncio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgb(64, 159, 127);
}
.anuncio p {
  font-size: 20px;
}
.anuncio svg {
  height: 24px;
  width: 24px;
}
.texto-hero h2 {
  font-size: 48px;
}
.texto-hero p {
  font-size: 24px;
}
.wsp {
  text-decoration: none;
}
.boton-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: solid 0.5px rgb(150, 144, 144);
  padding: 10px;
  background-color: rgb(64, 159, 127);
  gap: 8px;
  font-size: 16px;
}
.boton-hero svg {
  height: 24px;
  width: 24px;
}
.boton-hero:hover {
  cursor: pointer;
  transition: 0.4s;
  box-shadow: 4px 4px 4px black;
}
/*fin hero*/
/*SOBRE MI*/
#sobre-mi {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.img-sobre-mi img {
  max-width: 100%;
  height: 350px;
  border-radius: 20px;
}
.texto-sobre-mi {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.caracteristicas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.caracteristica {
  display: flex;
  gap: 8px;
  align-items: center;
}
.linea-sobre-mi {
  border: 1px solid rgb(64, 159, 127);
  width: 50px;
  height: 3px;
  background-color: rgb(64, 159, 127);
}
.texto-sobre-mi h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}
.caracteristica svg {
  background-color: rgb(148, 215, 193);
  border-radius: 50%;
  padding: 1px;
}
/*FIN SOBRE MI*/
/*SERVICIOS*/
#mis-servicios {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.texto-servicios {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.linea-servicios {
  border: 1px solid rgb(64, 159, 127);
  height: 3px;
  background-color: rgb(64, 159, 127);
}
.servicios {
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.servicio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  gap: 8px;
  border: 0.5px solid rgb(64, 159, 127);
  border-radius: 15px;
  padding: 10px;
  flex: 1;
  margin-bottom: 10px;
}
.servicio svg {
  height: 32px;
  width: 32px;
  background-color: rgb(64, 159, 127);
  border-radius: 50%;
  padding: 5px;
  color: white;
}
.servicio:hover {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
/*FIN SERVICIOS*/
/*PASOS*/
#procedimiento {
  display: flex;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  background-color: rgb(255, 246, 248);
}
.linea-procedimiento {
  border: 1px solid rgb(64, 159, 127);
  height: 3px;
  width: 100px;
  background-color: rgb(64, 159, 127);
}
.pasos {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 32px;
}
.paso {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.paso h2 {
  font-size: 16px;
}
.paso p {
  font-size: 14px;
}
.paso svg {
  width: 60px;
  height: 60px;
  position: static;
  border-radius: 50%;
  background-color: white;
  padding: 10px;
}
.numero {
  position: relative;
  bottom: 30px;
  left: 15px;
  background-color: green;
  border-radius: 50%;
  padding: 5px;
  color: white;
}
/*FIN PASOS*/
/*cta*/
#cta {
  display: flex;
  margin-top: 32px;
  padding: 20px;
  align-items: center;
  justify-content: space-around;
}

.mensaje-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  gap: 24px;
}
.mensaje-cta svg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: antiquewhite;
  padding: 10px;
  border: none;
}
.span-cta {
  color: rgb(64, 159, 127);
}
.texto-cta-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.texto-cta-bottom h2 {
  font-size: 32px;
}
.texto-cta-bottom p {
  font-size: 18px;
}
.linea-cta {
  border: 1px solid rgb(64, 159, 127);
  height: 3px;
  width: 100px;
  background-color: rgb(64, 159, 127);
}
/*fin cta*/
/*footer*/
footer {
  padding: 20px;
  color: white;
  background-color: gray;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.contactos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contactos a {
  text-decoration: none;
  color: white;
}
li {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
li a {
  text-decoration: none;
}
/*fin footer*/

@media (max-width: 768px) {
  /* Header */
  header {
    flex-direction: column;
    padding: 12px;
    gap: 10px;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* Hero */
  #hero {
    flex-direction: column;
    padding: 100px 16px 40px 16px;
    text-align: center;
  }
  .texto-hero {
    margin-top: 80px;
    margin-left: 0;
    align-items: center;
  }
  .texto-hero h2 {
    font-size: 28px;
  }
  .texto-hero p {
    font-size: 16px;
  }
  .hero-image img {
    height: 280px;
    width: 100%;
    display: none;
  }
  .anuncio {
    justify-content: center;
  }

  /* Sobre mí */
  #sobre-mi {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .img-sobre-mi img {
    height: 250px;
  }
  .caracteristica {
    justify-content: center;
  }
  .linea-sobre-mi {
    margin: 0 auto;
  }

  /* Servicios */
  .servicios {
    flex-direction: column;
    padding: 0 16px;
  }
  .servicio {
    width: 100%;
  }
  #mis-servicios {
    padding: 0 16px;
  }

  /* Pasos */
  .pasos {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .paso {
    width: 100%;
    max-width: 280px;
  }

  /* CTA */
  #cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 16px;
  }
  .mensaje-cta {
    flex-direction: column;
    font-size: 18px;
  }
  .texto-cta-bottom h2 {
    font-size: 24px;
  }
  .texto-cta-bottom p {
    font-size: 16px;
  }
  .linea-cta {
    margin: 0 auto;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 24px 16px;
  }
}
