/* =========================================================
   MEDIA TOSI — Agência de Marketing Digital
   Sistema de Design v1.0
   Cores da marca:  Navy #0A2547 | Teal #5FA894
   ========================================================= */

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* -------- Tokens -------- */
:root {
  /* Brand */
  --navy-900: #061733;
  --navy-800: #0A2547;   /* logo main */
  --navy-700: #143764;
  --navy-600: #1E4A82;
  --teal-600: #4C927F;
  --teal-500: #5FA894;   /* logo accent */
  --teal-400: #7FBFAC;
  --teal-100: #E4F1EC;

  /* Neutral / ink */
  --ink-900: #0B1220;
  --ink-800: #1E2A3C;
  --ink-700: #33445C;
  --ink-500: #6B7A90;
  --ink-400: #94A0B4;
  --ink-300: #C7CFDD;
  --ink-200: #E1E7EF;
  --ink-100: #F1F4F9;
  --ink-50:  #F7F9FC;
  --white:   #FFFFFF;

  /* Semantic */
  --bg-page:      #FFFFFF;
  --bg-soft:      #F7F9FC;
  --bg-dark:      #0A2547;
  --bg-darker:    #061733;
  --border:       #E1E7EF;
  --ring:         rgba(95,168,148,.35);
  --shadow-sm:    0 1px 2px rgba(6, 23, 51, .04), 0 1px 3px rgba(6, 23, 51, .06);
  --shadow-md:    0 6px 20px rgba(6, 23, 51, .08);
  --shadow-lg:    0 20px 40px rgba(6, 23, 51, .12);

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Type scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.2vw, 0.94rem);
  --step-0:  clamp(1.00rem, 0.95rem + 0.25vw, 1.10rem);
  --step-1:  clamp(1.20rem, 1.10rem + 0.5vw, 1.40rem);
  --step-2:  clamp(1.44rem, 1.28rem + 0.85vw, 1.75rem);
  --step-3:  clamp(1.73rem, 1.48rem + 1.3vw, 2.25rem);
  --step-4:  clamp(2.07rem, 1.68rem + 2.0vw, 2.95rem);
  --step-5:  clamp(2.49rem, 1.92rem + 2.8vw, 3.75rem);
}

/* -------- Typography -------- */
h1, h2, h3, h4, h5 {
  font-family: 'Sora', 'Inter', sans-serif;
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}
h1 { font-size: var(--step-5); letter-spacing: -0.02em; }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p  { margin: 0 0 1em; color: var(--ink-700); }
.lead { font-size: var(--step-1); color: var(--ink-700); line-height: 1.55; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Sora', 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
  padding: .35rem .7rem;
  background: var(--teal-100);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500);
}
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: #fff; }
.text-white p { color: rgba(255,255,255,.85); }
.brand-underline {
  background: linear-gradient(180deg, transparent 60%, var(--teal-400) 60%);
  padding: 0 .1em;
}

/* -------- Layout helpers -------- */
.container { width: 92%; max-width: var(--container); margin: 0 auto; }
.section   { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section.tight { padding: clamp(2rem, 5vw, 4rem) 0; }
.grid { display: grid; gap: 1.5rem; }
.g-2  { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g-3  { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-4  { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.section-head { max-width: 780px; margin: 0 auto 3rem; text-align: center; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }
.btn-primary { background: var(--teal-500); color: #fff; box-shadow: 0 10px 24px rgba(95,168,148,.35); }
.btn-primary:hover { background: var(--teal-600); box-shadow: 0 14px 30px rgba(76,146,127,.42); }
.btn-navy    { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.btn svg { width: 18px; height: 18px; }

/* -------- Header / Nav -------- */
.topbar {
  background: var(--navy-900); color: #fff;
  font-size: .85rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem 0; gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: #fff; }
.topbar-info { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.topbar-social { display: flex; gap: .75rem; }
.topbar svg { width: 14px; height: 14px; }
@media (max-width: 640px) { .topbar-social { display: none; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 0; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 68px; width: auto; max-width: 260px; }
.brand-text { display: none; }
@media (max-width: 640px) {
  .brand img { height: 56px; }
}

.nav { display: flex; gap: 1.75rem; align-items: center; }
.nav a {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 500; color: var(--ink-800);
  position: relative; padding: .3rem 0;
  transition: color .18s ease;
}
.nav a:hover, .nav a.active { color: var(--teal-600); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--teal-500); border-radius: 2px;
}
.nav-cta { margin-left: auto; }

.dropdown { position: relative; }
.dropdown > a::after {
  content: "▾"; margin-left: .3rem; font-size: .75rem; color: var(--ink-500);
}
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px; padding: .6rem; display: none;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: .6rem .8rem; border-radius: 8px;
  color: var(--ink-800); font-weight: 500; font-size: .95rem;
}
.dropdown-menu a:hover { background: var(--ink-50); color: var(--teal-600); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; padding: .5rem;
  color: var(--navy-800);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 88vw);
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 5rem 1.5rem 2rem; gap: 1rem;
    box-shadow: -20px 0 40px rgba(6,23,51,.15);
    transition: right .3s ease;
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  .nav a { font-size: 1.05rem; }
  .dropdown-menu {
    position: static; transform: none; display: block; box-shadow: none;
    border: none; padding: 0 0 0 1rem; min-width: 0;
  }
  .dropdown > a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 1rem; }
  .backdrop { position: fixed; inset: 0; background: rgba(6,23,51,.5); z-index: 99; display: none; }
  .backdrop.show { display: block; }
}

/* -------- Hero -------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 90% -10%, rgba(95,168,148,.25), transparent 60%),
    radial-gradient(800px 400px at -10% 100%, rgba(20,55,100,.15), transparent 60%),
    linear-gradient(180deg, #FBFDFC 0%, #F1F6F3 100%);
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--border);
  color: var(--navy-700); font-weight: 500;
  padding: .45rem .8rem; border-radius: 999px; font-size: .85rem;
}
.hero-badge svg { width: 16px; height: 16px; color: var(--teal-500); }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-metrics { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.metric strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.75rem; color: var(--navy-800); line-height: 1.1; }
.metric span { font-size: .85rem; color: var(--ink-500); }

.hero-figure {
  position: relative;
}
.hero-figure .portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(6,23,51,.25);
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-figure .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-figure .fig-card {
  position: absolute;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero-figure .fig-card svg { width: 22px; height: 22px; color: var(--teal-500); }
.hero-figure .fig-card strong { display: block; color: var(--navy-800); font-family: 'Sora', sans-serif; font-size: 1rem; line-height: 1.1; }
.hero-figure .fig-card span { font-size: .78rem; color: var(--ink-500); }
.fig-1 { top: 20px; left: -20px; }
.fig-2 { bottom: 30px; right: -20px; }
@media (max-width: 900px) {
  .fig-1, .fig-2 { display: none; }
}

/* -------- Trust strip -------- */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 780px) { .trust-strip .grid { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
@media (max-width: 780px) {
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .trust-item strong { font-size: .92rem; line-height: 1.15; }
  .trust-item span { font-size: .78rem; }
}
@media (max-width: 480px) {
  .trust-strip .grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}
.trust-icon {
  width: 44px; height: 44px; flex: none;
  background: var(--teal-100); color: var(--teal-600);
  border-radius: 12px;
  display: grid; place-items: center;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; color: var(--navy-800); font-family: 'Sora', sans-serif; font-size: 1rem; }
.trust-item span { color: var(--ink-500); font-size: .85rem; }

/* -------- Service cards -------- */
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-400);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-100), #fff);
  color: var(--teal-600);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.service-card p { font-size: .95rem; margin-bottom: 1rem; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--teal-600); font-weight: 600; font-family: 'Sora', sans-serif;
  font-size: .92rem;
}
.service-card .service-link:hover { color: var(--navy-800); }

/* -------- Why choose (feature list) -------- */
.feature-check {
  list-style: none; padding: 0; margin: 1.5rem 0 2rem;
  display: grid; gap: .9rem;
}
.feature-check li {
  display: flex; gap: .8rem; align-items: flex-start;
  color: var(--ink-700);
}
.feature-check svg {
  flex: none; width: 24px; height: 24px; color: var(--teal-500);
  background: var(--teal-100); border-radius: 50%; padding: 4px;
}
.feature-check strong { color: var(--navy-800); font-family: 'Sora', sans-serif; }

.visual-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  aspect-ratio: 5/6;
  box-shadow: var(--shadow-lg);
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: .9; }
.visual-card .badge-yrs {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--teal-500); color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 40px rgba(6,23,51,.3);
}
.visual-card .badge-yrs strong {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 2.4rem; line-height: 1;
}
.visual-card .badge-yrs span { font-size: .82rem; opacity: .95; }

/* -------- Stats -------- */
.stats {
  background: var(--navy-800); color: #fff;
  position: relative; overflow: hidden;
}
.stats::before, .stats::after {
  content: ""; position: absolute; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(95,168,148,.35), transparent 70%);
  filter: blur(50px);
}
.stats::before { width: 400px; height: 400px; top: -100px; right: -100px; }
.stats::after  { width: 300px; height: 300px; bottom: -80px; left: -80px; }
.stats .grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; position: relative; z-index: 1; text-align: center; }
@media (max-width: 780px) { .stats .grid { grid-template-columns: repeat(2, 1fr); } }
.stat strong {
  display: block; font-family: 'Sora', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal-400); line-height: 1.1;
}
.stat span { display: block; color: rgba(255,255,255,.85); font-size: .95rem; margin-top: .4rem; }

/* -------- Cities section -------- */
.cities { background: var(--bg-soft); }
.city-card {
  display: flex; flex-direction: column; justify-content: space-between;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.city-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--teal-400);
}
.city-flag {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--teal-100); color: var(--teal-600);
  border-radius: 10px; margin-bottom: 1rem;
}
.city-flag svg { width: 20px; height: 20px; }
.city-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.city-card p  { color: var(--ink-500); font-size: .88rem; margin: 0 0 1rem; }
.city-card .arrow {
  color: var(--teal-600); font-weight: 600; font-family: 'Sora', sans-serif;
  display: inline-flex; align-items: center; gap: .35rem; font-size: .9rem;
}

/* -------- Testimonials -------- */
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; position: relative;
}
.testimonial::before {
  content: "”"; position: absolute; top: -12px; left: 20px;
  font-size: 4rem; color: var(--teal-400); font-family: Georgia, serif;
  line-height: 1;
}
.testimonial .stars { color: #f4b400; margin-bottom: .6rem; letter-spacing: 2px; }
.testimonial p { color: var(--ink-700); font-style: italic; margin-bottom: 1.2rem; }
.tst-author { display: flex; align-items: center; gap: .8rem; }
.tst-author .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-100); color: var(--teal-600);
  display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 700;
}
.tst-author strong { display: block; color: var(--navy-800); font-family: 'Sora', sans-serif; font-size: .95rem; }
.tst-author span   { color: var(--ink-500); font-size: .82rem; }

/* -------- Process / Steps -------- */
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem; text-align: center; position: relative;
}
.step-number {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 700;
}
.step h3 { font-size: 1.1rem; margin: .6rem 0; }
.step p  { font-size: .9rem; color: var(--ink-500); margin: 0; }

/* -------- FAQ -------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: 'Sora', sans-serif; font-weight: 600; color: var(--navy-800);
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--teal-500);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: .8rem 0 0; color: var(--ink-700); }

/* -------- CTA banner -------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(95,168,148,.35), transparent 60%),
    radial-gradient(circle at 10% 90%, rgba(95,168,148,.2), transparent 60%);
}
.cta-banner .split { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: .5rem; }
.cta-banner p  { color: rgba(255,255,255,.9); margin-bottom: 0; }
.cta-actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 900px) { .cta-actions { justify-content: flex-start; } }

/* -------- Contact form -------- */
.contact-wrap {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--navy-800); color: #fff;
  padding: clamp(2rem, 4vw, 3rem);
}
.contact-info h3 { color: #fff; }
.contact-info p { color: rgba(255,255,255,.85); }
.contact-info ul { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.contact-info li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-info li svg {
  width: 20px; height: 20px; color: var(--teal-400); flex: none; margin-top: 3px;
}
.contact-info li a, .contact-info li span { color: rgba(255,255,255,.9); }
.contact-info li a:hover { color: #fff; }

.contact-form { padding: clamp(2rem, 4vw, 3rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-field label { font-size: .85rem; color: var(--ink-700); font-weight: 500; }
.form-field input, .form-field textarea, .form-field select {
  padding: .8rem 1rem; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--ink-800);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px var(--ring);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* -------- Footer -------- */
.site-footer {
  background: var(--navy-900); color: rgba(255,255,255,.85);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.site-footer h4 {
  color: #fff; font-size: 1rem; margin-bottom: 1rem;
  font-family: 'Sora', sans-serif;
}
.site-footer a { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: var(--teal-400); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 72px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .92rem; }
.footer-contact li { display: flex; gap: .5rem; align-items: flex-start; font-size: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--teal-400); flex: none; margin-top: 4px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  transition: all .18s ease;
}
.footer-social a:hover { background: var(--teal-500); border-color: var(--teal-500); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(255,255,255,.6);
}

/* -------- WhatsApp float -------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .5);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* -------- Page header (inner pages) -------- */
.page-header {
  background:
    radial-gradient(1000px 400px at 90% 20%, rgba(95,168,148,.15), transparent 60%),
    linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  position: relative; overflow: hidden;
}
.page-header h1 { color: #fff; }
.page-header p  { color: rgba(255,255,255,.85); font-size: var(--step-1); max-width: 720px; }
.crumbs {
  display: inline-flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 1.5rem;
}
.crumbs a { color: rgba(255,255,255,.7); }
.crumbs a:hover { color: var(--teal-400); }
.crumbs span { color: rgba(255,255,255,.4); }

/* -------- Local badge (satellite pages) -------- */
.local-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(95,168,148,.15);
  color: var(--teal-400); font-weight: 600;
  padding: .4rem .9rem; border-radius: 999px;
  font-family: 'Sora', sans-serif; font-size: .85rem;
  margin-bottom: 1rem;
}
.local-badge svg { width: 14px; height: 14px; }

/* -------- Neighborhoods list -------- */
.neighborhoods {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.neighborhoods span {
  background: #fff; border: 1px solid var(--border);
  padding: .45rem .85rem; border-radius: 999px;
  font-size: .85rem; color: var(--ink-700);
}

/* -------- Region chips (lista compacta na home) -------- */
.region-chips {
  display: flex; flex-wrap: wrap; gap: .55rem;
  max-width: 1100px; margin: 0 auto;
}
.region-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--border);
  color: var(--navy-800); font-weight: 500;
  padding: .55rem 1rem; border-radius: 999px;
  font-size: .88rem;
  transition: all .18s ease;
}
.region-chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500);
}
.region-chip:hover {
  background: var(--navy-800); color: #fff;
  border-color: var(--navy-800); transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(6,23,51,.15);
}
.region-chip:hover::before { background: var(--teal-400); }

/* -------- Reveal animation (opcional, apenas com JS ativo) --------
   O bloco .js .reveal só oculta quando o <html> tem classe .js (adicionada inline no <head>).
   Se o JS falhar por qualquer motivo, o conteúdo permanece visível — nada quebra.
*/
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* -------- Print / a11y -------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
