/* =========================================================
   Clínica Veterinária Esperança — estilos
   ========================================================= */

:root {
  /* Marca */
  --azul: #42BBD5;
  --azul-escuro: #2C92AC;
  --azul-profundo: #1F6B80;
  --ardosia: #555C62;
  --ardosia-escuro: #3A4045;
  --menta: #89D49D;
  --menta-escuro: #5FB778;

  /* Neutros / apoio */
  --branco: #ffffff;
  --fundo: #F4FAFB;
  --fundo-alt: #EAF5F8;
  --borda: #DCEAEE;
  --texto: #4A5157;
  --texto-suave: #6E767C;
  --whatsapp: #25D366;

  /* Tipografia */
  --f-heading: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1160px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(31, 107, 128, 0.07);
  --shadow: 0 12px 30px rgba(31, 107, 128, 0.12);
  --shadow-lg: 0 24px 60px rgba(31, 107, 128, 0.18);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--azul-escuro); text-decoration: none; }
a:hover { color: var(--azul-profundo); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--f-heading);
  color: var(--ardosia-escuro);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.35rem); font-weight: 800; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1rem; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ardosia-escuro);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid rgba(66,187,213,.55); outline-offset: 2px; border-radius: 6px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 10px 24px rgba(66,187,213,.38);
}
.btn-primary:hover { background: var(--azul-escuro); color: #fff; box-shadow: 0 14px 30px rgba(44,146,172,.42); }

.btn-outline {
  background: transparent;
  color: var(--azul-escuro);
  border-color: var(--azul);
}
.btn-outline:hover { background: var(--azul); color: #fff; }

.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--ardosia-escuro);
  border-color: var(--borda);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; border-color: var(--azul); color: var(--azul-escuro); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37,211,102,.32);
}
.btn-whatsapp:hover { background: #1EBE5A; color: #fff; }

.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-sm { padding: 11px 18px; font-size: .85rem; }
.btn-block { display: flex; width: 100%; }

.btn-pulse { animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(66,187,213,.5), 0 10px 24px rgba(66,187,213,.38); }
  70% { box-shadow: 0 0 0 18px rgba(66,187,213,0), 0 10px 24px rgba(66,187,213,.38); }
  100% { box-shadow: 0 0 0 0 rgba(66,187,213,0), 0 10px 24px rgba(66,187,213,.38); }
}

/* ---------- Eyebrow / títulos de seção ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--azul-escuro);
  background: var(--fundo-alt);
  border: 1px solid var(--borda);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--menta-escuro);
  box-shadow: 0 0 0 4px rgba(137,212,157,.35);
}
.eyebrow-center { display: inline-flex; }
.eyebrow-light {
  color: #DFF3F8;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
}

.section { padding: 84px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.light h2 { color: #fff; }
.section-sub { color: var(--texto-suave); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 46px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--borda);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(31,107,128,.10); }
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: inherit; }
.brand:hover { color: inherit; }
.brand-mark { flex: 0 0 auto; width: 46px; height: 46px; display: block; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--f-heading); font-weight: 700; color: var(--ardosia-escuro); font-size: 1.02rem; }
.brand-text small { color: var(--texto-suave); font-size: .76rem; }

.nav { margin-left: auto; }
.nav-list { display: flex; gap: 28px; }
.nav-list a {
  font-family: var(--f-heading);
  font-weight: 500;
  font-size: .93rem;
  color: var(--ardosia);
  position: relative;
  padding: 6px 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--azul);
  transition: width .22s ease;
  border-radius: 2px;
}
.nav-list a:hover { color: var(--azul-escuro); }
.nav-list a:hover::after { width: 100%; }

.header-cta { font-size: .9rem; padding: 12px 22px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  border: 1px solid var(--borda);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--ardosia-escuro);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-mobile {
  border-top: 1px solid var(--borda);
  background: #fff;
  padding: 14px 22px 22px;
}
.menu-mobile ul { display: flex; flex-direction: column; }
.menu-mobile a {
  display: block;
  padding: 13px 4px;
  font-family: var(--f-heading);
  font-weight: 500;
  color: var(--ardosia-escuro);
  border-bottom: 1px solid var(--fundo-alt);
}
.menu-mobile .btn { margin-top: 16px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 66px 0 78px;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(66,187,213,.20), transparent 60%),
    radial-gradient(700px 420px at 0% 110%, rgba(137,212,157,.20), transparent 60%),
    linear-gradient(180deg, #F7FCFD 0%, #FFFFFF 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(66,187,213,.18) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .hl { color: var(--azul); }
.lead { font-size: 1.12rem; color: var(--texto); max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 30px; }

.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  max-width: 520px;
}
.hero-trust li {
  display: flex; align-items: center; gap: 9px;
  font-size: .93rem; color: var(--ardosia);
  font-weight: 500;
}
.hero-trust svg { width: 18px; height: 18px; fill: var(--menta-escuro); flex: 0 0 auto; }

.hero-media { position: relative; }
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  aspect-ratio: 4 / 3.4;
  background: var(--fundo-alt);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  line-height: 1.15;
}
.hero-badge strong { font-family: var(--f-heading); font-size: 1.5rem; color: var(--ardosia-escuro); }
.hero-badge .stars { color: #F5A623; letter-spacing: 2px; font-size: .95rem; }
.hero-badge span:last-child { font-size: .74rem; color: var(--texto-suave); margin-top: 3px; }

/* =========================================================
   PROVA SOCIAL
   ========================================================= */
.proof-bar {
  background: var(--ardosia-escuro);
  padding: 26px 0;
}
.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.proof-item {
  display: flex; align-items: center; gap: 13px;
  color: #fff;
}
.proof-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.10);
  border-radius: 12px;
}
.proof-icon svg { width: 24px; height: 24px; }
.proof-item strong { display: block; font-family: var(--f-heading); font-size: 1.05rem; }
.proof-item span { font-size: .8rem; color: rgba(255,255,255,.72); }

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services { background: var(--branco); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card::before {
  content: "";
  position: absolute; left: 0; top: 22px; bottom: 22px;
  width: 3px; border-radius: 3px;
  background: var(--azul);
  opacity: 0;
  transition: opacity .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(66,187,213,.45);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--fundo-alt);
  margin-bottom: 16px;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--azul-escuro); }
.service-card h3 { font-size: 1.05rem; margin-bottom: .5em; }
.service-card p { font-size: .92rem; color: var(--texto-suave); margin: 0; }
.service-card.featured { border-color: var(--menta-escuro); background: linear-gradient(180deg, #F3FBF5, #fff); }
.service-card.featured .service-icon { background: rgba(137,212,157,.22); }
.service-card.featured .service-icon svg { fill: var(--menta-escuro); }
.tag-featured {
  position: absolute; top: 14px; right: 14px;
  background: var(--menta); color: #1F4D2C;
  font-family: var(--f-heading); font-weight: 700;
  font-size: .68rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}

.services-extras {
  margin-top: 44px;
  background: var(--fundo);
  border: 1px solid var(--borda);
  border-radius: var(--radius-lg);
  padding: 36px 34px;
  text-align: center;
}
.services-extras h3 { margin-bottom: 22px; }
.extras-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}
.extras-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; color: var(--ardosia);
  font-weight: 500;
}
.check {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--menta);
  color: #1F4D2C;
  font-size: .78rem; font-weight: 700;
}

/* =========================================================
   GALERIA
   ========================================================= */
.gallery { background: var(--fundo); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--fundo-alt);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.gallery-item::after {
  content: "⤢";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.6rem; color: #fff;
  background: rgba(31,107,128,.35);
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(14,26,31,.93);
  display: flex; align-items: center; justify-content: center;
  padding: 5vh 5vw;
  animation: fadeIn .2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.lb-img {
  max-width: 100%; max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  object-fit: contain;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
  border-radius: 50%;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 20px; right: 20px; width: 48px; height: 48px; font-size: 2rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.2rem; line-height: 1; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-counter {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: .85rem; letter-spacing: .08em;
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testimonials { background: linear-gradient(180deg, #fff, var(--fundo) 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial .stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial blockquote {
  margin: 0 0 18px;
  font-size: .96rem;
  color: var(--ardosia);
  font-style: normal;
  line-height: 1.6;
  flex: 1;
}
.testimonial figcaption { display: flex; flex-direction: column; border-top: 1px solid var(--fundo-alt); padding-top: 14px; }
.testimonial figcaption strong { font-family: var(--f-heading); color: var(--ardosia-escuro); font-size: .95rem; }
.testimonial figcaption span { font-size: .8rem; color: var(--texto-suave); }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.differentials {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(137,212,157,.16), transparent 60%),
    linear-gradient(160deg, var(--azul-profundo), #164F5F 60%, var(--ardosia-escuro));
  color: #EAF6F9;
}
.differentials .section-sub { color: rgba(255,255,255,.78); }
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diff-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(4px);
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}
.diff-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(137,212,157,.55);
  transform: translateY(-5px);
}
.diff-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(66,187,213,.22);
  margin-bottom: 16px;
}
.diff-icon svg { width: 26px; height: 26px; fill: var(--menta); }
.diff-card h3 { color: #fff; font-size: 1.08rem; }
.diff-card p { color: rgba(255,255,255,.76); font-size: .92rem; margin: 0; }

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */
.location { background: #fff; }
.location-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}
.location-info { display: flex; flex-direction: column; gap: 20px; }
.info-block {
  display: flex;
  gap: 16px;
  background: var(--fundo);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  padding: 24px;
}
.info-icon {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.info-icon svg { width: 24px; height: 24px; fill: var(--azul-escuro); }
.info-block h3 { font-size: 1rem; margin-bottom: .4em; }
.info-block p { font-size: .93rem; color: var(--texto-suave); margin: 0 0 .6em; }
.link { font-weight: 600; font-size: .9rem; }
.link:hover { text-decoration: underline; }

.hours { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours th, .hours td { text-align: left; padding: 7px 0; }
.hours th { color: var(--ardosia); font-weight: 600; }
.hours td { text-align: right; color: var(--texto-suave); }
.hours tr + tr { border-top: 1px solid var(--borda); }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 5px solid #fff;
  min-height: 420px;
  background: var(--fundo-alt);
}
.location-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--fundo); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { border-color: rgba(66,187,213,.5); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 22px;
  font-family: var(--f-heading);
  font-weight: 600;
  color: var(--ardosia-escuro);
  position: relative;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--azul);
  font-weight: 400;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--texto-suave);
  font-size: .94rem;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.final-cta {
  background:
    radial-gradient(600px 300px at 15% 20%, rgba(137,212,157,.22), transparent 60%),
    linear-gradient(150deg, var(--azul), var(--azul-profundo));
  padding: 88px 0;
  text-align: center;
  color: #fff;
}
.final-cta-inner { max-width: 760px; margin: 0 auto; }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); }
.final-cta p { color: rgba(255,255,255,.9); font-size: 1.12rem; margin-bottom: 30px; }
.final-cta .btn-primary {
  background: #fff;
  color: var(--azul-profundo);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.final-cta .btn-primary:hover { background: var(--menta); color: #17402A; }
.final-cta .btn-pulse { animation: pulseLight 2.4s infinite; }
@keyframes pulseLight {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.6), 0 16px 40px rgba(0,0,0,.22); }
  70% { box-shadow: 0 0 0 20px rgba(255,255,255,0), 0 16px 40px rgba(0,0,0,.22); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 16px 40px rgba(0,0,0,.22); }
}
.final-cta-note { display: block; margin-top: 18px; font-size: .84rem; color: rgba(255,255,255,.82); }

/* =========================================================
   RODAPÉ
   ========================================================= */
.site-footer { background: #22282C; color: rgba(255,255,255,.72); padding: 62px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 34px;
  padding-bottom: 44px;
}
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: rgba(255,255,255,.6); }
.footer-col h3 {
  color: #fff;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; font-size: .9rem; }
.footer-col a { color: rgba(255,255,255,.72); }
.footer-col a:hover { color: var(--azul); }
.footer-cta-col p { font-size: .9rem; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
}
.footer-bottom p { margin: 0; }

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 1500;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 13px 18px 13px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-3px) scale(1.02); }
.whatsapp-float svg { width: 30px; height: 30px; flex: 0 0 auto; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-cta-col { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; max-width: 620px; }
  .hero-copy { text-align: left; }
  .location-grid { grid-template-columns: 1fr; }
  .differentials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-inner { grid-template-columns: repeat(2, 1fr); }
  .extras-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .hero { padding: 42px 0 60px; }
  h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .services-grid, .gallery-grid, .differentials-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .extras-list { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .services-extras { padding: 26px 20px; }
  .btn { white-space: normal; }
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .info-block { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 1.7rem; }
}

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