/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ─────────────────────────────────────── */
/* ── LOADING OVERLAY ──────────────────────────────── */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
.loading-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: load-pulse 1.6s ease-in-out infinite;
}
.loading-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
@keyframes load-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

:root {
  --green:     #2A7A51;
  --green-dk:  #1a5c3b;
  --lime:      #8DC63F;
  --pale:      #f4fbf6;
  --white:     #ffffff;
  --text:      #1e2a22;
  --muted:     #5a7060;
  --r:         16px;
  --r-sm:      10px;
  --shadow:    0 4px 20px rgba(0,0,0,.09);
  --trans:     all .25s ease;
}

/* ── BASE ──────────────────────────────────────────── */
html, body {
  height: 100%;
  overflow: hidden;
  overflow-x: hidden;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--green);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 800; }

/* ── SCROLL WRAP ───────────────────────────────────── */
.scroll-wrap {
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
@supports (height: 100dvh) { .scroll-wrap { height: 100dvh; } }
.scroll-wrap::-webkit-scrollbar { display: none; }

/* ── PAGES ─────────────────────────────────────────── */
.page {
  min-height: 100vh;          /* fallback navegadores antigos */
  min-height: 100svh;         /* svh = viewport com barras visíveis — nunca oculta conteúdo */
  height: auto;               /* cresce com o conteúdo; scroll-snap ainda funciona */
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── PAGE DECO (ícone decorativo à direita) ───────── */
.page-deco {
  position: absolute;
  right: -5px;
  top: -10px;
  width: 85px;
  height: 85px;
  z-index: -1;
  pointer-events: none;
}
.page-deco svg { width: 100%; height: 100%; }

/* Ajuste posição carro */
.page-deco--parking { top: -30px; }

/* ── PAGE INNER ────────────────────────────────────── */
.page-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  padding: .8rem 1rem;
  padding-bottom: max(.8rem, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25rem;
}

/* ── SHARED TYPOGRAPHY ─────────────────────────────── */
.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}

.page-h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 1.1rem;
}

.page-h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: .85rem;
}

.h2-light { color: #fff; }

.page-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.page-note {
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: .85rem;
}

.sect-icon {
  font-size: 2rem;
  margin-bottom: .35rem;
  display: block;
}

/* ═══════════════════════════════════════════════════
   1 · CAPA
═══════════════════════════════════════════════════ */
.page-cover {
  background: var(--green);
  color: #fff;
  justify-content: space-between;
}

.cover-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cover-blob--tl {
  width: 300px; height: 300px;
  top: -110px; left: -90px;
  background: rgba(255,255,255,.06);
}
.cover-blob--br {
  width: 240px; height: 240px;
  bottom: -90px; right: -70px;
  background: rgba(141,198,63,.14);
}

.cover-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 0;
  gap: .1rem;
}

.cover-supra {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .22em;
  color: rgba(255,255,255,.85);
}

.cover-script {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  margin-bottom: .9rem;
  letter-spacing: .01em;
}

.cover-logo-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem 1.8rem 1rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  width: min(320px, 88vw);
}

.cover-logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.cover-chips {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: .9rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.28);
  padding: .42rem .85rem;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  transition: var(--trans);
  -webkit-tap-highlight-color: transparent;
}
.chip:active { transform: scale(.96); }
.chip--wa { background: rgba(37,211,102,.22); border-color: rgba(37,211,102,.45); }

.cover-address {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.swipe-hint {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  font-weight: 600;
  padding: 1.4rem;
  animation: hint-bounce 2.2s ease-in-out infinite;
}
@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ═══════════════════════════════════════════════════
   2 · BOAS-VINDAS
═══════════════════════════════════════════════════ */
.page-welcome { background: var(--white); }
.page-welcome .page-inner { padding-top: .8rem; padding-bottom: .6rem; gap: .35rem; }

.prose-card {
  background: var(--pale);
  border-radius: var(--r);
  padding: .6rem .85rem;
  border-left: 4px solid var(--lime);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .35rem;
}
.prose-card p { font-size: .85rem; line-height: 1.6; color: var(--text); }
.prose-card strong { color: var(--green); }
.prose-card em { font-style: italic; color: var(--green-dk); }

.welcome-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: 0;
}

.cta-line {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--green);
  flex: 1;
  line-height: 1.25;
}

.welcome-img {
  width: 80px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.1));
}

/* ═══════════════════════════════════════════════════
   3 · VISITAÇÃO
═══════════════════════════════════════════════════ */
.page-visit { background: var(--pale); }
.page-visit .page-inner { gap: .5rem; }
.page-visit .page-intro { font-size: .82rem; margin-bottom: 0; line-height: 1.5; }
.page-visit .page-note { font-size: .75rem; margin-top: 0; }
.page-visit .sect-icon { font-size: 1.4rem; margin-bottom: 0; }

.schedule-list {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .3rem .75rem;
  font-size: .82rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.schedule-row:last-child { border-bottom: none; }
.stime {
  color: var(--green);
  font-weight: 800;
  white-space: nowrap;
  margin-left: .5rem;
}

.highlight-box {
  background: var(--green);
  border-radius: var(--r-sm);
  padding: .4rem .75rem;
  color: #fff;
}
.highlight-label { font-size: .75rem; font-weight: 700; margin-bottom: .2rem; }
.highlight-times { display: flex; gap: .3rem; flex-wrap: wrap; justify-content: center; }
.highlight-times span {
  background: rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .15rem .5rem;
  font-size: .75rem;
  font-weight: 800;
}


/* ═══════════════════════════════════════════════════
   4 · ESTACIONAMENTO
═══════════════════════════════════════════════════ */
.page-parking { background: var(--white); }

mark {
  background: #fff3b0;
  color: #7a5c00;
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 700;
}

/* placa ao lado das regras */
.parking-wrap {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-top: .25rem;
}
.parking-wrap .rule-list { flex: 1; }
.parking-sign-img {
  width: 95px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.12));
}

.rule-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.page-parking .page-inner > .rule-row { margin-bottom: .85rem; }
.rule-row {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--pale);
  border-radius: var(--r-sm);
  padding: .85rem .95rem;
}
.rule-bull { font-size: 1.25rem; flex-shrink: 0; }
.rule-row p { font-size: 1rem; line-height: 1.65; color: var(--text); }

/* ═══════════════════════════════════════════════════
   5 · ROTINAS & CONTATOS
═══════════════════════════════════════════════════ */
.page-routine { background: var(--pale); }

.contact-block {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: .75rem;
}
.contact-title {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--green);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: var(--r-sm);
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--trans);
  -webkit-tap-highlight-color: transparent;
}
.contact-btn:active { transform: scale(.97); opacity: .9; }
.contact-btn--wa { background: #25d366; }
.contact-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
}

.social-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  background: var(--white);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  box-shadow: var(--shadow);
}

/* ── Routine time-period cards ── */
.rt-stack { display: flex; flex-direction: column; gap: .45rem; }

.rt-card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.rt-card__head {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .75rem;
  color: #fff;
}
.rt-card__head--morning   { background: #D97706; }
.rt-card__head--afternoon { background: var(--green); }
.rt-card__head--night     { background: #2C3E6B; }

.rt-card__emoji  { font-size: 1.1rem; flex-shrink: 0; }
.rt-card__period { font-size: .85rem; font-weight: 900; letter-spacing: .03em; flex: 1; }
.rt-card__range  {
  font-size: .72rem; font-weight: 700; opacity: .85;
  white-space: nowrap;
  background: rgba(255,255,255,.18);
  border-radius: 100px;
  padding: .1rem .45rem;
}

.rt-card__body { padding: .3rem 0; list-style: none; margin: 0; }

.rt-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .25rem .75rem;
  border-bottom: 1px solid rgba(0,0,0,.04);
  font-size: .8rem;
}
.rt-item:last-child { border-bottom: none; }
.rt-item__emoji { font-size: .9rem; flex-shrink: 0; width: 1.2em; text-align: center; }
.rt-item__label { flex: 1; color: var(--text); font-weight: 600; line-height: 1.35; }

.rt-badge {
  font-size: .68rem; font-weight: 800;
  color: var(--green);
  background: var(--pale);
  border-radius: 100px;
  padding: .1rem .4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.rt-multi {
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow);
  padding: .55rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.rt-multi__label {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.rt-multi__pills { display: flex; flex-wrap: wrap; gap: .3rem; }
.rt-multi__pill {
  font-size: .72rem; font-weight: 700;
  border-radius: 100px;
  padding: .15rem .5rem;
  line-height: 1.3;
}
.rt-multi__pill--included { background: rgba(42,122,81,.12); color: var(--green-dk); }
.rt-multi__pill--demand   { background: rgba(0,0,0,.06); color: var(--muted); }
.rt-multi__note {
  font-size: .7rem; color: var(--muted); line-height: 1.4;
  display: flex; align-items: center; gap: .2rem; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   6 · EQUIPE
═══════════════════════════════════════════════════ */
.page-team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.team-card {
  display: flex;
  flex-direction: column;
  background: var(--pale);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  background: #dde8e0;
}
.ti {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 1rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.88);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  z-index: 1;
  line-height: 1;
}
.team-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .5rem .45rem .55rem;
  gap: .1rem;
}
.team-role {
  font-size: .75rem;
  font-weight: 700;
  color: var(--green-dk);
  line-height: 1.2;
}
.team-name {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   7 · FESTAS & MENSALIDADES
═══════════════════════════════════════════════════ */
.page-fees { background: var(--pale); }
.page-fees .page-inner { gap: .4rem; }

.info-card {
  background: var(--white);
  border-radius: var(--r);
  padding: .7rem .9rem;
  box-shadow: var(--shadow);
}
.info-card + .info-card { margin-top: .5rem; }

.info-card__icon { font-size: 1.3rem; display: block; margin-bottom: .1rem; }
.info-card__title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: .2rem;
}
.info-card p {
  font-size: .85rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: .2rem;
}
.info-card__note {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}
.festa-img { display: block; width: 100%; max-height: 160px; object-fit: cover; border-radius: var(--r-sm); margin: .25rem 0 .35rem; }

/* ── Kit Festa ── */
.page-kitfesta { background: var(--pale); }
.kitfesta-text {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: .6rem;
}
.festa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--green);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--trans);
  -webkit-tap-highlight-color: transparent;
  align-self: center;
}
.festa-btn:active { transform: scale(.97); opacity: .9; }

/* ═══════════════════════════════════════════════════
   8 · MEDICAMENTOS
═══════════════════════════════════════════════════ */
.page-meds { background: var(--white); }
.page-meds .page-inner { gap: .35rem; }

.meds-card {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--pale);
  border-radius: var(--r);
  padding: .75rem .9rem;
  border-left: 4px solid var(--green);
  margin-bottom: 0;
}
.meds-badge {
  background: var(--green);
  color: #fff;
  border-radius: var(--r-sm);
  padding: .3rem .6rem;
  text-align: center;
  flex-shrink: 0;
}
.meds-num { display: block; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.meds-sub { display: block; font-size: .5rem; font-weight: 700; letter-spacing: .04em; opacity: .8; }
.meds-card p { font-size: .85rem; line-height: 1.55; color: var(--text); }
.meds-card strong { color: var(--green); }

.alert-row {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  background: #fff8e8;
  border-radius: var(--r-sm);
  padding: .6rem .8rem;
  border-left: 4px solid #f59e0b;
}
.alert-row span:first-child { font-size: 1rem; flex-shrink: 0; }
.alert-row p { font-size: .85rem; line-height: 1.5; color: #7a4f00; }

.meds-bottom-img {
  display: block;
  width: 90px;
  object-fit: contain;
  margin-left: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.12));
}

/* ═══════════════════════════════════════════════════
   9 · MISSÃO, VALORES & VISÃO
═══════════════════════════════════════════════════ */
.page-mission { background: var(--green); color: #fff; }

.mvv-list { display: flex; flex-direction: column; gap: .7rem; }
.mvv-item {
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  padding: .85rem 1rem;
}
.mvv-head {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .4rem;
}
.mvv-ico { font-size: 1.1rem; }
.mvv-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
}
.mvv-item p,
.mvv-item li { font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,.9); }
.mvv-item ul { display: flex; flex-direction: column; gap: .28rem; }
.mvv-item strong { color: var(--lime); }

/* ═══════════════════════════════════════════════════
   10 · ENCERRAMENTO
═══════════════════════════════════════════════════ */
.page-close { background: var(--green); color: #fff; }

.close-inner {
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1.25rem;
}
.close-logo { width: 90px; height: 90px; }
.close-logo-img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.close-msg { display: flex; flex-direction: column; align-items: center; gap: .18rem; }
.close-msg p { font-size: 1.05rem; color: rgba(255,255,255,.8); }
.close-msg strong { font-size: 1.55rem; font-weight: 900; color: var(--lime); }

.close-contacts { display: flex; flex-direction: column; gap: .48rem; width: 100%; }
.cc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: var(--trans);
  -webkit-tap-highlight-color: transparent;
}
.cc-btn:active { transform: scale(.97); }
.cc-btn--wa { background: rgba(37,211,102,.22); border-color: rgba(37,211,102,.38); }
.cc-btn--sm { font-size: .82rem; }
.cc-info { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   3 · PERÍODO DE ADAPTAÇÃO
═══════════════════════════════════════════════════ */
.page-adapt { background: var(--white); }
.page-adapt .page-inner { gap: .4rem; }

.adapt-head {
  position: relative;
  z-index: 0;
}
.adapt-deco {
  position: absolute;
  right: -5px;
  top: -10px;
  width: 85px;
  height: 85px;
  z-index: -1;
  pointer-events: none;
}
.adapt-intro { font-size: .85rem; margin-bottom: .1rem; line-height: 1.6; }

.adapt-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: .25rem;
  margin-bottom: .25rem;
}
.adapt-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--lime));
  border-radius: 2px;
}
.adapt-step {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding-bottom: .6rem;
}
.adapt-step--last { padding-bottom: 0; }
.adapt-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
  box-shadow: 0 0 0 4px rgba(42,122,81,.12);
}
.adapt-step-body { flex: 1; }
.adapt-label {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: .1rem;
}
.adapt-step-body p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

.adapt-tips {
  background: var(--pale);
  border-radius: var(--r-sm);
  padding: .55rem .8rem;
  border-left: 4px solid var(--lime);
}
.adapt-tips-title {
  font-size: .8rem;
  font-weight: 800;
  color: var(--green-dk);
  margin-bottom: .3rem;
}
.adapt-tips ul { display: flex; flex-direction: column; gap: .2rem; }
.adapt-tips li {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
  padding-left: .9rem;
  position: relative;
}
.adapt-tips li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 800;
}

/* ═══════════════════════════════════════════════════
   7 · COMUNICAÇÃO COM A FAMÍLIA
═══════════════════════════════════════════════════ */
.page-comms { background: var(--pale); }
.page-comms .page-inner { gap: .4rem; }

.comms-head { margin-bottom: .1rem; }
.comms-title-row {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.comms-title-row .page-h2 { margin-bottom: 0; flex: 1; }
.comms-title-svg {
  width: 62px;
  height: 56px;
  flex-shrink: 0;
}
.comms-intro { font-size: .85rem; margin-bottom: .1rem; line-height: 1.6; }

.comms-table {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.comms-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem .85rem;
  border-radius: var(--r-sm);
  border-left: 4px solid transparent;
  box-shadow: var(--shadow);
}
.comms-row--wa { background: #f0fdf4; border-color: #25d366; }
.comms-row--phone { background: #f0f7ff; border-color: var(--green); }
.comms-row--presential { background: var(--white); border-color: var(--lime); }
.comms-icon { font-size: 1.4rem; flex-shrink: 0; }
.comms-type {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .05rem;
}
.comms-desc { display: block; font-size: .78rem; color: var(--muted); line-height: 1.4; }

.comms-emergency {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  background: #fff3f3;
  border-left: 4px solid #ef4444;
  border-radius: var(--r-sm);
  padding: .6rem .85rem;
}
.comms-emergency-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: .1rem; }
.comms-emergency-title {
  font-size: .8rem;
  font-weight: 800;
  color: #b91c1c;
  margin-bottom: .18rem;
}
.comms-emergency p { font-size: .8rem; color: #7f1d1d; line-height: 1.5; }
.comms-emergency strong { color: #b91c1c; }

/* ═══════════════════════════════════════════════════
   EQUIPE · continuação eyebrow
═══════════════════════════════════════════════════ */
.team-cont-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════
   EQUIPE · bio line
═══════════════════════════════════════════════════ */
.team-bio {
  font-size: .63rem;
  color: var(--lime);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════
   FESTAS · separador
═══════════════════════════════════════════════════ */
.fees-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--lime), transparent);
  border-radius: 2px;
  margin: .1rem 0;
}

/* ═══════════════════════════════════════════════════
   11 · DIREITOS E DEVERES
═══════════════════════════════════════════════════ */
.page-rights { background: var(--pale); }
.page-rights .page-inner { gap: .4rem; }

.rights-head {
  position: relative;
  z-index: 0;
}
.rights-deco {
  position: absolute;
  right: -5px;
  top: -10px;
  width: 72px;
  height: 80px;
  z-index: -1;
  pointer-events: none;
}

.rights-block {
  background: var(--white);
  border-radius: var(--r);
  padding: .55rem .8rem .6rem;
  box-shadow: var(--shadow);
}
.rights-subtitle {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.rights-subtitle--green { color: var(--green); }
.rights-subtitle--dk { color: var(--green-dk); }
.rights-list { display: flex; flex-direction: column; gap: .28rem; }
.rights-item {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}
.rights-item span { font-size: .92rem; flex-shrink: 0; margin-top: .05rem; }
.rights-item p { font-size: .8rem; color: var(--text); line-height: 1.5; }

.rights-commitment {
  background: var(--green);
  color: #fff;
  border-radius: var(--r-sm);
  padding: .6rem .85rem;
  font-size: .82rem;
  line-height: 1.55;
  text-align: center;
}
.rights-commitment strong { color: var(--lime); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (min-height: 720px) {
  .page-h1 { font-size: 2.7rem; }
  .cover-logo { width: 165px; height: 165px; }
  .cover-brand { font-size: 2.9rem; }
}


@media (min-width: 900px) {
  .page-inner { max-width: 560px; }
  .cover-logo { width: 180px; height: 180px; }
}
