/*general*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
/*fin general*/
/*Horarios*/
#horarios-info-importante {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
}
#horarios-info-importante h2 {
  font-size: 24px;
}
#horarios-info-importante p {
  font-size: 16px;
}
.caja1,
.caja2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.caja {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 400px;
  padding: 15px;
  justify-content: space-between;
  border: 1px solid rgb(220, 220, 220);
  text-align: center;
}
.cajas2 {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 400px;
  padding: 15px;
  border: 1px solid rgb(220, 220, 220);
  text-align: center;
  gap: 12px;
}
.texto-de-las-cajas {
  display: flex;
  flex-direction: column;
  text-align: start;
}
.caja11 {
  background-color: rgba(255, 192, 203, 0.9);
  border-radius: 10px 10px 0px 0px;
}
.caja18 {
  border-radius: 0px 0px 10px 10px;
}
.caja1 svg {
  color: rgb(95, 246, 195);
}
.hora {
  color: rgb(95, 246, 195);
}
.hora-diferente {
  color: red;
}
.caja21 {
  background-color: rgba(255, 192, 203, 0.9);
  border-radius: 10px 10px 0px 0px;
}
.caja25 {
  border-radius: 0px 0px 10px 10px;
}
/*fin Horarios*/
/*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: 500px;
  -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 */
}
.hero-lineaobjeto {
  display: flex;
  align-items: center;
  gap: 16px;
  color: red;
}
.linea-hero {
  border: none;
  width: 100px;
  height: 3px;
  background-color: red;
}
.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*/
/*cta*/
#cta {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.contenido-de-cta {
  border-radius: 10px;
  align-items: center;
  display: flex;
  justify-content: space-around;
  padding: 5px;
  width: 75%;
  height: 100px;
  background-color: rgb(98, 228, 185);
}
.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;
}
.wsp {
  text-decoration: none;
}
.lucide-flower2-icon {
  background-color: rgb(64, 159, 127);
  color: white;
  border-radius: 50%;
  padding: 1px;
}
/*fin cta*/
/*footer*/
footer {
  display: flex;
  height: 100px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 192, 203, 0.9);
}
footer svg {
  color: red;
}
/*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: 75px;
    margin-left: 0;
    align-items: center;
  }
  .texto-hero h2 {
    font-size: 32px;
  }
  .texto-hero p {
    font-size: 16px;
  }
  .hero-image img {
    display: none;
    height: 300px;
    width: 100%;
  }
  .anuncio {
    justify-content: center;
  }

  /* Horarios */
  #horarios-info-importante {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 20px;
  }
  .caja,
  .cajas2 {
    width: 100%;
    max-width: 360px;
  }

  /* CTA */
  .contenido-de-cta {
    flex-direction: column;
    width: 95%;
    height: auto;
    padding: 20px;
    text-align: center;
    gap: 16px;
  }

  /* Footer */
  footer {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
  }
}
