/* ══════════════════════════════════════════
   EXPERIENCIAS PAGE — Full-page overlay
   MP Skin & SPA — Brand Refresh
══════════════════════════════════════════ */

/* ── PAGE CONTAINER ── */
#page-experiencias {
  position: fixed; inset: 0;
  z-index: 700;
  overflow-y: auto;
  background: var(--warm-white);
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
  visibility: hidden;
}
#page-experiencias.open {
  transform: translateY(0);
  visibility: visible;
}

/* ── NAV BAR ── */
.exp-nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  background: rgba(0,83,76,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(111,162,135,0.12);
}
.exp-close {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,243,238,0.6);
  background: none; border: 1px solid rgba(247,243,238,0.15);
  padding: 9px 18px; cursor: none;
  transition: color 0.3s, border-color 0.3s;
}
.exp-close:hover { color: var(--cream); border-color: rgba(247,243,238,0.4); }

/* ── HERO ── */
.exp-hero {
  position: relative;
  min-height: 50vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.exp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,83,76,0.95) 0%,
    rgba(0,83,76,0.82) 40%,
    rgba(111,162,135,0.6) 100%
  );
}
.exp-hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px 64px;
  max-width: 800px;
}
.exp-hero-tag {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.exp-hero-tag::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--gold);
}
.exp-hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.exp-hero-title em { font-style: italic; color: var(--gold-light); }

.exp-hero-subtitle {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.8;
  color: rgba(247,243,238,0.6);
  max-width: 560px;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}

/* ── DECORATIVE BAND ── */
.exp-band {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.exp-band-track {
  display: inline-flex; gap: 32px;
  animation: marquee 20s linear infinite;
}
.exp-band span {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dark); flex-shrink: 0;
}
.exp-band-dot { opacity: 0.4; }

/* ── CATEGORY SECTIONS ── */
.exp-section {
  padding: 80px 60px;
}
.exp-section:nth-child(even) {
  background: rgba(185,220,210,0.08);
}
.exp-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.exp-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.exp-section-num {
  font-family: 'Prompt', sans-serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(111,162,135,0.12);
  line-height: 0.85;
  flex-shrink: 0;
}
.exp-section-label {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.exp-section-label::before {
  content: ''; display: block;
  width: 24px; height: 1px; background: currentColor;
}
.exp-section-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; line-height: 1.1;
  color: var(--dark);
}
.exp-section-title em { font-style: italic; color: var(--brown-mid); }

/* ── SERVICE CARDS GRID ── */
.exp-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── SERVICE CARD ── */
.exp-card {
  background: #fff;
  border: 1px solid rgba(111,162,135,0.12);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}
.exp-card.exp-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,83,76,0.08);
}

.exp-card-header {
  margin-bottom: 20px;
  flex: 1;
}
.exp-card-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.exp-card-desc {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.78rem; font-weight: 300;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* ── PRICE OPTIONS ── */
.exp-card-options {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(111,162,135,0.1);
}
.exp-option {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(185,220,210,0.15);
  border-radius: 2px;
}
.exp-option-duration {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--brown-light);
}
.exp-option-price {
  font-family: 'Prompt', sans-serif;
  font-size: 0.9rem; font-weight: 400;
  color: var(--dark);
}
.exp-option-note {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.62rem; font-weight: 300;
  color: var(--brown-light);
  width: 100%;
  margin-top: 4px;
  font-style: italic;
}

/* ── CTA BUTTON ── */
.exp-card-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none; cursor: none;
  padding: 14px 24px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
}
.exp-card-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.exp-card-cta svg {
  flex-shrink: 0;
}

/* ── HIGHLIGHT CARD (Spa Day, Drenagem plans) ── */
.exp-card--highlight {
  border-color: var(--gold);
  background: linear-gradient(160deg, #fff 0%, rgba(239,182,97,0.04) 100%);
}
.exp-card--highlight .exp-card-title::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
}

/* ── POLICY FOOTER ── */
.exp-policy {
  background: var(--dark);
  padding: 64px 60px;
}
.exp-policy-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.exp-policy-title {
  font-family: 'Prompt', sans-serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--cream);
  margin-bottom: 24px;
}
.exp-policy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.exp-policy-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.exp-policy-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(111,162,135,0.2);
  color: var(--gold);
}
.exp-policy-text h4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 6px;
}
.exp-policy-text p {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.75rem; font-weight: 300;
  color: rgba(247,243,238,0.5);
  line-height: 1.65;
}

/* ── CTA FOOTER ── */
.exp-cta-section {
  background: linear-gradient(160deg, #00534c 0%, #1a6b5e 50%, #74956c 100%);
  padding: 80px 60px;
  text-align: center;
}
.exp-cta-section .exp-section-label {
  justify-content: center;
  color: var(--gold);
}
.exp-cta-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.15;
  color: var(--cream);
  margin-bottom: 16px;
}
.exp-cta-title em { font-style: italic; color: var(--gold-light); }
.exp-cta-text {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.88rem; font-weight: 300;
  color: rgba(247,243,238,0.55);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.exp-cta-btn {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dark); background: var(--gold);
  border: none; cursor: none;
  padding: 18px 52px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.exp-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }


/* ══════════════════════════════════════════
   RESPONSIVE — Experiencias
══════════════════════════════════════════ */

@media (max-width: 900px) {
  .exp-nav { padding: 18px 24px; }
  .exp-hero-content { padding: 60px 24px 48px; }
  .exp-section { padding: 56px 24px; }
  .exp-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .exp-section-num { font-size: 3.5rem; }
  .exp-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .exp-policy { padding: 48px 24px; }
  .exp-policy-list { grid-template-columns: 1fr; gap: 24px; }
  .exp-cta-section { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .exp-hero { min-height: 40vh; }
  .exp-hero-content { padding: 48px 20px 36px; }
  .exp-section { padding: 40px 20px; }
  .exp-card { padding: 24px; }
  .exp-card-options { gap: 6px; }
  .exp-option { padding: 5px 10px; }
  .exp-option-price { font-size: 0.82rem; }
  .exp-policy { padding: 36px 20px; }
  .exp-cta-section { padding: 48px 20px; }
}
