body {
  font-family: 'Alexandria', sans-serif;
}
/* Estilos base */
.faq-frame1-body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  background: white;
  color: #333;
  overflow-x: hidden;
  position: relative;
}

/* HEADER */
.header {
  background-color: #FFB347;
  padding: 4rem 1rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.header h1 {
  font-size: 2.5rem;
}

.highlight {
  background: #f72798;
  color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 5px;
}

.wave-container {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.waveO {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  transform: rotate(180deg);
  z-index: 1;
}

/* DESCRIPCIÓN */
.description {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.description a {
  color: #f72798;
  font-weight: bold;
  text-decoration: none;
}

/* TARJETAS */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  position: relative;
}

.card {
  flex: 1 1 280px;
  max-width: 200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* DECORACIONES */
.decoration {
  position: absolute;
  z-index: 0;
}

.flower {
  top: 55%;
  right: 10%;
}

.blue-blob {
  top: 15%;
  left: 0%;
}

.wave-line {
  top: 20%;
  right: 0%;
}

/* ------------------ MEDIA QUERIES ------------------ */

/* 480px - Smartphones Portrait */
@media (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.95rem;
    padding: 1.5rem 1rem;
  }

  .card {
    max-width: 100%;
    padding: 1.5rem 1rem;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .decoration {
    display: none;
  }
}

/* 768px - Tablets Portrait */
@media (max-width: 768px) {
  .header h1 {
    font-size: 1.8rem;
  }

  .cards {
    gap: 1.5rem;
  }

  .card {
    max-width: 90%;
  }

  .decoration {
    display: none;
  }
}

/* 912px - Tablets Landscape */
@media (max-width: 912px) {
  .cards {
    gap: 1.8rem;
  }

  .card {
    max-width: 250px;
  }
}

/* 1024px - Laptops/Small Desktops */
@media (max-width: 1024px) {
  .card {
    max-width: 220px;
  }
}

/* 1440px - Large Screens */
@media (min-width: 1440px) {
  .description {
    font-size: 1.2rem;
    max-width: 800px;
  }

  .card {
    max-width: 240px;
  }
}

/* Landscape tablets under 1024px */
@media (max-width: 1024px) and (orientation: landscape) {
  .card {
    flex: 1 1 200px;
  }

  .description {
    padding: 1rem;
  }

  .decoration {
    display: none;
  }
}

/* Portrait tablets under 1024px */
@media (max-width: 1024px) and (orientation: portrait) {
  .header h1 {
    font-size: 1.6rem;
  }

  .description {
    font-size: 1rem;
  }

  .card {
    max-width: 90%;
  }

  .decoration {
    display: none;
  }
}

/* Extra small phones - Portrait  */
@media (max-width: 480px) and (orientation: portrait) {
  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}
