/* ═══════════════════════════════════════════════════════════════
   DOM PUPILO — site.css  (ficheiro único)
   ───────────────────────────────────────────────────────────────
   ÍNDICE
   ─────
   1.  RESET & TOKENS
   2.  CUSTOM CURSOR
   3.  NAVBAR
   4.  LOADING SCREEN
   5.  HERO (HomePage)
   6.  INTRO (HomePage)
   7.  SERVICES SCROLL-TELLING (HomePage)
   8.  PRICING SECTION (HomePage)
   9.  ABOUT / LOCATION (HomePage)
   10. REGULAMENTO STRIP (HomePage)
   11. CTA SECTION (global)
   12. BUTTONS (global)
   13. FOOTER
   14. UTILITIES & ANIMATIONS
   15. SERVICES PAGE
   16. PRICING PAGE
   17. CONTACT PAGE
   18. CONTENT PAGE (Regulamento / genérico)
   19. RESPONSIVE
   20. FAQ PAGE
   ═══════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────
   1. RESET & TOKENS
   ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #D88EEC;
  --cream: #5c3761;
  --gold: #ECA7F5;
  --gold-light: #ffbfff;
  --muted: #ffbfff;
  --white: #ffffff;
  --deep: #0F0E47;
  /* texto em fundos claros */
  --text-dark: #1a1930;
  --text-muted-dark: #505081;
  /* texto em fundos escuros */
  --text-light: rgba(255,255,255,.92);
  --text-muted-light: rgba(255,255,255,.45);
  --font-serif: 'Arimo', sans-serif;
  --font-coco: 'Playfair Display', serif; /*DP marca d'água*/
  --font-sans: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────────────────────
   3. NAVBAR
   ───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background .4s, padding .4s, opacity .4s;
}

nav.nav--hidden {
  opacity: 0;
  pointer-events: none;
}

nav.scrolled {
  mix-blend-mode: normal;
  background: rgba(13, 13, 13, .92);
  padding: 1rem 4rem;
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-logo img {
  height: 36px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .3s;
  transform-origin: center;
}

.nav-menu-btn.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-menu-btn.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity .4s;
}

.nav-mobile-overlay.open {
  opacity: 1;
}

.nav-mobile-overlay a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .3s;
}

.nav-mobile-overlay a:hover {
  color: var(--gold-light);
}


/* ─────────────────────────────────────────────────────────────
   4. LOADING SCREEN
   ───────────────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050518;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.loader-logo {
  opacity: 0;
  transform: translateY(20px);
}

.loader-logo img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.loader-bar-wrap {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.loader-count {
  font-family: var(--font-serif);
  font-size: .75rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .2em;
}


/* ─────────────────────────────────────────────────────────────
   5. HERO (HomePage)
   ───────────────────────────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.hero-video-mask {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-inner {
  width: 55vw;
  height: 70vh;
  border-radius: 50% 40% 60% 45% / 55% 50% 45% 40%;
  overflow: hidden;
  position: relative;
}

.hero-video-inner video,
.hero-video-inner .video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-icon {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(184, 141, 201, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-icon::after {
  content: '';
  border-left: 20px solid rgba(184, 141, 201, .8);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

.hero-video-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(13, 13, 13, .6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-logo {
  height: clamp(80px, 18vw, 200px);
  filter: brightness(0) invert(1);
  opacity: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 300;
  line-height: .88;
  color: var(--white);
  letter-spacing: -.02em;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: .05em;
}

.hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title .divider {
  display: block;
  height: 1px;
  width: 60%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: .6rem auto;
  opacity: 0;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 1.5rem;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  transform: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ─────────────────────────────────────────────────────────────
   6. INTRO (HomePage)
   ───────────────────────────────────────────────────────────── */
#intro {
  background: var(--deep);
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#intro::before {
  content: 'DP';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-coco);
  font-size: 28vw;
  font-weight: 300;
  color: rgba(13, 13, 13, .03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.intro-label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: block;
}

.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.intro-heading em {
  font-style: italic;
  color: var(--gold);
}

.intro-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--white);
  max-width: 480px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.stat-number sup {
  font-size: 1.2rem;
  color: var(--gold);
}

.stat-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}


/* ─────────────────────────────────────────────────────────────
   7. SERVICES SCROLL-TELLING (HomePage)
   ───────────────────────────────────────────────────────────── */
#services {
  background: var(--deep);
  position: relative;
}

/* ── SERVICES BOOK ── */
.services-book-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 4rem;
  background: var(--deep);
}

.services-book-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-book-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

#servicesBook {
  width: 800px;
  height: 500px;
}

.book-page-inner {
  width: 100%;
  height: 100%;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  box-sizing: border-box;
}

.book-page--cover .book-page-inner,
.book-page--back .book-page-inner {
  background: #94a7fa;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.book-page--cover .nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.book-page--cover .nav-logo img {
  height: 120px;
  filter: brightness(0) invert(1);
}

.book-cover-label {
  font-size: .6rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
}

.book-cover-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.book-cover-title em {
  font-style: italic;
  color: var(--gold-light);
}

.book-cover-arrow {
  font-size: 1.5rem;
  color: var(--deep);
  animation: bookArrow 1.5s ease-in-out infinite;
}

@keyframes bookArrow {
  0%, 100% { transform: translateX(0); opacity: .5; }
  50%       { transform: translateX(8px); opacity: 1; }
}

.book-page-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(13, 13, 13, 0.06);
  line-height: 1;
  margin-bottom: .5rem;
}

.book-page-tag {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: 1rem;
  display: block;
}

.book-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.book-page-text {
  font-size: .85rem;
  line-height: 1.8;
  color: var(--deep);
  max-width: 340px;
}

.book-page-details {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(13,13,13,.08);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.book-page-row {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
}

.book-row-key {
  color: var(--deep);
}

.book-row-val {
  color: var(--deep);
  font-family: var(--font-serif);
}

.book-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.book-nav-btn {
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}

.book-nav-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.book-nav-counter {
  font-family: var(--font-serif);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  min-width: 4rem;
  text-align: center;
}

/* Manter estilos antigos para não partir outras coisas */
.services-wrapper {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.services-sticky {
  width: 45%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  overflow: hidden;
  position: relative;
}

.services-sticky-label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.services-sticky-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
}

.services-sticky-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.services-sticky-desc {
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .65);
  margin-top: 2rem;
  max-width: 360px;
}

/* Paginação lateral */
.services-pagination {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  display: flex;
  gap: .5rem;
}

.services-pagination-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: background .3s, transform .3s;
}

.services-pagination-dot.is-active {
  background: var(--gold-light);
  transform: scale(1.4);
}

.services-scroll-area {
  width: 55%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.services-scroll-area::-webkit-scrollbar {
  display: none;
}

.service-card {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem 0 3rem;
  border-bottom: none;
  opacity: .3;
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1);
}

.service-card.is-active {
  opacity: 1;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.service-card-text {
  font-size: .85rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .5);
  max-width: 420px;
}

.service-card-detail {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(184, 141, 201, .2);
  border-radius: 4px;
  background: rgba(184, 141, 201, .04);
}

.service-card-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .8rem;
}

.service-card-detail-row:last-child {
  border-bottom: none;
}

.service-card-detail-row .key {
  color: rgba(255, 255, 255, .65);
}

.service-card-detail-row .val {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1rem;
}


/* ─────────────────────────────────────────────────────────────
   8. PRICING SECTION (HomePage)
   ───────────────────────────────────────────────────────────── */
#pricing {
  background: var(--cream);
  padding: 10rem 4rem;
  position: relative;
  overflow: hidden;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 6rem;
}

.pricing-header .label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.pricing-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1;
}

.pricing-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(13, 13, 13, .12);
  border-radius: 2px;
  overflow: hidden;
}

.pricing-card {
  background: var(--cream);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .4s ease;
}

.pricing-card:hover {
  background: var(--ink);
}

.pricing-card:hover .pricing-card-level,
.pricing-card:hover .pricing-card-note {
  color: rgba(255, 255, 255, .65);
}

.pricing-card:hover .pricing-card-price {
  color: var(--gold-light);
}

.pricing-card:hover .pricing-card-label {
  color: rgba(255, 255, 255, .45);
}

.pricing-card:hover .pricing-card-border {
  background: rgba(184, 141, 201, .3);
}

.pricing-card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .4s ease;
}

.pricing-card-label {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
  transition: color .4s;
}

.pricing-card-level {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 2rem;
  transition: color .4s;
}

.pricing-card-price {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  transition: color .4s;
}

.pricing-card-price sup {
  font-size: 1.2rem;
  color: var(--gold);
}

.pricing-card-price small {
  font-size: .75rem;
  font-family: var(--font-sans);
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-card-note {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
  transition: color .4s;
}

.pricing-inscription {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  max-width: 1000px;
  margin: 1.5px auto 0;
  background: rgba(13, 13, 13, .12);
}

.pricing-note {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
  font-size: .8rem;
  line-height: 1.8;
  color: var(--muted);
}

.pricing-note strong {
  color: var(--ink);
}


/* ─────────────────────────────────────────────────────────────
   9. ABOUT / LOCATION (HomePage)
   ───────────────────────────────────────────────────────────── */
#about {
  background: var(--ink);
  padding: 10rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: center;
}

.about-label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.about-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.about-body {
  font-size: .85rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .7);
  margin-top: 2rem;
}

.about-info {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-info-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.about-info-row:last-child {
  border-bottom: none;
}

.about-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(184, 141, 201, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.about-info-text .key {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}

.about-info-text .val {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.map-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.map-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F0E47 0%, #272757 50%, #0F0E47 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(134, 134, 172, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 134, 172, .12) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin {
  width: 16px;
  height: 16px;
  background: var(--gold-light);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(134, 134, 172, .25), 0 0 0 12px rgba(134, 134, 172, .10);
}

.map-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}


/* ─────────────────────────────────────────────────────────────
   10. REGULAMENTO STRIP (HomePage)
   ───────────────────────────────────────────────────────────── */
#regulamento {
  background: var(--deep);
  padding: 8rem 4rem;
}

.reg-header {
  margin-bottom: 4rem;
}

.reg-header .label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.reg-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
}

.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(13, 13, 13, .08);
}

.reg-item {
  padding: 2.5rem 2rem;
}

.reg-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .75rem;
}

.reg-desc {
  font-size: .78rem;
  line-height: 1.7;
  color: var(--white);
}


/* ─────────────────────────────────────────────────────────────
   11. CTA SECTION (global)
   ───────────────────────────────────────────────────────────── */
#cta,
.svc-cta {
  background: var(--deep);
  padding: 12rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before,
.svc-cta::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at center, rgba(184, 141, 201, .08) 0%, transparent 65%);
  pointer-events: none;
}

.svc-cta-inner {
  position: relative;
  z-index: 1;
}

.cta-label,
.svc-cta-label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.cta-heading,
.svc-cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 3rem;
}

.cta-heading em,
.svc-cta-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-sub {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 1.5rem;
  letter-spacing: .05em;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 4rem;
}


/* ─────────────────────────────────────────────────────────────
   12. BUTTONS (global)
   ───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 3rem;
  background: #eca7f57c;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 3rem;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ─────────────────────────────────────────────────────────────
   13. FOOTER
   ───────────────────────────────────────────────────────────── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .4;
}

.footer-meta {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .05em;
  line-height: 1.8;
  text-align: right;
}

.footer-meta a {
  color: var(--gold);
  text-decoration: none;
}


/* ─────────────────────────────────────────────────────────────
   14. UTILITIES & ANIMATIONS
   ───────────────────────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* Shared hero bg-text watermark (ServicesPage, PricingPage, ContactPage) */
.page-bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

/* Shared page hero base */
.page-hero {
  min-height: 100vh;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 4rem;
}

.page-hero-eyebrow {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
  opacity: 0;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 300;
  line-height: .9;
  color: var(--white);
  text-align: center;
}

.page-hero-title .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: .06em;
}

.page-hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
}

.page-hero-title .word--italic span {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-sub {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .65);
  margin-top: 2rem;
  max-width: 560px;
  text-align: center;
  opacity: 0;
}

.page-scroll-line {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}


/* ─────────────────────────────────────────────────────────────
   15. SERVICES PAGE
   ───────────────────────────────────────────────────────────── */
.svc-block {
  padding: 9rem 4rem;
  position: relative;
  overflow: hidden;
}

.svc-block--dark {
  background: var(--deep);
}

.svc-block--light {
  background: var(--white);
}

.svc-block-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.svc-block-inner--reverse .svc-block-body {
  order: 2;
}

.svc-block-inner--reverse .svc-block-visual {
  order: 1;
}

.svc-block-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
  padding-right: 3rem;
  height: 100%;
  justify-content: center;
}

.svc-block--light .svc-block-meta {
  border-right-color: rgba(13, 13, 13, .08);
}


.svc-block-tag {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  writing-mode: vertical-rl;
}

.svc-block--light .svc-block-tag {
  color: var(--deep);
}

.svc-block-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.svc-block--light .svc-block-title {
  color: var(--deep);
}

.svc-block-title em {
  font-style: italic;
  color: var(--gold-light);
}

.svc-block--light .svc-block-title em {
  color: var(--gold);
}

.svc-block-lead {
  font-size: .9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, .5);
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.svc-block--light .svc-block-lead {
  color: var(--deep);
}

.svc-block-details {
  border: 1px solid rgba(184, 141, 201, .15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.svc-block--light .svc-block-details {
  border-color: rgba(13, 13, 13, .1);
}

.svc-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: .82rem;
}

.svc-block--light .svc-detail-row {
  border-bottom-color: rgba(13, 13, 13, .05);
}

.svc-detail-row:last-child {
  border-bottom: none;
}

.svc-detail-key {
  color: rgba(255, 255, 255, .6);
}

.svc-block--light .svc-detail-key {
  color: var(--deep);
}

.svc-detail-val {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: .95rem;
}

.svc-block--light .svc-detail-val {
  color: var(--deep);
}

.svc-block-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-visual-media {
  width: 380px;
  height: 480px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.svc-visual-media img,
.svc-visual-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-visual-media--light {
  box-shadow: 0 20px 60px rgba(15, 14, 71, .2);
}

.svc-visual-card {
  width: 280px;
  height: 360px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  gap: 1rem;
}

.svc-visual-card--light {
  background: rgba(13, 13, 13, .03);
  border-color: rgba(13, 13, 13, .08);
}


.svc-visual-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}


/* ─────────────────────────────────────────────────────────────
   16. PRICING PAGE
   ───────────────────────────────────────────────────────────── */
.pr-section {
  padding: 9rem 4rem;
}

.pr-section--dark {
  background: var(--white);
}

.pr-section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pr-section-header--white .pr-section-label {
  color: #94a7fa93;
}

.pr-section-header--white .pr-section-title {
  color: var(--deep);
}

/* Formas de Pagamento */
.pr-section-label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #94a7fa93;
  display: block;
  margin-bottom: 1rem;
}

.pr-section-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--deep);
}

.pr-section-sub {
  font-size: .85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .65);
  max-width: 560px;
  margin: 1rem auto 0;
}

.pr-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(13, 13, 13, .1);
}

/* Fundo base do card — carvão escuro */
.pr-card {
  background: #1a1a2e;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  transition: background .4s, transform .4s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Hover — escurece e sobe ligeiramente */
.pr-card:hover {
  background: var(--deep);
  transform: translateY(-4px);
}

/* Hover — texto secundário fica mais visível */
.pr-card:hover .pr-card-level,
.pr-card:hover .pr-card-cycle,
.pr-card:hover .pr-card-includes li {
  color: rgba(255, 255, 255, .6);
}

/* Hover — preço passa para gold-light */
.pr-card:hover .pr-card-price {
  color: var(--gold-light);
}

/* Hover — símbolo € passa para gold */
.pr-card:hover .pr-price-currency {
  color: var(--gold);
}

/* Hover — período (/mês) fica mais visível */
.pr-card:hover .pr-price-period {
  color: rgba(255, 255, 255, .5);
}

/* Card em destaque (mais procurado) — fundo mais profundo */
.pr-card--featured {
  background: var(--deep);
}

/* Featured — título e lista com branco suave */
.pr-card--featured .pr-card-level,
.pr-card--featured .pr-card-includes li {
  color: rgba(255, 255, 255, .6);
}

/* Featured — preço em gold-light */
.pr-card--featured .pr-card-price {
  color: var(--gold-light);
}

/* Featured — ciclo com branco ainda mais suave */
.pr-card--featured .pr-card-cycle {
  color: rgba(255, 255, 255, .5);
}

/* Featured — símbolo € em gold */
.pr-card--featured .pr-price-currency {
  color: var(--gold);
}

/* Featured — /mês quase transparente */
.pr-card--featured .pr-price-period {
  color: rgba(255, 255, 255, .4);
}

/* Featured — linha decorativa no topo sempre visível */
.pr-card--featured .pr-card-accent {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Linha decorativa no topo do card — invisível por defeito */
.pr-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background .4s;
}

/* Hover — linha dourada aparece no topo */
.pr-card:hover .pr-card-accent {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Badge "Mais Procurado" — canto superior direito */
.pr-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(255, 191, 255, .3); /* borda gold-light com opacidade */
  padding: .3rem .7rem;
  border-radius: 2px;
}

/* Nível do plano — ex: "1.º ao 4.º Ano" */
.pr-card-level {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .9);
  transition: color .4s;
}

/* Ciclo escolar — ex: "1.º CICLO" */
.pr-card-cycle {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  transition: color .4s;
}

/* Contentor do preço — agrupa valor + símbolo + período */
.pr-card-price {
  margin: 1rem 0;
  display: flex;
  align-items: baseline;
  gap: .2rem;
  color: rgba(255, 255, 255, .9);
  transition: color .4s;
}

/* Número do preço — ex: "160" */
.pr-price-amount {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
}

/* Símbolo € — dourado, alinhado ao topo */
.pr-price-currency {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  align-self: flex-start;
  margin-top: .8rem;
  transition: color .4s;
}

/* Período — ex: "/MÊS" */
.pr-price-period {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-left: .5rem;
  transition: color .4s;
}

/* Lista de inclusões — ex: "Apoio ao estudo diário" */
.pr-card-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .5rem;
}

/* Item da lista */
.pr-card-includes li {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  padding-left: 1.2rem;
  position: relative;
  transition: color .4s;
}

/* Traço dourado antes de cada item da lista */
.pr-card-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .7rem;
}

.pr-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .06);
}

.pr-row-card {
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .3s;
}

.pr-row-card:hover {
  background: rgba(184, 141, 201, .06);
}

.pr-row-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--deep);
  margin-bottom: .4rem;
}

.pr-row-sub {
  font-size: .75rem;
  color: var(--deep);
}

.pr-row-price {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--deep);
  white-space: nowrap;
}

.pr-row-price sup {
  font-size: 1rem;
  color: var(--deep);
}

.pr-ferias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(13, 13, 13, .1);
}

/* Fundo base — carvão escuro */
.pr-ferias-card {
  background: #1a1a2e;
  padding: 4rem 3rem;
  text-align: center;
  transition: background .4s;
}

/* Hover — escurece para deep */
.pr-ferias-card:hover {
  background: var(--deep);
}

/* Hover — texto secundário fica mais visível */
.pr-ferias-card:hover .pr-ferias-label,
.pr-ferias-card:hover .pr-ferias-note,
.pr-ferias-card:hover .pr-ferias-icon {
  color: rgba(255, 255, 255, .6);
}

/* Hover — preço passa para gold-light */
.pr-ferias-card:hover .pr-ferias-price {
  color: var(--gold-light);
}

/* Ícone do serviço de férias */
.pr-ferias-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, .45);
  transition: color .4s;
}

/* Label — ex: "ATL FÉRIAS" */
.pr-ferias-label {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 1.5rem;
  transition: color .4s;
}

/* Preço principal */
.pr-ferias-price {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  transition: color .4s;
}

/* Símbolo € — dourado */
.pr-ferias-price sup {
  font-size: 1.2rem;
  color: var(--gold);
}

/* Nota informativa — ex: "/semana" */
.pr-ferias-note {
  font-size: .75rem;
  color: rgba(255, 255, 255, .35);
  margin-top: 1rem;
  transition: color .4s;
}


/* ─────────────────────────────────────────────────────────────
   17. CONTACT PAGE
   ───────────────────────────────────────────────────────────── */
#contact-body {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 100vh;
}

.ct-info {
  background: var(--deep);
  padding: 8rem 4rem 8rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-info-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ct-info-block:first-child {
  padding-top: 0;
}

.ct-info-block:last-child {
  border-bottom: none;
}

.ct-info-label {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}

.ct-info-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  text-decoration: none;
  display: block;
  transition: color .3s;
}

.ct-info-main:hover {
  color: var(--gold-light);
}

.ct-info-main--large {
  font-size: 2.2rem;
  line-height: 1.1;
}

.ct-info-sub {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
  margin-top: .4rem;
}

.ct-info-gps {
  font-size: .68rem;
  color: rgba(255, 255, 255, .2);
  margin-top: .5rem;
  letter-spacing: .05em;
}

.ct-info-hours {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: .5rem;
}

.ct-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
}

.ct-hours-row--muted {
  color: rgba(255, 255, 255, .45);
}

.ct-socials {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-top: .5rem;
}

.ct-social-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .3s;
}

.ct-social-link:hover {
  color: var(--gold-light);
}

.ct-social-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .7;
  transition: opacity .3s;
}

.ct-social-link:hover .ct-social-icon {
  opacity: 1;
}

.ct-social-icon--insta {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
}

.ct-social-icon--fb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'/%3E%3C/svg%3E");
}

.ct-form-wrap {
  padding: 8rem 5rem 8rem 4rem;
  background-color: white;
}

.ct-form-header {
  margin-bottom: 3.5rem;
}

.ct-form-label {
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1rem;
}

.ct-form-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}

.ct-form-title em {
  font-style: italic;
  color: var(--deep);
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ct-form-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ct-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ct-field label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--deep);
}

.ct-field input,
.ct-field select,
.ct-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(13, 13, 13, .15);
  padding: .7rem 0;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--deep);
  outline: none;
  width: 100%;
  transition: border-color .3s;
  border-radius: 0;
  -webkit-appearance: none;
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-bottom-color: var(--gold);
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(13, 13, 13, .25);
  font-size: .85rem;
}

.ct-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* ── Custom Dropdown ── */
.ct-dropdown {
  position: relative;
  width: 100%;
}

.ct-dropdown-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: .7rem 0;
  text-align: left;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: rgba(15, 14, 71, .35);
  cursor: pointer;
  position: relative;
  outline: none;
}

.ct-dropdown-trigger.has-value {
  color: var(--deep);
}

.ct-dropdown-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(15, 14, 71, .15);
}

.ct-dropdown-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

.ct-dropdown.is-open .ct-dropdown-line::after {
  width: 100%;
}

.ct-dropdown-list {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  background: var(--white);
  list-style: none;
  z-index: 50;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16, 1, .3, 1), opacity .3s;
  opacity: 0;
  box-shadow: 0 8px 40px rgba(15, 14, 71, .1);
}

.ct-dropdown.is-open .ct-dropdown-list {
  max-height: 320px;
  opacity: 1;
  overflow-y: auto;
}

.ct-dropdown-item {
  padding: .9rem 1.2rem;
  font-size: .85rem;
  color: rgba(15, 14, 71, .6);
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid rgba(15, 14, 71, .04);
}

.ct-dropdown-item:last-child {
  border-bottom: none;
}

.ct-dropdown-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0;
}

.ct-dropdown-item:hover {
  background: rgba(15, 14, 71, .03);
  color: var(--deep);
}

.ct-dropdown-item:hover::before {
  opacity: 1;
}

.ct-dropdown-item.is-selected {
  color: var(--deep);
  font-weight: 500;
}

.ct-dropdown-item.is-selected::before {
  opacity: 1;
  background: var(--gold);
}

.ct-field textarea {
  resize: none;
  line-height: 1.7;
}

.ct-field-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--deep);
  transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

.ct-field input:focus~.ct-field-line,
.ct-field select:focus~.ct-field-line,
.ct-field textarea:focus~.ct-field-line {
  width: 100%;
}

.ct-field--error input,
.ct-field--error select,
.ct-field--error textarea {
  border-bottom-color: #e05c5c;
}

.ct-field--error label {
  color: #e05c5c;
}

.ct-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: .5rem;
}

.ct-checkbox {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--deep);
  cursor: pointer;
  user-select: none;
}

.ct-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(13, 13, 13, .2);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  position: relative;
  border-bottom: 1px solid rgba(13, 13, 13, .2);
}

.ct-checkbox input[type="checkbox"]:checked {
  background: var(--deep);
  border-color: var(--deep);
}

.ct-checkbox input[type="checkbox"]:checked::after {
  content: 'X';
  position: absolute;
  top: -1px;
  left: 2px;
  font-size: 1rem;
  color: transparent;
}

.ct-form-footer {
  flex-direction: row !important;
  align-items: flex-end;
  gap: 2rem;
}

.ct-form-gdpr {
  font-size: .7rem;
  line-height: 1.7;
  color: var(--deep);
  max-width: 320px;
}

.ct-submit {
  margin-left: auto;
  white-space: nowrap;
}

.ct-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(13, 13, 13, .2);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ct-success {
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(184, 141, 201, .3);
  border-radius: 4px;
  background: rgba(184, 141, 201, .06);
}

.ct-success-icon {
  display: block;
  font-size: 2rem;
  color: var(--deep);
  margin-bottom: .75rem;
}

.ct-success p {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--deep);
}

#contact-map {
  height: 60vh;
  min-height: 400px;
  position: relative;
}

.ct-map-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.ct-map-inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}


/* ─────────────────────────────────────────────────────────────
   18. CONTENT PAGE (Regulamento / genérico)
   ───────────────────────────────────────────────────────────── */
.content-hero {
  background: var(--deep);
  padding: 14rem 4rem 6rem;
}

.content-hero-label {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.content-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  color: var(--white);
}

.content-body {
  padding: 6rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  background: white;
}

.content-body-inner {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.content-body-inner h2,
.content-body-inner h3 {
  font-family: var(--font-serif);
  color: var(--ink);
  margin: 2rem 0 1rem;
}


/* ─────────────────────────────────────────────────────────────
   19. RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Navbar */
  nav {
    padding: 1.2rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  .nav-mobile-overlay {
    display: flex;
    pointer-events: none;
  }

  .nav-mobile-overlay.open {
    pointer-events: all;
  }

  .page-bg-text {
    display: none;
  }

  #intro::before {
    display: none;
  }

  /* HomePage sections */
  #intro {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
    gap: 3rem;
  }

  .services-wrapper {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .services-sticky {
    width: 100%;
    height: auto;
    padding: 4rem 1.5rem 2rem;
  }

  .services-pagination {
    display: none;
  }

  .services-scroll-area {
    width: 100%;
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }

  .service-card {
    height: auto;
    min-height: 50vh;
    scroll-snap-align: none;
    padding: 3rem 1.5rem;
    opacity: 1;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-inscription {
    grid-template-columns: 1fr;
  }

  #about {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
  }

  #regulamento {
    padding: 5rem 0;
  }

  .reg-header {
    padding: 0 1.5rem;
  }

  .reg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reg-item {
    padding: 1.5rem 1rem;
  }

  #pricing {
    padding: 6rem 2rem;
  }

  #cta,
  .svc-cta {
    padding: 7rem 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }

  /* Services Book */
  .services-book-wrap {
    padding: 4rem 1.5rem;
  }

  .services-book-header {
    margin-bottom: 2.5rem;
  }

  #servicesBook {
    width: calc(100vw - 3rem);
    height: auto;
  }

  .book-page-inner {
    padding: 2.5rem 1.5rem;
  }

  .book-page--cover .nav-logo img {
    height: 70px;
  }

  .book-page-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .book-page-text {
    font-size: .8rem;
  }

  .book-page-details {
    margin-top: 1rem;
  }

  .book-page-row {
    flex-direction: column;
    gap: .1rem;
  }

  /* Page heroes */
  .page-hero {
    padding: 0 2rem;
  }

  /* Services Page */
  .svc-block {
    padding: 4rem 1.5rem;
  }

  .svc-block-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .svc-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem;
  }

  .svc-block-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .svc-block-meta {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }


  .svc-block-tag {
    writing-mode: horizontal-tb;
  }

  .svc-block-inner--reverse .svc-block-body {
    order: unset;
  }

  .svc-block-inner--reverse .svc-block-visual {
    order: unset;
  }

  .svc-visual-media {
    width: 100%;
    height: 260px;
  }

  .svc-visual-card {
    width: 100%;
    height: 180px;
  }

  /* Pricing Page */
  .pr-section {
    padding: 4rem 1.5rem;
  }

  .pr-section-header {
    margin-bottom: 3rem;
  }

  .pr-section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .pr-cards-grid {
    grid-template-columns: 1fr;
  }

  .pr-card {
    padding: 2.5rem 1.5rem;
  }

  .pr-card--featured {
    order: -1;
  }

  .pr-price-amount {
    font-size: 3rem;
  }

  .pr-row-grid {
    grid-template-columns: 1fr;
  }

  .pr-row-card {
    padding: 2rem 1.5rem;
  }

  .pr-ferias-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pr-ferias-card {
    padding: 2rem 1rem;
  }


  /* Contact Page */
  #contact-body {
    grid-template-columns: 1fr;
  }

  .ct-info {
    padding: 4rem 2rem;
  }

  .ct-form-wrap {
    padding: 4rem 2rem;
  }

  .ct-form-row--2col {
    grid-template-columns: 1fr;
  }

  .ct-checkboxes {
    grid-template-columns: 1fr;
  }

  .ct-form-footer {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .ct-submit {
    margin-left: 0;
  }

  .ct-map-card {
    display: none;
  }

  #contact-map {
    height: auto;
  }

  /* Form antes do info no mobile */
  #contact-body {
    display: flex;
    flex-direction: column;
  }

  .ct-form-wrap {
    order: 1;
  }

  .ct-info {
    order: 2;
  }
}

/* ─────────────────────────────────────────────────────────────
   20. FAQ PAGE
   ───────────────────────────────────────────────────────────── */
#faq-body {
  background: var(--white);
  padding: 6rem 4rem 10rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(13, 13, 13, .1);
}

.faq-tab {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--deep);
  background: none;
  border: none;
  padding: .8rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color .3s;
  margin-bottom: -1px;
}

.faq-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #94a7fa93;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.faq-tab:hover {
  color: #94a7fa93;
}

.faq-tab.is-active {
  color: var(--deep);
}

.faq-tab.is-active::after {
  transform: scaleX(1);
}

.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid rgba(13, 13, 13, .08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(13, 13, 13, .08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: #94a7fa93;
  line-height: 1.3;
  transition: color .3s;
}

.faq-question:hover {
  color: var(--deep);
}

.faq-question[aria-expanded="true"] {
  color: var(--deep);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(13, 13, 13, .15);
  border-radius: 50%;
  position: relative;
  transition: border-color .3s, transform .4s cubic-bezier(.16, 1, .3, 1), background .3s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #94a7fa93;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s, background .3s;
}

.faq-icon::before {
  width: 10px;
  height: 1px;
}

.faq-icon::after {
  width: 1px;
  height: 10px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--deep);
  border-color: #94a7fa93;
  transform: rotate(45deg);
}

.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.16, 1, .3, 1);
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  font-size: .9rem;
  line-height: 1.85;
  color: #94a7fa93;
  padding-bottom: 0;
  transition: padding-bottom .45s cubic-bezier(.16, 1, .3, 1);
}

.faq-answer.is-open .faq-answer-inner {
  padding-bottom: 2rem;
}

.faq-answer-inner p {
  margin-bottom: .8rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner strong {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 900px) {

  /* Page heroes interiores */
  .page-hero {
    min-height: 60vh;
    padding: 0 1.5rem;
  }

  .page-hero-title {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .page-scroll-line {
    display: none;
  }

  /* Serviços */
  .svc-features {
    grid-template-columns: 1fr;
  }

  .svc-intro {
    padding: 4rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Preçário */
  .pr-ferias-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pr-section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .pr-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Regulamento (content page) */
  .content-hero {
    padding: 8rem 1.5rem 4rem;
  }

  .content-body {
    padding: 3rem 1.5rem;
  }

  /* FAQ */
  #faq-body {
    padding: 4rem 1.5rem 6rem;
  }

  .faq-tabs {
    gap: .25rem;
    margin-bottom: 2.5rem;
  }

  .faq-tab {
    padding: .6rem .8rem;
    font-size: .62rem;
  }

  .faq-question {
    font-size: clamp(.9rem, 3.5vw, 1.1rem);
    padding: 1.4rem 0;
  }

  /* Contacto */
  .ct-info-main--large {
    font-size: 1.6rem;
  }

  #contact-map {
    height: 400px;
  }

  .ct-map-inner {
    height: 400px;
  }
}