: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: var(--peach);
  box-shadow: 0 0 8px #ff7e5f88;
}

/*  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;
  }
}
