/* =========================================================
   Movimentare — Fisioterapia e Reabilitação
   Estilo: clínico moderno, teal profundo + areia + coral
   ========================================================= */

:root {
  --teal-900: #062f2e;
  --teal-800: #0b3f3d;
  --teal-700: #0f5551;
  --teal-600: #14706a;
  --teal-400: #4aa79c;
  --teal-100: #d9ece8;
  --sand: #f7f2ea;
  --sand-dark: #ece3d5;
  --coral: #61ce70;
  --coral-dark: #46b357;
  --blue: #344f9c;
  --blue-dark: #273c78;
  --blue-soft: #e6eaf7;
  --ink: #12211f;
  --ink-soft: #4d5f5c;
  --white: #ffffff;

  --radius-s: 10px;
  --radius: 18px;
  --radius-l: 28px;
  --radius-xl: 40px;

  --shadow-s: 0 2px 10px rgba(6, 47, 46, 0.06);
  --shadow: 0 14px 40px -18px rgba(6, 47, 46, 0.35);
  --shadow-l: 0 30px 70px -30px rgba(6, 47, 46, 0.45);

  --font-title: "Sora", "Montserrat", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Lato", "Segoe UI", Arial, sans-serif;

  --wrap: 1240px;
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 0.85, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  color: var(--teal-900);
  text-wrap: balance;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.012em;
}
h4 {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.008em;
}

p { margin: 0 0 1.1em; color: var(--ink-soft); max-width: 72ch; text-wrap: pretty; }

a { color: var(--teal-600); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--coral-dark); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-wide { width: min(100% - 2.5rem, 1400px); margin-inline: auto; }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--sand { background: var(--sand); }
.section--teal { background: var(--teal-900); }
.section--teal h2,
.section--teal h3,
.section--teal p,
.section--teal li { color: #eaf5f2; }
.section--teal p { color: #b9d3ce; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
}
.section--teal .eyebrow { color: var(--teal-400); }
.section--teal .eyebrow::before { background: var(--teal-400); }

.lead { font-size: clamp(1.08rem, 1.4vw, 1.22rem); line-height: 1.65; max-width: 62ch; color: var(--ink-soft); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-900);
  color: #fff;
  padding: 0.8rem 1.2rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; color: #fff; }

/* ---------------- Buttons ---------------- */
.btn {
  --btn-bg: var(--teal-800);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease);
  box-shadow: var(--shadow-s);
}
.btn span { position: relative; z-index: 1; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.28), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:hover::after { opacity: 1; }
.btn--coral { --btn-bg: var(--coral); --btn-fg: #24100a; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--teal-900); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--teal-900);
  border: 1.5px solid rgba(6, 47, 46, 0.22);
  box-shadow: none;
}
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5); box-shadow: none; }
.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }

.link-more {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-700);
}
.link-more::after { content: "→"; transition: transform 0.3s var(--ease); }
.link-more:hover::after { transform: translateX(5px); }

/* ---------------- Header ---------------- */
.topbar {
  background: var(--teal-900);
  color: #cfe4e0;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}
.topbar__in {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
}
.topbar a { color: #cfe4e0; }
.topbar a:hover { color: #fff; }
.topbar__list { display: flex; flex-wrap: wrap; gap: 1.2rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 10px 30px -22px rgba(6, 47, 46, 0.6);
  border-bottom-color: rgba(6, 47, 46, 0.08);
}
.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
  transition: height 0.35s var(--ease);
}
.site-header.is-stuck .site-header__in { height: 72px; }

.brand { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.brand img { height: 54px; width: auto; transition: height 0.35s var(--ease); }
.site-header.is-stuck .brand img { height: 44px; }

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  font-family: var(--font-title);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--teal-900);
  padding: 0.5rem 0.8rem;
  border-radius: 100px;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--teal-600); }

.header-cta { flex-shrink: 0; }

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(6, 47, 46, 0.14);
  background: #fff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-900);
  position: relative;
  transition: background 0.2s var(--ease);
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--teal-900);
  transition: transform 0.35s var(--ease), top 0.25s var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--teal-900);
  z-index: 95;
  padding: 6rem 2rem 3rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: #fff;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav .btn { margin-top: 1.6rem; }
.mobile-nav__close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 6rem 0 5rem;
}
.hero__bg {
  position: absolute;
  inset: -10% 0 -10% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6, 47, 46, 0.95) 0%, rgba(11, 63, 61, 0.86) 45%, rgba(20, 112, 106, 0.55) 100%);
}
.hero__in { position: relative; z-index: 2; width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.hero__grid { display: grid; grid-template-columns: 0.92fr 1.15fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero p { color: #cfe4e0; font-size: 1.1rem; max-width: 46ch; }
.hero__welcome {
  font-family: var(--font-title);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--teal-400);
  display: block;
  margin-bottom: 1.2rem;
}
.seals { list-style: none; margin: 1.8rem 0 2.4rem; padding: 0; display: grid; gap: 0.7rem; }
.seals li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #eaf5f2;
  font-weight: 600;
  font-size: 0.98rem;
}
.seals li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: rgba(74, 167, 156, 0.25);
  color: var(--teal-400);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero__media {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #000;
}
@media (min-width: 1025px) {
  .hero__media .ratio-16x9 { padding-top: 0; min-height: clamp(400px, 34vw, 560px); }
}
.ratio-16x9 { position: relative; padding-top: 56.25%; }
.ratio-16x9 iframe,
.ratio-16x9 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* page hero (interior) */
.page-hero {
  position: relative;
  padding: clamp(5rem, 11vw, 8.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: var(--teal-900);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -12%;
  top: -40%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(circle at center, rgba(74, 167, 156, 0.32), transparent 62%);
}
.page-hero__in { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: #b9d3ce; max-width: 60ch; }
.crumb { font-size: 0.85rem; color: #8fb5af; margin-bottom: 1.6rem; }
.crumb a { color: #8fb5af; }
.crumb a:hover { color: #fff; }

/* ---------------- Grid & cards ---------------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.card {
  background: #fff;
  border: 1px solid rgba(6, 47, 46, 0.08);
  border-radius: var(--radius-l);
  padding: 2rem 1.8rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-l); border-color: transparent; }
.card__num {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
  display: block;
}
.card p { font-size: 0.97rem; }
.card .link-more { margin-top: auto; padding-top: 0.6rem; }

.card--media { padding: 0; overflow: hidden; }
.card--media .card__img { overflow: hidden; aspect-ratio: 4 / 3; }
.card--media .card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card--media:hover .card__img img { transform: scale(1.07); }
.card--media .card__body { padding: 1.7rem 1.6rem 2rem; display: flex; flex-direction: column; flex: 1; }

.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.feature:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.11); }
.feature h3 { color: #fff; font-size: 1.12rem; }
.feature p { margin: 0; font-size: 0.95rem; }
.feature__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(52, 79, 156, 0.35);
  color: #cdd7f2;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* team */
.team-card {
  background: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid rgba(6, 47, 46, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-l); }
.team-card__photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand-dark); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.8s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card__body { padding: 1.5rem 1.4rem 1.9rem; }
.team-card__role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--coral);
}
.team-card h3 { font-size: 1.1rem; margin: 0.5rem 0 0.4rem; }
.team-card__crefito { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 0.8rem; letter-spacing: 0.03em; }
.team-card__bio { font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* counters */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat__num {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.stat__label { font-size: 0.9rem; color: #b9d3ce; margin: 0.5rem 0 0; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: block;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.4s var(--ease); }
.gallery button:hover img { transform: scale(1.08); filter: saturate(1.1); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 47, 46, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* accordion */
.acc { border-top: 1px solid rgba(6, 47, 46, 0.12); }
.acc__item { border-bottom: 1px solid rgba(6, 47, 46, 0.12); }
.acc__btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-900);
  padding: 1.4rem 3rem 1.4rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.25s var(--ease);
}
.acc__btn:hover { color: var(--teal-600); }
.acc__btn::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--coral);
  transition: transform 0.35s var(--ease);
}
.acc__btn[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.acc__panel { overflow: hidden; height: 0; transition: height 0.4s var(--ease); }
.acc__panel > div { padding: 0 3rem 1.6rem 0; }
.acc__panel p:last-child { margin-bottom: 0; }

/* forms */
.form { display: grid; gap: 1rem; }
.field label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-s);
  border: 1.5px solid rgba(6, 47, 46, 0.16);
  background: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(20, 112, 106, 0.12);
}
.form__note { font-size: 0.85rem; color: var(--ink-soft); }
.form__status { font-weight: 600; color: var(--teal-700); min-height: 1.4em; }

/* contact list */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-list strong { display: block; font-family: var(--font-title); color: var(--teal-900); }
.contact-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
}

.map-frame { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* blog */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card__meta { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral); font-weight: 700; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--teal-800) 0%, var(--teal-600) 55%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-l);
}
.cta-band h2 { color: #fff; margin: 0; max-width: 22ch; margin-inline: auto; }
.cta-band p { color: #dbe8e5; margin: 0.9rem auto 0; max-width: 52ch; }
.cta-band > div { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.cta-band > div:last-child { flex-direction: row; flex-wrap: wrap; justify-content: center; }

.img-frame { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

.pill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-list li {
  background: var(--blue-soft);
  color: var(--blue-dark);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}
.section--teal .pill-list li { background: rgba(255, 255, 255, 0.1); color: #eaf5f2; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--teal-900); color: #b9d3ce; padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.site-footer a { color: #b9d3ce; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.3fr; gap: 2.5rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; font-size: 0.95rem; }
.footer-brand img { height: 62px; width: auto; margin-bottom: 1.2rem; filter: brightness(0) invert(1); opacity: 0.92; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.socials a:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* floating buttons */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.7);
  transition: transform 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.09); color: #fff; }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 119;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--teal-800);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  box-shadow: var(--shadow);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1024px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .split, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar__in { justify-content: center; text-align: center; font-size: 0.78rem; }
  .hero { min-height: auto; }
  .cta-band { border-radius: var(--radius-l); }
}
