/* ===========================================================
   Ed Vidros — styles.css
   Paleta: azul-marinho #0F1E3D (acento) + branco + cinzas
   Mobile-first, sem dependências externas (exceto Google Fonts)
   =========================================================== */

:root {
  --c-bg: #ffffff;
  --c-bg-alt: #f5f7fb;
  --c-text: #14213d;
  --c-text-soft: #4a5570;
  --c-muted: #8892a8;
  --c-border: #e5e9f2;
  --c-primary: #0F1E3D;
  --c-primary-600: #16294f;
  --c-primary-700: #0a1530;
  --c-accent: #c8a96a;       /* dourado discreto pra detalhes (logo combina) */
  --c-wpp: #25D366;
  --c-wpp-dark: #128C7E;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,30,61,.05), 0 2px 8px rgba(15,30,61,.04);
  --shadow:    0 4px 12px rgba(15,30,61,.08), 0 12px 32px rgba(15,30,61,.06);
  --shadow-lg: 0 12px 40px rgba(15,30,61,.18);

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --container: 1200px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --transition: 200ms cubic-bezier(.2,.7,.3,1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 var(--space-3);
  color: var(--c-text);
}

p { margin: 0 0 var(--space-3); color: var(--c-text-soft); }

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (min-width: 640px) { .container { padding: 0 var(--space-4); } }
@media (min-width: 1024px){ .container { padding: 0 var(--space-5); } }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-primary); color: #fff; padding: var(--space-2) var(--space-3);
  z-index: 100;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

.eyebrow {
  font-size: .85rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-primary); margin: 0 0 var(--space-2);
}
.lead { color: var(--c-text-soft); font-size: 1.05rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn--primary {
  background: var(--c-wpp); color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn--primary:hover { background: var(--c-wpp-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--c-text); border-color: var(--c-border);
}
.btn--ghost:hover { background: var(--c-bg-alt); border-color: var(--c-text-soft); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hdr.is-scrolled { box-shadow: var(--shadow-sm); }
.hdr.is-hidden { transform: translateY(-100%); }
.hdr__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3);
  height: 68px;
}
.hdr__logo { display: inline-flex; align-items: center; color: var(--c-primary); }
.logo {
  height: 44px; width: auto;
  display: block;
  transition: opacity var(--transition);
}
.hdr__logo:hover .logo { opacity: .8; }
.logo--lg { height: 56px; }
.hdr__nav { display: none; gap: var(--space-4); }
.hdr__nav a {
  font-weight: 500; color: var(--c-text-soft);
  position: relative; padding: .25rem 0;
  transition: color var(--transition);
}
.hdr__nav a:hover { color: var(--c-primary); }
.hdr__cta { display: none; }
.hdr__toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 32px; height: 32px; padding: 6px;
  align-items: center; justify-content: center;
}
.hdr__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hdr__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hdr__mobile {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3) var(--space-4) var(--space-4);
  border-top: 1px solid var(--c-border);
  background: #fff;
}
.hdr__mobile a {
  padding: .75rem 0;
  font-weight: 500;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}
.hdr__mobile a.btn { border: 0; margin-top: var(--space-2); }
.hdr__mobile[hidden] { display: none; }

@media (min-width: 1024px) {
  .hdr__inner { height: 80px; }
  .logo { height: 50px; }
  .logo--lg { height: 64px; }
  .hdr__nav { display: flex; }
  .hdr__cta { display: inline-flex; }
  .hdr__toggle { display: none; }
  .hdr__mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid; align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-7);
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  /* Ken Burns sutil */
  animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.10) translate(-1%, -1%); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(15,30,61,.45) 0%, rgba(15,30,61,.75) 50%, rgba(15,30,61,.92) 100%),
    linear-gradient(135deg, rgba(15,30,61,.65) 0%, rgba(30,58,138,.55) 100%);
}
.hero__inner {
  max-width: 780px;
  animation: fadeUp .9s ease both;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  margin: 0 0 var(--space-3);
  color: #fff;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,.25);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
.hero__title {
  font-size: clamp(2.25rem, 6.5vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-3);
  letter-spacing: -.03em;
  line-height: 1.05;
}
.hero__title-accent {
  background: linear-gradient(110deg, #93c5fd 0%, #60a5fa 30%, #ffffff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: var(--space-5);
  max-width: 620px;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.hero__cta .btn--ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__cta .btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-4);
  padding: var(--space-3) 0 0;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .92rem;
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: .5rem;
}
.hero__trust svg {
  width: 18px; height: 18px;
  color: #93c5fd;
  flex-shrink: 0;
}
.hero__trust strong { color: #fff; font-weight: 600; }
.hero__note {
  font-size: .82rem; color: rgba(255,255,255,.55);
  margin-top: var(--space-4); margin-bottom: 0;
}
.hero__scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: none;
  z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  60%  { transform: translate(-50%, 12px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}
@media (min-width: 1024px) {
  .hero__scroll { display: block; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */
.section {
  padding: var(--space-7) 0;
}
@media (min-width: 1024px) {
  .section { padding: var(--space-8) 0; }
}
.section--alt { background: var(--c-bg-alt); }

.section__head {
  max-width: 720px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
.section__head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-3);
  position: relative;
}
.section__head h2::after {
  content: "";
  display: block;
  width: 64px; height: 14px;
  margin: var(--space-3) auto 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='14' viewBox='0 0 64 14'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%2360A5FA'/%3E%3Cstop offset='50%25' stop-color='%230F1E3D'/%3E%3Cstop offset='100%25' stop-color='%232563EB'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='url(%23g)'%3E%3Crect x='20' y='2' width='3' height='10'/%3E%3Crect x='26' y='4' width='2' height='8' opacity='.55'/%3E%3Crect x='31' y='0' width='3' height='14'/%3E%3Crect x='37' y='4' width='2' height='8' opacity='.55'/%3E%3Crect x='42' y='5' width='2' height='6' opacity='.4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  gap: var(--space-3);
}
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid { gap: var(--space-4); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards (serviços) ---------- */
.card {
  background: #fff;
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0F1E3D 0%, #1E3A8A 60%, #2563EB 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15,30,61,.18);
  border-color: transparent;
  color: #fff;
}
.card:hover::before { opacity: 1; }
.card:hover h3,
.card:hover p { color: #fff; }
.card:hover p { color: rgba(255,255,255,.85); }
.card:hover .card__icon {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.card__icon {
  width: 48px; height: 48px;
  color: var(--c-primary);
  margin-bottom: var(--space-3);
  padding: 10px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.card h3 { font-size: 1.15rem; margin-bottom: var(--space-2); transition: color var(--transition); }
.card p { font-size: .95rem; margin: 0; transition: color var(--transition); }

.card--cta {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
}
.card--cta h3 { color: #fff; }
.card--cta p { color: rgba(255,255,255,.85); margin-bottom: var(--space-3); }

/* ---------- Reasons ---------- */
.reason {
  text-align: center;
  padding: var(--space-4) var(--space-3);
}
.reason__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: var(--space-2);
  letter-spacing: -.04em;
}
.reason h3 { font-size: 1.1rem; }
.reason p { font-size: .95rem; margin: 0; }

/* ---------- Tags (áreas) ---------- */
.tags {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  justify-content: center;
  max-width: 900px; margin: 0 auto;
}
.tags li {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: all var(--transition);
}
.tags li:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  background: #fff;
}

/* ---------- Reviews ---------- */
.review {
  background: #fff;
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  display: flex; flex-direction: column;
}
.review__stars {
  color: #f5b400; letter-spacing: 2px;
  font-size: 1.1rem; margin-bottom: var(--space-2);
}
.review__body {
  font-size: .98rem;
  color: var(--c-text);
  margin-bottom: var(--space-3);
  flex-grow: 1;
}
.review__author {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-2);
  display: flex; flex-direction: column;
  font-size: .9rem;
}
.review__author strong { color: var(--c-text); }
.review__author span { color: var(--c-muted); font-size: .82rem; }

.review--cta {
  background: var(--c-bg-alt);
  align-items: center; justify-content: center; text-align: center;
  border-style: dashed;
}
.review--cta p { margin-bottom: var(--space-3); }

/* ---------- Galeria ---------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 640px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}
@media (min-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-bg-alt);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.3,1);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: "+";
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(15,30,61,.85);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 300;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }

/* gallery item nth varying span for masonry-ish feel */
@media (min-width: 1024px) {
  .gallery__item:nth-child(7n+1) { aspect-ratio: 4/5; }
  .gallery__item:nth-child(7n+4) { aspect-ratio: 1/1; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  border: 0; padding: 0; margin: 0; max-width: 100vw; max-height: 100vh;
  width: 100%; height: 100%;
  background: rgba(15,30,61,.95);
  color: #fff;
}
.lightbox::backdrop { background: rgba(0,0,0,.7); }
.lightbox[open] {
  display: grid;
  place-items: center;
}
.lightbox__figure {
  margin: 0; max-width: 90vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  animation: fadeIn .25s ease;
}
.lightbox__figure img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__figure figcaption {
  font-size: .9rem; opacity: .8;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 16px; right: 16px; font-size: 2rem; }
.lightbox__prev  { top: 50%; left: 16px; transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 16px; transform: translateY(-50%); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Contato ---------- */
.section--contact .section__head { margin-bottom: var(--space-5); }

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
@media (min-width: 1024px) {
  .contact { grid-template-columns: 1fr 1.1fr; gap: var(--space-6); }
}

.contact__wpp {
  display: flex; align-items: center; gap: var(--space-3);
  background: linear-gradient(135deg, var(--c-wpp) 0%, var(--c-wpp-dark) 100%);
  color: #fff;
  padding: var(--space-4);
  border-radius: var(--radius);
  margin-bottom: var(--space-4);
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
  transition: transform var(--transition);
}
.contact__wpp:hover { transform: translateY(-2px); }
.contact__wpp svg { flex-shrink: 0; }
.contact__wpp span { display: flex; flex-direction: column; }
.contact__wpp strong { font-size: 1.1rem; }
.contact__wpp small { opacity: .9; font-size: .85rem; }

.contact__list { display: flex; flex-direction: column; gap: var(--space-3); }
.contact__list li {
  display: flex; flex-direction: column; gap: .15rem;
  padding: var(--space-3);
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
}
.contact__list strong { font-size: .8rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.contact__list a { color: var(--c-primary); font-weight: 500; }
.contact__list address { font-style: normal; color: var(--c-text); }

.contact__form {
  background: #fff;
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  display: flex; flex-direction: column; gap: var(--space-3);
}
@media (min-width: 1024px) { .contact__form { padding: var(--space-5); } }

.contact__form-intro { font-size: .9rem; margin: 0 0 var(--space-2); }

.contact__form label {
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .9rem; font-weight: 500;
}
.contact__form input,
.contact__form textarea {
  font: inherit; font-size: 1rem;
  padding: .75rem .9rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-bg-alt);
  color: var(--c-text);
  transition: border-color var(--transition), background var(--transition);
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: 0;
  border-color: var(--c-primary);
  background: #fff;
}
.contact__form input:invalid:not(:placeholder-shown),
.contact__form textarea:invalid:not(:placeholder-shown) {
  border-color: #d94545;
}
.contact__form-note {
  font-size: .82rem; color: var(--c-muted); margin: 0; text-align: center;
}

.map {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--c-primary);
  color: rgba(255,255,255,.75);
  padding: var(--space-7) 0 0;
  margin-top: var(--space-7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}
@media (min-width: 640px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer h4 {
  color: #fff;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--space-3);
}
.footer ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer a { color: rgba(255,255,255,.75); transition: color var(--transition); font-size: .92rem; }
.footer a:hover { color: #fff; }
.footer__brand .logo {
  color: #fff;
  margin-bottom: var(--space-3);
}
.footer__brand p { color: rgba(255,255,255,.6); max-width: 360px; }

.footer__social a {
  display: inline-flex; align-items: center; gap: .5rem;
}
.footer__social svg { vertical-align: middle; }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: var(--space-3) 0;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}
.footer__bar-inner {
  display: flex; flex-direction: column; gap: var(--space-2);
  align-items: center; text-align: center;
}
@media (min-width: 768px) {
  .footer__bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- WhatsApp flutuante ---------- */
.fab-wpp {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  background: var(--c-wpp);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  z-index: 40;
  transition: transform var(--transition), background var(--transition);
}
.fab-wpp:hover { background: var(--c-wpp-dark); transform: scale(1.05); }
.fab-wpp__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--c-wpp);
  opacity: .5;
  animation: pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(1);    opacity: .5; }
  80%  { transform: scale(1.6);  opacity: 0;  }
  100% { transform: scale(1.6);  opacity: 0;  }
}
@media (min-width: 640px) {
  .fab-wpp { width: 64px; height: 64px; bottom: 28px; right: 28px; }
}

/* ---------- Animação on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Filtros da Galeria ---------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-5);
}
.gallery-filter {
  padding: .55rem 1.1rem;
  font-size: .9rem; font-weight: 500;
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
  background: #fff;
  color: var(--c-text-soft);
  transition: all var(--transition);
  cursor: pointer;
}
.gallery-filter:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.gallery-filter.is-active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15,30,61,.15);
}
.gallery__item {
  transition: transform var(--transition), box-shadow var(--transition), opacity .35s ease;
}
.gallery__item.is-hidden {
  display: none;
}
.gallery-empty {
  text-align: center;
  padding: var(--space-5);
  color: var(--c-text-soft);
  font-size: 1rem;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  border: 1px dashed var(--c-border);
}
.gallery-empty a { color: var(--c-primary); font-weight: 600; }

/* ---------- Selo Google ---------- */
.google-badge {
  display: inline-flex; align-items: center; gap: var(--space-3);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  margin-top: var(--space-3);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.google-badge__info {
  display: flex; flex-direction: column; gap: .15rem;
}
.google-badge__rating {
  display: flex; align-items: baseline; gap: .4rem;
  line-height: 1;
}
.google-badge__rating strong {
  font-size: 1.6rem; font-weight: 800; color: var(--c-text);
  letter-spacing: -.02em;
}
.google-badge__stars {
  color: #fbbf24; font-size: 1rem; letter-spacing: 1px;
  position: relative;
}
.google-badge__star-half {
  display: inline-block;
  background: linear-gradient(90deg, #fbbf24 60%, #e5e9f2 60%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.google-badge__count {
  font-size: .82rem; color: var(--c-text-soft);
  font-weight: 500;
}

/* ---------- Sticky CTA mobile ---------- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-top: 1px solid var(--c-border);
  padding: var(--space-2) var(--space-3);
  padding-bottom: max(var(--space-2), env(safe-area-inset-bottom));
  z-index: 38;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 -8px 24px rgba(15,30,61,.08);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta__inner {
  display: flex; align-items: center; gap: var(--space-3);
  max-width: var(--container);
  margin: 0 auto;
}
.sticky-cta__text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sticky-cta__text strong { font-size: .95rem; color: var(--c-text); font-weight: 700; }
.sticky-cta__text small { font-size: .78rem; color: var(--c-text-soft); }
.sticky-cta .btn { padding: .7rem 1rem; font-size: .9rem; }

/* Em telas grandes, esconder a sticky bar (usa só o FAB redondo) */
@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}
/* Em mobile, o FAB redondo pode atrapalhar a sticky bar — esconder */
@media (max-width: 767px) {
  .fab-wpp { display: none; }
  /* Padding extra no body pra última seção não ficar atrás da sticky */
  body { padding-bottom: 76px; }
}

/* ---------- Loading state no botão de submit ---------- */
.btn[disabled],
.btn.is-loading {
  pointer-events: none;
  opacity: .8;
  position: relative;
}
.btn.is-loading::after {
  content: "";
  width: 16px; height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-left: .5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Print ---------- */
@media print {
  .hdr, .footer, .fab-wpp, .sticky-cta, .lightbox, .map, .gallery-filters { display: none; }
}
