/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(252, 251, 254, 0.95) 0%, rgba(252, 251, 254, 0.5) 100%),
    url('assets/images/hero_spa_lilac_1773411162845.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-hero-content {
  max-width: 700px;
  animation: fadeUp 0.9s ease-out forwards;
}

.page-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.page-breadcrumb a {
  color: var(--primary-dark);
  font-weight: 500;
}

.page-hero h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.page-hero h1 span {
  color: var(--primary-dark);
  font-style: italic;
}

.page-hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 560px;
}

/* ===== Page Content Grid ===== */
.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.page-text-block h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.page-text-block p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

/* ===== Highlight Box (áreas) ===== */
.page-highlight-box {
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.page-highlight-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.page-area-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-area-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.area-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}

.page-area-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.page-area-list p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== Benefits Grid ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== About CTA Grid ===== */
.about-cta-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-cta-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.about-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-cta-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}

.info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.info-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.3rem 1.8rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary-dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--primary-dark);
}

.faq-item p {
  padding: 0 1.8rem 1.3rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #9b5dca 100%);
}

.cta-content {
  text-align: center;
  max-width: 700px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cta-section .btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .page-hero h1 {
    font-size: 2.4rem;
  }

  .page-content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}
