:root {
  --peach: #ff7e5f;
}


/* QUOTE SECTION  */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px;
}

.quote {
  opacity: 0;
  transform: translateY(20px);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 80px;
  transition: all 1s ease;
  position: relative;
  text-align: center;
}

.quote.visible {
  opacity: 1;
  transform: translateY(0);
}

.quote::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #0F70A2;
  box-shadow: 0 0 8px #ff7e5f88;
}

/* ========== APPLE-STYLE TITLES ========== */
/* TÍTULO APPLE STYLE SIN FONDO AZUL */
.quote.title {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 120px;
  margin-bottom: 60px;
  padding-top: 10px;
  padding-bottom: 20px;
  text-align: center;

  /* Degradado SOLO en el texto */
  background: linear-gradient(90deg, #4dc8ff, #1a9ddb, #57d0ff);

  /* Compatibilidad completa */
  background-clip: text;              /* estándar */
  -webkit-background-clip: text;      /* Chrome / Safari */
  color: transparent;                  /* estándar */
  -webkit-text-fill-color: transparent; /* WebKit */

  /* Evita bloque de color azul accidental */
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-origin: border-box;

  /* Efecto Glow estilo Apple */
  filter: drop-shadow(0px 0px 8px rgba(26, 157, 219, 0.35));
}


/* Línea superior del título */
.quote.title::before {
  content: "";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #4dc8ff, #1a9ddb);
  border-radius: 40px;
  box-shadow: 0 0 25px rgba(26, 157, 219, 0.5);
}


/*  FAQ SECTION  
.faq-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid var(--negro);
  padding: 20px 0;
}

.faq-question {
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  margin-top: 10px;
  color: var(--negro);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
*/

hr {
  border: none;
  border-top: 1px solid var(--negro);
}


@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-section {
    padding: 3rem 4rem;
  }
}



@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
  }





  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-image,
  .hero-text {
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .quote {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .faq-title {
    font-size: 1.7rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }
}
