/* ==========================================================================
   Vitalis Centro Médico — estilos
   Paleta: azul-marinho profundo · petróleo/teal · azul-claro · branco
   Tipografia: Playfair Display (títulos) + Plus Jakarta Sans (texto)
   ========================================================================== */

:root {
  --navy: #0b2a4a;
  --navy-800: #12365a;
  --navy-700: #1b4a73;
  --teal: #0f766e;
  --teal-dark: #0b5d57;
  --teal-soft: #e2f3f1;
  --sky: #4aa8e8;
  --sky-soft: #ecf5fc;
  --ink: #17273b;
  --muted: #5d6d7e;
  --line: #e4ebf2;
  --bg-soft: #f6fafc;
  --white: #ffffff;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", "Segoe UI", Arial, Helvetica, sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 18px rgba(11, 42, 74, .08);
  --shadow-md: 0 14px 40px rgba(11, 42, 74, .12);
  --shadow-lg: 0 30px 70px rgba(11, 42, 74, .16);
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
  --container: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

::selection { background: var(--teal); color: #fff; }

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

.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: 8px; font-weight: 600; transition: top .25s;
}
.skip-link:focus { top: 12px; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; font-weight: 700; }

h1 em, h2 em, .cta__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--teal);
}

.section { padding: 72px 0; }
.section--light { background: var(--bg-soft); }

.section__head { display: grid; gap: 14px; margin-bottom: 44px; }
.section__head--center {
  text-align: center;
  justify-items: center;
  max-width: 720px;
  margin-inline: auto;
}
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-weight: 800; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
}
.section__eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.section__head--center .section__eyebrow::after {
  content: ""; width: 26px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
.section__title { font-size: clamp(1.7rem, 4.2vw, 2.6rem); color: var(--navy); }
.section__sub, .section__lead { color: var(--muted); font-size: 1.05rem; max-width: 58ch; }
.section__text { color: var(--muted); margin-top: 10px; max-width: 60ch; }
.section__more { text-align: center; margin-top: 34px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--teal);
  padding-bottom: 4px; transition: var(--transition);
}
.link-arrow svg { width: 18px; transition: transform var(--transition); }
.link-arrow:hover { color: var(--teal); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-size: .965rem; line-height: 1.2;
  border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 8px 24px rgba(15, 118, 110, .32); }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn--primary:hover svg, .btn--outline:hover svg, .btn--light:hover svg, .btn--ghost:hover svg { transform: translateX(4px); }

.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { color: var(--teal); }

.btn--light { background: #fff; color: var(--navy); box-shadow: 0 10px 30px rgba(0, 0, 0, .18); }
.btn--light:hover { background: var(--sky-soft); transform: translateY(-2px); }

.btn--ghost-light { background: transparent; border-color: rgba(255, 255, 255, .6); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 42, 74, .07);
  transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }

.header__inner { display: flex; align-items: center; gap: 24px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
}
.brand__mark svg { width: 26px; height: 26px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--serif); font-size: 1.35rem; color: var(--navy); }
.brand__text span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); font-weight: 700; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: block; padding: 10px 14px; border-radius: 10px;
  font-weight: 600; color: var(--ink); font-size: .95rem;
  transition: var(--transition);
}
.nav__link:hover { color: var(--teal); background: var(--teal-soft); }
.nav__link.is-active { color: var(--teal); }

.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone { padding: 10px 12px; font-weight: 700; }
.header__phone svg { width: 17px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle__bar {
  width: 24px; height: 2.4px; border-radius: 2px;
  background: var(--navy); transition: var(--transition);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, #e5f2fb 0%, rgba(255, 255, 255, 0) 60%),
              linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 100%);
  padding: 64px 0 88px;
  overflow: hidden;
}
.hero__inner { display: grid; gap: 56px; align-items: center; }

.hero__content { position: relative; z-index: 2; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(15, 118, 110, .25);
  color: var(--teal-dark); border-radius: 999px;
  padding: 8px 16px; font-weight: 700; font-size: .85rem;
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 17px; }

.hero__title {
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  margin: 22px 0 20px;
  color: var(--navy);
  max-width: 15ch;
}

.hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 52ch; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 38px; }

.hero__stats { display: flex; flex-wrap: wrap; gap: 12px 40px; }
.hero__stat dt { font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.hero__stat dd { font-size: .85rem; color: var(--muted); font-weight: 600; }

.hero__media { position: relative; z-index: 1; min-height: 420px; }

.hero__photo { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main { width: 74%; aspect-ratio: 4 / 5; margin-left: auto; }
.hero__photo--small { position: absolute; left: 0; bottom: 40px; width: 46%; aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-md); }

.hero__card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow-md); font-size: .82rem;
  animation: float 5s ease-in-out infinite;
}
.hero__card svg { width: 30px; height: 30px; color: var(--teal); flex-shrink: 0; }
.hero__card div { display: flex; flex-direction: column; }
.hero__card strong { color: var(--navy); }
.hero__card span { color: var(--muted); }
.hero__card--rating { top: 6%; left: 0; }
.hero__card--secure { bottom: -18px; right: 2%; animation-delay: 1.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Trustbar ---------- */
.trustbar { background: var(--navy); color: #fff; padding: 18px 0; }
.trustbar__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; }
.trustbar__label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; }
.trustbar__list { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.trustbar__list li { font-family: var(--serif); font-size: 1.06rem; color: rgba(255,255,255,.88); font-weight: 600; }

/* ---------- Cards (especialidades) ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(15, 118, 110, .3); }
.card__icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--teal-soft); color: var(--teal);
  margin-bottom: 18px; transition: var(--transition);
}
.card:hover .card__icon { background: var(--teal); color: #fff; transform: rotate(-6deg); }
.card__icon svg { width: 28px; height: 28px; }
.card__title { font-size: 1.18rem; color: var(--navy); margin-bottom: 8px; }
.card__text { font-size: .93rem; color: var(--muted); flex: 1; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; color: var(--teal); font-size: .92rem; }
.card__link svg { width: 16px; transition: transform var(--transition); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Sobre ---------- */
.about__grid { display: grid; gap: 48px; align-items: center; }
.about__media { position: relative; }
.about__photo { height: 440px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.about__img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: -26px; right: -8px;
  display: flex; align-items: center; gap: 14px;
  background: var(--navy); color: #fff; border-radius: 20px;
  padding: 18px 22px; box-shadow: var(--shadow-lg);
  max-width: 250px;
}
.about__badge-num { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; line-height: 1; }
.about__badge-text { font-size: .82rem; color: rgba(255,255,255,.82); line-height: 1.5; }

.checklist { display: grid; gap: 12px; margin: 24px 0; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--ink); }
.checklist svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 4px; }

.about__stats { display: flex; flex-wrap: wrap; gap: 16px 40px; border-top: 1px solid var(--line); padding-top: 24px; }
.about__stat strong { display: block; font-family: var(--serif); font-size: 1.8rem; color: var(--teal); }
.about__stat span { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ---------- Médicos ---------- */
.doctor {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
  text-align: center; padding-bottom: 26px;
}
.doctor:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.doctor__photo { aspect-ratio: 1 / 1; overflow: hidden; }
.doctor__photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor__name { font-size: 1.18rem; color: var(--navy); margin: 20px 18px 4px; }
.doctor__role { font-size: .82rem; color: var(--teal); font-weight: 700; margin-bottom: 10px; }
.doctor__bio { font-size: .9rem; color: var(--muted); padding: 0 22px; }

/* ---------- Diferenciais ---------- */
.differencials { position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 60%, var(--teal-dark) 130%); color: #fff; overflow: hidden; }
.section__eyebrow--light { color: #7fd4c8; }
.section__title--light { color: #fff; }
.section__title--light em { color: #7fd4c8; }

.differencial {
  position: relative; z-index: 2;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.differencial:hover { background: rgba(255, 255, 255, .12); transform: translateY(-6px); }
.differencial__icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 18px;
  background: rgba(255, 255, 255, .14); color: #8fe0d4;
  margin-bottom: 18px;
}
.differencial__icon svg { width: 29px; height: 29px; }
.differencial__title { font-size: 1.2rem; margin-bottom: 8px; color: #fff; }
.differencial__text { font-size: .94rem; color: rgba(255,255,255,.82); }

/* ---------- Passos ---------- */
.steps { display: grid; gap: 22px; counter-reset: step; margin-top: 8px; }
.step {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px 28px; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--serif); font-size: 2.6rem; font-weight: 700;
  color: rgba(15, 118, 110, .16); line-height: 1;
}
.step__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--sky-soft); color: var(--navy-700);
  margin-bottom: 16px;
}
.step__icon svg { width: 27px; height: 27px; }
.step__title { font-size: 1.14rem; color: var(--navy); margin-bottom: 6px; }
.step__text { font-size: .93rem; color: var(--muted); }

/* ---------- Depoimentos ---------- */
.testimonial {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial__stars { display: flex; gap: 4px; color: #f5b301; }
.testimonial__stars svg { width: 18px; height: 18px; }
.testimonial__quote { font-family: var(--serif); font-size: 1.06rem; line-height: 1.6; color: var(--ink); flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; font-weight: 800; font-size: .95rem;
}
.testimonial__author strong { display: block; font-size: .98rem; color: var(--navy); }
.testimonial__author small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq__grid { display: grid; gap: 40px; align-items: start; }
.faq__intro .btn { margin-top: 18px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition);
}
.faq__item[open] { border-color: rgba(15, 118, 110, .35); box-shadow: var(--shadow-md); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem; color: var(--navy);
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__chevron { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; transition: transform var(--transition); }
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__answer { padding: 0 22px 20px; color: var(--muted); font-size: .96rem; }

/* ---------- Artigos ---------- */
.article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.article:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article__cover { aspect-ratio: 16 / 9; overflow: hidden; display: block; }
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__body { padding: 24px 26px 28px; }
.article__tag {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal-dark);
  background: var(--teal-soft); border-radius: 999px; padding: 4px 12px; margin-bottom: 12px;
}
.article__title { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.article__title a:hover { color: var(--teal); }
.article__excerpt { font-size: .93rem; color: var(--muted); margin-bottom: 14px; }
.article__more { font-weight: 700; color: var(--teal); font-size: .92rem; }
.article__more:hover { text-decoration: underline; }

/* ---------- CTA banner ---------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--teal-dark), var(--teal) 55%, #189f95); color: #fff; }
.cta__inner {
  position: relative; z-index: 2;
  display: grid; gap: 28px; align-items: center;
  padding: 64px 0;
}
.cta__title { font-size: clamp(1.6rem, 4vw, 2.4rem); color: #fff; max-width: 20ch; }
.cta__text { color: rgba(255,255,255,.88); font-size: 1.06rem; max-width: 48ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Contato ---------- */
.contact__grid { display: grid; gap: 48px; }
.contact__list { display: grid; gap: 22px; margin-top: 28px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--sky-soft); color: var(--navy-700);
}
.contact__icon svg { width: 24px; height: 24px; }
.contact__item strong { display: block; color: var(--navy); margin-bottom: 2px; }
.contact__item span { color: var(--muted); font-size: .95rem; }

.form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px 26px;
}
.form__row { display: grid; gap: 18px; }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form__group label { font-weight: 700; font-size: .9rem; color: var(--navy); }
.form__group input, .form__group select, .form__group textarea {
  width: 100%; padding: 13px 15px;
  border: 1.6px solid var(--line); border-radius: 12px;
  background: #fbfdfe; color: var(--ink);
  transition: var(--transition);
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
}
.form__group textarea { resize: vertical; }
.form__group--checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.form__group--checkbox input {
  width: 20px; height: 20px; margin-top: 2px; accent-color: var(--teal); flex-shrink: 0;
}
.form__group--checkbox label { font-weight: 500; font-size: .88rem; color: var(--muted); }
.form__group--checkbox a { color: var(--teal); font-weight: 700; text-decoration: underline; }
.form__error { display: none; font-size: .82rem; color: #c2410c; font-weight: 600; }
.form__group.has-error input, .form__group.has-error select, .form__group.has-error textarea { border-color: #c2410c; }
.form__group.has-error .form__error { display: block; }
.form__success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: var(--teal-soft); color: var(--teal-dark);
  border-radius: 12px; font-weight: 600; font-size: .94rem;
}
.form__success.is-visible { display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.82); padding: 64px 0 0; }
.footer__grid {
  display: grid; gap: 40px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text span { color: #7fd4c8; }
.footer__about { margin: 18px 0 20px; max-width: 34ch; font-size: .95rem; color: rgba(255,255,255,.72); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.2); color: #fff;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__title { font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #7fd4c8; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: rgba(255,255,255,.78); font-size: .94rem; transition: var(--transition); }
.footer__col a:hover { color: #fff; padding-left: 4px; }
.footer__address p { margin-bottom: 8px; font-style: normal; }
.footer__address a { color: rgba(255,255,255,.78); }
.footer__address a:hover { color: #fff; }
.footer__hours { margin-top: 14px; font-size: .92rem; color: rgba(255,255,255,.66); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: .85rem; color: rgba(255,255,255,.58);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a:hover { color: #fff; }

/* ---------- Decorações geométricas ---------- */
.decoration { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.decoration__circle {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, rgba(74, 168, 232, .18), rgba(15, 118, 110, .14));
}
.decoration__circle--1 { width: 340px; height: 340px; top: -120px; right: -90px; }
.decoration__circle--2 { width: 200px; height: 200px; bottom: -70px; left: -60px; background: rgba(74, 168, 232, .12); }
.decoration__ring {
  position: absolute; border: 2px dashed rgba(15, 118, 110, .25); border-radius: 50%;
}
.decoration__ring--1 { width: 130px; height: 130px; top: 60%; right: -30px; }
.decoration--light .decoration__circle--3 { width: 420px; height: 420px; top: -180px; left: -140px; background: rgba(255,255,255,.05); }
.decoration--light .decoration__ring--2 { width: 220px; height: 220px; bottom: 10%; right: -80px; border-color: rgba(255,255,255,.14); }
.decoration--light .decoration__circle--4 { width: 300px; height: 300px; bottom: -140px; right: 8%; background: rgba(255,255,255,.08); }
.decoration--light .decoration__ring--3 { width: 160px; height: 160px; top: -60px; left: 6%; border-color: rgba(255,255,255,.2); }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (min-width: 640px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .about__grid { grid-template-columns: .95fr 1.05fr; gap: 64px; }
  .faq__grid { grid-template-columns: .85fr 1.15fr; gap: 60px; }
  .contact__grid { grid-template-columns: 1fr 1.05fr; gap: 64px; }
  .cta__inner { grid-template-columns: 1.3fr 1fr; }
  .section { padding: 96px 0; }
  .hero { padding: 84px 0 120px; }
}

/* Menu mobile / tablet */
@media (max-width: 940px) {
  .nav {
    position: fixed; inset: 78px 0 auto 0; z-index: 99;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav.is-open { max-height: calc(100vh - 78px); overflow-y: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; padding: 18px clamp(20px, 4vw, 40px) 28px; }
  .nav__link { padding: 13px 16px; font-size: 1.05rem; border-radius: 12px; }
  .nav-toggle { display: flex; }
  .header__phone { display: none; }
  .header__actions .btn--primary { display: none; }
  .cta__inner { text-align: center; justify-items: center; }
}

@media (min-width: 600px) {
  .form { padding: 38px 36px; }
  .form__row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .footer__grid { grid-template-columns: 1.4fr .8fr .8fr 1fr; }
  .header__actions .btn--primary { display: inline-flex; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 10px 28px; }
  .hero__photo--small { width: 55%; }
  .about__badge { right: 0; }
}