/* =========================
   SERVIÇOS — VISUAL CLEAN
========================= */

.services-hero{
  padding: 92px 0 70px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.services-hero-inner{
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.services-title{
  margin: 0 0 14px;
  font-size: clamp(40px, 6vw, 74px);
  letter-spacing: -0.8px;
  color: rgba(45,65,45,0.95);
}

.services-sub{
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.62);
}

/* =========================
   CATEGORIAS
========================= */
.services-categories{
  padding: 70px 0 10px;
}

.services-category{
  margin: 0 0 56px;
}

.category-title{
  margin: 0 0 22px;
  font-size: clamp(22px, 2.2vw, 30px);
  color: rgba(45,65,45,0.92);
  letter-spacing: -0.3px;
}

/* grelha de cards */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 980px){
  .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* =========================
   CARD (BRANCO CLEAN)
========================= */
.service-card{
  border-radius: 26px;
  border: 1px solid rgba(35,45,35,0.06);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 26px 60px rgba(20,30,20,0.08);
  padding: 26px 24px 22px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 34px 70px rgba(20,30,20,0.11);
}

.service-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(35,45,35,0.10);
  background: rgba(238,242,236,0.95);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.service-icon img{
  width: 22px;
  height: 22px;
  /* deixa tudo verdinho (se o SVG não tiver cor fixa lá dentro) */
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

.service-card h3{
  margin: 0 0 10px;
  font-size: 20px;
  color: rgba(45,65,45,0.92);
  letter-spacing: -0.2px;
}

.service-card p{
  margin: 0 0 18px;
  color: rgba(42,47,42,0.62);
  line-height: 1.7;
  font-size: 15.8px;
}

/* botão “Ver” */
.service-link{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: rgba(45,65,45,0.82);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.service-link:hover{
  transform: translateX(2px);
  color: rgba(45,65,45,0.95);
}

.service-link .arrow{
  opacity: 0.9;
}

/* =========================
   MODAL (SERVIÇOS) — centrado + smooth open/close
========================= */

.service-modal{
  position: fixed;
  inset: 0;
  z-index: 2500;

  /* centro sempre */
  display: grid;
  place-items: center;

  padding: 22px;

  /* animação de aparecer/desaparecer */
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.service-modal.is-open{
  opacity: 1;
  pointer-events: auto;
}

/* overlay */
.service-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(20, 25, 20, 0.45);
  backdrop-filter: blur(6px);

  opacity: 0;
  transition: opacity 260ms ease;
}

.service-modal.is-open .service-modal__overlay{
  opacity: 1;
}

/* dialog */
.service-modal__dialog{
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 44px);

  border-radius: 26px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 35px 90px rgba(20,30,20,0.18);
  overflow: hidden;

  z-index: 2;

  /* animação do “pop” */
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-modal.is-open .service-modal__dialog{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* close */
.service-modal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(245,247,243,0.95);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: rgba(45,65,45,0.9);
  display: grid;
  place-items: center;
  z-index: 5;
}

/* grid interno */
.service-modal__grid{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: stretch;
  min-height: 420px;
  height: min(640px, calc(100vh - 44px));
}

.service-modal__text{
  padding: 34px 34px 28px;
  overflow: auto;
}

.service-modal__top{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-modal__badge{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(235,239,233,0.95);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.service-modal__badge img{
  width: 22px;
  height: 22px;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

.service-modal__text h2{
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
  color: rgba(45,65,45,0.95);
  letter-spacing: -0.4px;
}

.service-modal__summary{
  margin: 0 0 18px;
  color: rgba(42,47,42,0.72);
  line-height: 1.8;
  font-size: 16.5px;
}

.service-modal__h3{
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(45,65,45,0.92);
}

.service-modal__list{
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-modal__list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(42,47,42,0.70);
  line-height: 1.6;
  font-size: 15.8px;
}

.service-modal__list li::before{
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(35,45,35,0.18);
  display: grid;
  place-items: center;
  color: rgba(60,110,70,0.95);
  font-weight: 800;
  flex: 0 0 auto;
  margin-top: 1px;
}

.service-modal__actions{
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-modal__image{
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(35,45,35,0.10);
  display: grid;
  place-items: center;
  padding: 22px;
}

.service-modal__image img{
  width: 100%;
  max-width: 430px;
  height: 420px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(20,30,20,0.14);
}

/* mobile: empilha */
@media (max-width: 860px){
  .service-modal{ padding: 14px; }

  .service-modal__grid{
    grid-template-columns: 1fr;
    height: min(720px, calc(100vh - 28px));
  }

  .service-modal__image{
    border-left: 0;
    border-top: 1px solid rgba(35,45,35,0.10);
  }

  .service-modal__image img{
    max-width: 520px;
    max-height: 280px;
  }
}

/* quando modal aberto: bloqueia scroll da página */
body.modal-open{
  overflow: hidden;
}

/* opcional: respeitar users com reduced motion */
@media (prefers-reduced-motion: reduce){
  .service-modal,
  .service-modal__overlay,
  .service-modal__dialog{
    transition: none !important;
  }
}


/* ========== CTA FINAL ========== */
.cta-final{
  padding: 95px 0 95px;
  background:
    radial-gradient(900px 520px at 50% 25%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.cta-box{
  max-width: 1100px;
  margin: 0 auto;
  padding: 66px 40px;
  border-radius: 30px;
  border: 1px solid rgba(35,45,35,0.10);
  background: rgba(240,243,238,0.75);
  box-shadow: 0 28px 60px rgba(20,30,20,0.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before{
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 40%, rgba(80,110,80,0.14), transparent 55%);
  transform: rotate(8deg);
  pointer-events: none;
}

.cta-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(235,239,233,0.95);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}

.cta-icon img{
  width: 24px;
  height: 24px;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

.cta-box h2{
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 44px);
  color: rgba(45,65,45,0.95);
  letter-spacing: -0.6px;
}

.cta-box p{
  margin: 0 auto;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.62);
}

.cta-actions{
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 680px){
  .cta-box{ padding: 54px 22px; }
  .cta-actions{ gap: 12px; }
}

/* ========== BACK TO TOP ========== */
.back-to-top{
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(240,243,238,0.95);
  border: 1px solid rgba(35,45,35,0.15);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.back-to-top img{
  width: 20px;
  height: 20px;
  filter: invert(32%) sepia(12%) saturate(620%) hue-rotate(70deg);
}

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover{
  box-shadow: 0 16px 30px rgba(20,30,20,0.14);
  transform: translateY(-2px);
}

/* =========================
   COMO FUNCIONA
========================= */
.how-it-works{
  padding: 100px 0 110px;
  background:
    radial-gradient(900px 520px at 50% 20%, rgba(80,110,80,0.10), transparent 60%),
    linear-gradient(180deg, rgba(245,247,243,0.35), rgba(245,247,243,0.55));
}

.how-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.how-header h2{
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  color: rgba(45,65,45,0.95);
  letter-spacing: -0.6px;
}

.how-header p{
  font-size: 18px;
  line-height: 1.7;
  color: rgba(42,47,42,0.65);
}

/* =========================
   STEPS
========================= */
.how-steps{
  --gap: 24px; /* variável para linha bater certo */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
}

/* =========================
   CARD
========================= */
.how-card{
  position: relative;
  min-width: 0;
  background: rgba(255,255,255,0.96);
  border-radius: 28px;
  border: 1px solid rgba(35,45,35,0.08);
  padding: 30px 28px 32px; /* só uma vez */
  box-shadow: 0 26px 60px rgba(20,30,20,0.10);
}


/* linha entre cards (controlada por classes) */
.how-card:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  right: calc(var(--gap) * -1);
  width: var(--gap);
  height: 2px;
  background: rgba(80,110,80,0.35);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition:
    transform var(--line-dur, 320ms) ease,
    opacity 180ms ease;
  pointer-events: none;
}

/* quando o card “ativa” a linha */
.how-card.line-run:not(:last-child)::after{
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

/* se quiseres garantir que fica sempre “cheia” depois */
.how-card.line-done:not(:last-child)::after{
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}


.how-number{
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: rgba(60,110,70,0.9);
  margin-bottom: 8px;
}

.how-tag{
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(235,239,233,0.95);
  color: rgba(45,65,45,0.75);
}

.how-card h3{
  margin: 14px 0 12px;
  font-size: 22px;
  color: rgba(45,65,45,0.95);
  letter-spacing: -0.3px;
}

.how-card p{
  margin: 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(42,47,42,0.70);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .how-steps{
    grid-template-columns: 1fr;
    --gap: 26px;
  }

  .how-card::after{
    display: none;
  }
}

/* Reveal base */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Scale cards (serviços + how) */
.services-grid .service-card,
.how-steps .how-card{
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}
.services-grid .service-card.is-visible,
.how-steps .how-card.is-visible{
  opacity: 1;
  transform: scale(1);
}

.service-card{
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(20,30,20,0.14),
    0 0 0 1px rgba(80,110,80,0.12);
  border-color: rgba(80,110,80,0.25);
}

.service-icon{
  transition: transform 260ms ease, background 260ms ease;
}

.service-card:hover .service-icon{
  transform: scale(1.06) rotate(-2deg);
  background: rgba(225,235,228,1);
}


/* =========================
   TERAPIA TRANSPESSOAL FEATURE
========================= */

.transpersonal-feature {
  margin: 0 0 72px;
}

.transpersonal-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  gap: 56px;
  align-items: start;
  background: linear-gradient(180deg, #f8fbf7 0%, #f4f7f2 100%);
  border: 1px solid rgba(67, 94, 67, 0.12);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(53, 72, 53, 0.08);
}

.transpersonal-content {
  min-width: 0;
}

.transpersonal-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(72, 104, 72, 0.1);
  color: #466346;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.transpersonal-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  color: #3f5640;
}

.transpersonal-text {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #667266;
  max-width: 640px;
}

.transpersonal-includes {
  margin-top: 50px;
  max-width: 760px;
}

.transpersonal-includes h3 {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: #3f5640;
}

.transpersonal-columns {
  display: flex;
  gap: 300px;
  align-items:flex-start;
}

.transpersonal-list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.transpersonal-list li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 18px;
  color: #5f6b5f;
  font-size: 0.98rem;
  line-height: 1.55;
  white-space: nowrap;
}

.transpersonal-list li:last-child {
  margin-bottom: 0;
}

.transpersonal-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #5b7a5b;
  font-size: 0.8rem;
}

.transpersonal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.transpersonal-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
  min-width: 0;
  padding-top: 34px;
}

.transpersonal-visual img {
  width: 100%;
  max-width: 340px;
  height: 360px;
  display: block;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(53, 72, 53, 0.12);
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .transpersonal-box {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }

  .transpersonal-visual {
    order: -1;
    padding-top: 0;
  }

  .transpersonal-visual img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .transpersonal-columns {
    flex-direction: column;
    gap: 14px;
  }

  .transpersonal-box {
    border-radius: 24px;
    padding: 22px;
  }

  .transpersonal-title {
    font-size: 1.9rem;
  }

  .transpersonal-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .transpersonal-includes {
    margin-top: 32px;
  }

  .transpersonal-list li {
    margin-bottom: 14px;
  }
}

/* =========================
   MEDITASENSE FEATURE
========================= */

.meditasense-feature {
  margin: 0 0 72px;
}

.meditasense-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  gap: 56px;
  align-items: start;
  background: linear-gradient(180deg, #f8fbf7 0%, #f4f7f2 100%);
  border: 1px solid rgba(67, 94, 67, 0.12);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(53, 72, 53, 0.08);
}

.meditasense-content {
  min-width: 0;
}

.meditasense-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(72, 104, 72, 0.1);
  color: #466346;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.meditasense-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  color: #3f5640;
}

.meditasense-text {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: #667266;
  max-width: 640px;
}

.meditasense-includes {
  margin-top: 38px;
  max-width: 760px;
}

.meditasense-includes h3 {
  margin: 0 0 22px;
  font-size: 1.1rem;
  color: #3f5640;
}

.meditasense-columns {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.meditasense-list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.meditasense-list li {
  position: relative;
  padding-left: 22px;
  margin: 0 0 16px;
  color: #5f6b5f;
  font-size: 0.98rem;
  line-height: 1.55;
}

.meditasense-list li:last-child {
  margin-bottom: 0;
}

.meditasense-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #5b7a5b;
  font-size: 0.8rem;
}

.meditasense-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.meditasense-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: start;
  min-width: 0;
  padding-top: 34px;
}

.meditasense-visual img {
  width: 100%;
  max-width: 380px;
  height: 500px;
  display: block;
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(53, 72, 53, 0.12);
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .meditasense-box {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 28px;
  }

  .meditasense-visual {
    order: -1;
    padding-top: 0;
  }

  .meditasense-visual img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .meditasense-columns {
    flex-direction: column;
    gap: 14px;
  }

  .meditasense-box {
    border-radius: 24px;
    padding: 22px;
  }

  .meditasense-title {
    font-size: 1.9rem;
  }

  .meditasense-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .meditasense-includes {
    margin-top: 30px;
  }

  .meditasense-list li {
    margin-bottom: 14px;
  }
}


/* =========================
   BOOKING MODAL
========================= */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 18, 0.52);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.booking-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(720px, 100%);
  background: linear-gradient(180deg, #466346 0%, #3f5640 100%);
  color: #f8f7f2;
  box-shadow: -24px 0 60px rgba(18, 28, 20, 0.28);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.22,1,.36,1);
  overflow-y: auto;
  padding: 34px 32px 40px;
  font-family: inherit;
}

.booking-modal.is-open {
  pointer-events: auto;
}

.booking-modal.is-open .booking-overlay {
  opacity: 1;
}

.booking-modal.is-open .booking-panel {
  transform: translateX(0);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.booking-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.booking-head {
  padding-right: 64px;
  margin-bottom: 28px;
}

.booking-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-head h2 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.02;
  color: #ffffff;
}

.booking-head p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
}

.booking-form {
  display: block;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 9px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(3px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-group option {
  color: #3f5640;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.11);
}

.booking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.booking-actions .btn.btn-primary {
  background: #ffffff;
  color: #3f5640;
  border: 1px solid #ffffff;
}

.booking-actions .btn.btn-primary:hover {
  background: #f3f1ea;
  color: #3f5640;
}

.booking-actions .btn.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.booking-actions .btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

body.booking-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .booking-panel {
    width: 100%;
    padding: 24px 18px 30px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-head h2 {
    font-size: 2.2rem;
  }
}

.booking-consent {
  margin-top: 6px;
  margin-bottom: 22px;
}

.booking-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.6;
}

.booking-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-checkbox .checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  margin-top: 2px;
  position: relative;
  background: transparent;
  transition: all 0.2s ease;
}

.booking-checkbox input:checked + .checkmark {
  background: #c9c06e;
  border-color: #c9c06e;
}

.booking-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #2f4632;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.booking-checkbox a {
  color: #e7dd93;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-checkbox a:hover {
  color: #fff1a8;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 18px 24px;
  font-size: 1.08rem;
  font-weight: 700;
  background: #c9c06e !important;
  color: #ffffff !important;
  border: 1px solid #c9c06e !important;
  box-shadow: 0 10px 24px rgba(201, 192, 110, 0.22);
}

.booking-submit:hover {
  background: #d6cc79 !important;
  border-color: #d6cc79 !important;
  color: #ffffff !important;
}

.booking-actions .btn.btn-ghost {
  align-self: flex-start;
  min-width: 130px;
  border-radius: 999px;
}

/* =========================
   FOOTER LEGAL LINKS
========================= */

.footer-bottom{
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid rgba(0,0,0,0.08);

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.footer-legal{
  font-size:0.95rem;
  color:#6a736a;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
}

.footer-legal a{
  color:#6a736a;
  text-decoration:none;
  transition:color .2s ease;
}

.footer-legal a:hover{
  color:#466346;
  text-decoration:underline;
}

.footer-copy{
  font-size:0.9rem;
  color:#7c857c;
}

/* =========================================================
   RESPONSIVO LIMPO — SERVIÇOS / MOBILE / TABLET
========================================================= */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html,
body{
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body{
  -webkit-text-size-adjust: 100%;
}

img,
video,
iframe{
  max-width: 100%;
}

h1, h2, h3, p, a, span, div, li, button{
  overflow-wrap: break-word;
}

.container{
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

/* =========================================================
   HEADER + HAMBURGUER
========================================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 3000;
}

.header-inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  min-width: 0;
  flex: 1;
}

.brand-text{
  min-width: 0;
}

.brand-title,
.brand-subtitle{
  display: block;
}

.brand-title{
  white-space: nowrap;
}

.brand-subtitle{
  line-height: 1.2;
}

.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(35,45,35,0.12);
  background: rgba(255,255,255,0.88);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 12px 26px rgba(20,30,20,0.08);
  z-index: 5001;
  pointer-events: auto !important;
}

.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #3f5640;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;
}

body.nav-open .nav-toggle span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2){
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay{
  display: none;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px){

  .container{
    width: min(100% - 36px, 960px);
  }

  .header-inner{
    min-height: 78px;
  }

  .header-cta{
    display: none !important;
  }

  .nav-toggle{
    display: inline-flex !important;
    flex: 0 0 auto;
  }

  .nav-mobile-overlay{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(18, 24, 19, 0.42);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 4998;
  }

  body.nav-open .nav-mobile-overlay{
    opacity: 1;
    pointer-events: auto;
  }

  .nav{
    position: fixed !important;
    top: 86px;
    left: 18px;
    right: 18px;
    width: auto !important;
    max-width: none !important;

    display: flex !important;
    flex-direction: column;
    gap: 8px;

    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(35,45,35,0.10);
    box-shadow: 0 24px 70px rgba(20,30,20,0.18);
    backdrop-filter: blur(16px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 4999;
  }

  body.nav-open .nav{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link{
    width: 100%;
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 1rem;
    color: #3f5640;
    background: rgba(245,247,243,0.75);
  }

  .nav-link.is-active,
  .nav-link:hover{
    background: rgba(70,99,70,0.12);
  }

  body.nav-open{
    overflow: hidden;
  }
}

/* =========================================================
   MOBILE — SERVIÇOS
========================================================= */

@media (max-width: 768px){

  html,
  body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .container{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .site-header{
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .header-inner{
    width: 100%;
    max-width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    overflow: visible;
  }

  .brand{
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 58px);
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
  }

  .brand-mark{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }

  .brand-text{
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .brand-title{
    display: block;
    font-size: 1.05rem;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle{
    display: block;
    font-size: .82rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle{
    display: inline-flex !important;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    min-width: 46px;
  }

  /* HERO */
  .services-hero{
    padding: 68px 0 46px;
  }

  .services-title{
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .services-sub{
    font-size: 1rem;
    line-height: 1.65;
  }

  .services-categories{
    padding: 52px 0 10px;
  }

  .services-category{
    margin-bottom: 46px;
  }

  .category-title{
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.18;
  }

  .services-grid{
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .service-card{
    border-radius: 22px;
    padding: 24px 20px;
    min-height: auto;
  }

  .service-card h3{
    font-size: 1.15rem;
  }

  .service-card p{
    font-size: .96rem;
    line-height: 1.68;
  }

  /* TERAPIA TRANSPESSOAL */
  .transpersonal-feature,
  .meditasense-feature{
    margin-bottom: 52px;
  }

  .transpersonal-box,
  .meditasense-box{
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .transpersonal-visual,
  .meditasense-visual{
    order: -1;
    padding-top: 0;
  }

  .transpersonal-visual img,
  .meditasense-visual img{
    width: 100%;
    max-width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
  }

  .transpersonal-title,
  .meditasense-title{
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .transpersonal-text,
  .meditasense-text{
    font-size: .98rem;
    line-height: 1.75;
  }

  .transpersonal-includes{
    margin-top: 32px;
  }

  .transpersonal-columns,
  .meditasense-columns{
    flex-direction: column;
    gap: 12px;
  }

  .transpersonal-list li,
  .meditasense-list li{
    white-space: normal !important;
    margin-bottom: 14px;
  }

  .transpersonal-actions,
  .meditasense-actions{
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .transpersonal-actions .btn,
  .meditasense-actions .btn{
    width: 100%;
    justify-content: center;
  }

  /* COMO FUNCIONA */
  .how-it-works{
    padding: 72px 0 78px;
  }

  .how-header{
    margin-bottom: 38px;
  }

  .how-header h2{
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .how-header p{
    font-size: 1rem;
    line-height: 1.65;
  }

  .how-steps{
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .how-card{
    border-radius: 24px;
    padding: 28px 22px;
  }

  .how-card::after{
    display: none !important;
  }

  .how-tag{
    position: static;
    display: inline-flex;
    margin-bottom: 12px;
  }

  .how-card h3{
    font-size: 1.25rem;
  }

  .how-card p{
    font-size: .98rem;
    line-height: 1.68;
  }

  /* CTA */
  .cta-final{
    padding: 72px 0;
  }

  .cta-box{
    padding: 44px 20px;
    border-radius: 26px;
  }

  .cta-box h2{
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .cta-box p{
    font-size: 1rem;
  }

  .cta-actions{
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .cta-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .btn,
  .btn-lg{
    max-width: 100%;
    white-space: nowrap;
  }

  /* FOOTER */
  .footer-card{
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .footer-col{
    text-align: center;
    align-items: center;
  }

  .brand-line{
    justify-content: center;
  }

  .footer-desc{
    margin-inline: auto;
  }

  .social{
    justify-content: center;
  }

  .footer-bottom{
    gap: 16px;
  }

  .footer-legal{
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-legal span{
    display: none;
  }

  .footer-copy{
    text-align: center;
    line-height: 1.5;
  }

  .complaints-book-link{
    left: 14px;
    bottom: 14px;
  }

  .complaints-book-link img{
    width: 105px;
    max-width: 38vw;
    height: auto;
  }

  .back-to-top{
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 18px;
  }

  .reveal{
    transform: translateY(18px);
  }

  .reveal.is-visible{
    transform: translateY(0);
  }
}

/* =========================================================
   SERVICE MODAL — MOBILE
========================================================= */

@media (max-width: 768px){

  .service-modal{
    padding: 12px;
    z-index: 9000;
  }

  .service-modal__dialog{
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
    overflow-y: auto;
  }

  .service-modal__grid{
    grid-template-columns: 1fr !important;
    height: auto;
    min-height: 0;
  }

  .service-modal__text{
    padding: 26px 18px 20px;
    overflow: visible;
  }

  .service-modal__top{
    align-items: flex-start;
    padding-right: 46px;
  }

  .service-modal__text h2{
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.16;
  }

  .service-modal__summary{
    font-size: .96rem;
    line-height: 1.7;
  }

  .service-modal__list li{
    font-size: .94rem;
  }

  .service-modal__actions{
    flex-direction: column;
    gap: 10px;
  }

  .service-modal__actions .btn{
    width: 100%;
    justify-content: center;
  }

  .service-modal__image{
    border-left: 0;
    border-top: 1px solid rgba(35,45,35,0.10);
    padding: 16px;
  }

  .service-modal__image img{
    width: 100%;
    max-width: 100%;
    height: 260px;
    max-height: none;
    border-radius: 20px;
    object-fit: cover;
  }

  .service-modal__close{
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

/* =========================================================
   POPUP MARCAR CONSULTA — MOBILE
========================================================= */

@media (max-width: 768px){

  .booking-panel{
    inset: auto 0 0 0;
    top: auto;
    right: auto;

    width: 100%;
    height: min(92dvh, 760px);
    border-radius: 28px 28px 0 0;

    padding: 26px 18px 28px;
    transform: translateY(105%);
    box-shadow: 0 -22px 60px rgba(18,28,20,0.28);
  }

  .booking-modal.is-open .booking-panel{
    transform: translateY(0);
  }

  .booking-overlay{
    background: rgba(17,24,18,0.56);
  }

  .booking-close{
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 1.7rem;
    display: grid;
    place-items: center;
  }

  .booking-head{
    padding-right: 50px;
    margin-bottom: 22px;
  }

  .booking-pill{
    padding: 7px 12px;
    font-size: .82rem;
  }

  .booking-head h2{
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .booking-head p{
    font-size: .94rem;
    line-height: 1.65;
  }

  .booking-grid{
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group{
    margin-bottom: 14px;
  }

  .form-group label{
    font-size: .92rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea{
    min-height: 48px;
    border-radius: 15px;
    padding: 13px 14px;
    font-size: .95rem;
  }

  .form-group textarea{
    min-height: 96px;
  }

  .booking-checkbox{
    font-size: .88rem;
    line-height: 1.55;
  }

  .booking-submit{
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* =========================================================
   COOKIE PREFERENCES — MOBILE
========================================================= */

@media (max-width: 768px){

  .cookie-preferences{
    position: fixed !important;
    inset: 0 !important;
    z-index: 10000 !important;
    width: 100vw !important;
    height: 100dvh !important;
    overflow: hidden !important;
  }

  .cookie-preferences-overlay{
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: rgba(17, 24, 18, 0.56) !important;
    backdrop-filter: blur(5px);
  }

  .cookie-preferences-panel{
    position: fixed !important;

    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;

    transform: translate(-50%, -50%) !important;

    width: calc(100vw - 28px) !important;
    max-width: 440px !important;
    min-width: 0 !important;

    max-height: calc(100dvh - 28px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;

    margin: 0 !important;
    padding: 22px 18px 20px !important;

    border-radius: 26px !important;
    box-sizing: border-box !important;
  }

  .cookie-preferences-panel *{
    max-width: 100%;
    box-sizing: border-box;
  }

  .cookie-preferences-close{
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 14px !important;
    z-index: 2;
  }

  .cookie-preferences-panel h2{
    font-size: 1.45rem !important;
    line-height: 1.18 !important;
    padding-right: 48px !important;
    margin-bottom: 10px !important;
  }

  .cookie-preferences-panel p{
    font-size: .92rem !important;
    line-height: 1.55 !important;
  }

  .cookie-options{
    display: grid !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .cookie-option{
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;

    padding: 15px !important;
    border-radius: 18px !important;
    min-width: 0 !important;
  }

  .cookie-option h3{
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }

  .cookie-option p{
    font-size: .86rem !important;
    line-height: 1.5 !important;
  }

  .cookie-required{
    width: fit-content !important;
    max-width: 100% !important;
    white-space: normal !important;
  }

  .cookie-switch{
    justify-self: start !important;
  }

  .cookie-preferences-actions{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .cookie-preferences-actions .cookie-btn,
  .cookie-btn{
    width: 100% !important;
    min-height: 46px !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    border-radius: 999px !important;
  }
}

/* =========================================================
   ECRÃS PEQUENOS
========================================================= */

@media (max-width: 420px){

  .container{
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-inner{
    min-height: 76px;
  }

  .brand{
    max-width: calc(100% - 54px);
    gap: 10px;
  }

  .brand-mark{
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .brand-title{
    font-size: 1rem;
  }

  .brand-subtitle{
    font-size: .78rem;
  }

  .nav-toggle{
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .services-hero{
    padding: 54px 0 36px;
  }

  .services-title{
    font-size: clamp(2.05rem, 12vw, 2.75rem);
  }

  .services-sub{
    font-size: .95rem;
  }

  .transpersonal-box,
  .meditasense-box{
    padding: 22px 16px;
  }

  .transpersonal-visual img,
  .meditasense-visual img{
    height: 260px;
  }

  .service-modal__image img{
    height: 220px;
  }

  .booking-panel{
    height: 94dvh;
    padding-inline: 15px;
  }

  .booking-head h2{
    font-size: 1.85rem;
  }

  .booking-head p{
    font-size: .9rem;
  }

  .btn,
  .btn-lg{
    white-space: normal;
  }
}

@media (max-width: 390px){

  .cookie-preferences-panel{
    width: calc(100vw - 20px) !important;
    max-height: calc(100dvh - 20px) !important;
    padding: 20px 14px 16px !important;
    border-radius: 22px !important;
  }

  .cookie-preferences-panel h2{
    font-size: 1.3rem !important;
  }

  .cookie-option{
    padding: 13px !important;
  }

  .cookie-preferences-actions .cookie-btn{
    font-size: .88rem !important;
    padding-inline: 12px !important;
  }
}

@media (max-width: 380px){

  .brand-mark{
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .brand-title{
    font-size: .98rem;
  }

  .brand-subtitle{
    font-size: .76rem;
  }

  .nav-toggle{
    width: 42px;
    height: 42px;
  }

  .btn,
  .btn-lg{
    padding-inline: 18px;
    min-height: 48px;
  }
}