/* ============================================================
   JA Santos Compressores — Landing Page
   Paleta: #01397D (azul) · #F8BA05 (amarelo) · #F5F5F5 (claro)
   ============================================================ */

:root {
  --blue: #01397d;
  --blue-700: #012c61;
  --blue-900: #021e44;
  --blue-soft: #eaf1fb;
  --yellow: #f8ba05;
  --yellow-dark: #e0a500;
  --light: #f5f5f5;
  --paper: #ffffff;
  --ink: #0f1b2d;
  --muted: #5b6b80;
  --line: #e6ebf2;

  --shadow-sm: 0 2px 8px rgba(1, 57, 125, .06);
  --shadow-md: 0 14px 40px rgba(1, 57, 125, .10);
  --shadow-lg: 0 30px 70px rgba(1, 57, 125, .16);

  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;

  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 26px rgba(1, 57, 125, .28); }
.btn--primary:hover { background: var(--blue-700); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(1, 57, 125, .34); }

.btn--yellow { background: var(--yellow); color: var(--blue-900); box-shadow: 0 10px 26px rgba(248, 186, 5, .4); }
.btn--yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn--ghost { background: #fff; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--blue-900);
  color: #cdd9ec;
  font-size: 13.5px;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar__contact { display: flex; align-items: center; gap: 16px; }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; color: #cdd9ec; transition: color .2s; }
.topbar__link:hover { color: var(--yellow); }
.topbar__divider { width: 1px; height: 16px; background: rgba(255, 255, 255, .15); }
.topbar__social { display: flex; align-items: center; gap: 12px; }
.topbar__follow { color: #8ca3c4; }
.topbar__social a { color: #cdd9ec; transition: color .2s, transform .2s; }
.topbar__social a:hover { color: var(--yellow); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, .95); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 50px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-head); }
.brand__text strong { color: var(--blue); font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.brand__text small { color: var(--muted); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav__link:hover { color: var(--blue); background: var(--blue-soft); }
.nav__cta { margin-left: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--blue); border-radius: 2px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Eyebrow / tags ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  color: var(--blue); background: var(--blue-soft);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(248, 186, 5, .25); }

.section__tag {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow-dark); margin-bottom: 14px;
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--light); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 70% at 85% 10%, rgba(248, 186, 5, .14), transparent 60%),
    radial-gradient(55% 60% at 8% 85%, rgba(1, 57, 125, .10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--light) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(1,57,125,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(1,57,125,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000, transparent 75%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  padding: 70px 24px 90px;
}
.hero__title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: var(--blue-900); }
.hero__title .hl { color: var(--blue); position: relative; }
.hero__title .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .28em;
  background: var(--yellow); z-index: -1; border-radius: 4px; opacity: .9;
}
.hero__subtitle { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin: 24px 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero__trust { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--blue); line-height: 1; }
.trust-item span { font-size: .9rem; color: var(--muted); margin-top: 4px; }

/* Hero visual */
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.hero__blob {
  position: absolute; width: 115%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--blue-soft) 70%);
  box-shadow: inset 0 0 80px rgba(1, 57, 125, .06);
}
/* Foto da fachada: card sólido, sem flutuar (prédio flutuando fica estranho) */
.hero__photo {
  position: relative; z-index: 1;
  width: 100%; max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
}
.hero__photo img { width: 100%; height: 340px; object-fit: cover; }

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

.hero__badge {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, .9); backdrop-filter: blur(8px);
  padding: 12px 16px; border-radius: 14px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.hero__badge svg { color: var(--blue); flex-shrink: 0; }
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--ink); }
.hero__badge span { font-size: 12.5px; color: var(--muted); }
.hero__badge--top { top: 2%; left: -14%; animation: float 6s ease-in-out infinite; }
.hero__badge--bottom { bottom: 8%; right: -6%; animation: float 6s ease-in-out .8s infinite; }

.hero__badge-rating {
  font-family: var(--font-head); font-weight: 800; font-size: 1.55rem;
  color: var(--blue); line-height: 1; flex-shrink: 0;
}
.hero__stars { color: var(--yellow-dark); font-size: 14px; letter-spacing: 1px; }
.hero__star--half {
  background: linear-gradient(90deg, var(--yellow-dark) 45%, var(--line) 45%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; color: var(--blue-900); }
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }

/* ---------- Services ---------- */
.services { background: var(--light); }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s, background-color .3s ease, color .3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { 
  transform: translateY(-8px); box-shadow: var(--shadow-lg); 
  background: var(--blue); color: #fff; border-color: var(--blue); 
}
.service-card:hover::before { transform: scaleX(1); background: var(--yellow); }
.service-card:hover p { color: #c8d6ec; }
.service-card:hover .link-arrow { color: var(--yellow); }
.service-card:hover .service-card__icon { background: rgba(255, 255, 255, .12); }
.service-card:hover .service-card__icon img { filter: brightness(0) invert(1); }
.service-card__icon {
  width: 72px; height: 72px; border-radius: 18px; background: var(--blue-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.service-card__icon img { width: 40px; height: 40px; object-fit: contain; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); margin-bottom: 20px; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 600; color: var(--blue); font-size: 15px; }
.link-arrow svg { transition: transform .25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Products marquee ---------- */
.products { background: #fff; padding-bottom: 70px; }
.marquee {
  position: relative; overflow: hidden; padding: 14px 0 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track { display: flex; gap: 26px; width: max-content; animation: scroll-x 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.product-card {
  width: 330px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card__media {
  height: 230px; background: radial-gradient(circle at 50% 40%, #fff, var(--light));
  display: flex; align-items: center; justify-content: center; padding: 24px;
  border-bottom: 1px solid var(--line);
}
.product-card__media img { max-height: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s ease; }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__body { padding: 22px 24px 26px; }
.product-card__cat {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--yellow-dark);
  background: rgba(248, 186, 5, .14); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px;
}
.product-card__body h3 { font-size: 1.18rem; color: var(--blue-900); margin-bottom: 16px; min-height: 2.6em; }
.product-card__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--blue);
}
.product-card__cta::after { content: "→"; transition: transform .25s; }
.product-card__cta:hover::after { transform: translateX(4px); }

.products__foot { text-align: center; margin-top: 20px; }

/* ---------- Demais produtos ("muito além dos compressores") ---------- */
.beyond { margin-top: 40px; }
.beyond__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center;
  background: var(--light); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 56px;
}
.beyond__title { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; color: var(--blue-900); }
.beyond__lead { color: var(--muted); margin-top: 16px; max-width: 560px; }

.beyond__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px;
  margin: 32px 0 34px;
}
.beyond-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.beyond-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--blue-soft); }
.beyond-item svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.beyond-item strong { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--ink); line-height: 1.3; }
.beyond-item span { font-size: 12.8px; color: var(--muted); }

.beyond__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.beyond__media { position: relative; }
.beyond__media img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.beyond__media figcaption {
  margin-top: 14px; font-size: 13.5px; color: var(--muted); text-align: center; line-height: 1.5;
}

/* ---------- Avaliações (Google) ---------- */
.reviews { background: #fff; }
.reviews__grid { display: grid; grid-template-columns: .9fr 1fr 1fr; gap: 26px; align-items: stretch; }

.review-score {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--blue); color: #fff;
  border-radius: var(--radius-lg); padding: 38px 30px;
  box-shadow: var(--shadow-md);
}
.review-score__brand {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--ink);
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.review-score__value {
  font-family: var(--font-head); font-size: 4rem; font-weight: 800;
  color: var(--yellow); line-height: 1;
}
.review-score__stars { color: var(--yellow); font-size: 22px; letter-spacing: 2px; margin: 10px 0 14px; }
.review-score__star--half {
  background: linear-gradient(90deg, var(--yellow) 45%, rgba(255, 255, 255, .3) 45%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.review-score__count { color: #c8d6ec; font-size: .95rem; margin-bottom: 26px; }
.review-score__count strong { color: #fff; }
.review-score .btn--ghost { margin-top: auto; }

.review-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.review-card__stars { color: var(--yellow-dark); font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }
.review-card blockquote {
  font-family: var(--font-head); font-size: 1.16rem; font-weight: 500;
  color: var(--blue-900); line-height: 1.55; margin-bottom: 26px;
}
.review-card blockquote::before { content: "“"; }
.review-card blockquote::after { content: "”"; }

.review-card__author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
}
.review-card__author strong { display: block; font-family: var(--font-head); font-size: 15px; color: var(--ink); }
.review-card__author span { font-size: 13px; color: var(--muted); }

/* ---------- About ---------- */
.about { background: var(--light); }
.about__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: auto; display: block; }
.about__stat {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--blue); color: #fff; padding: 22px 26px; border-radius: 18px;
  box-shadow: var(--shadow-md); max-width: 220px;
}
.about__stat strong { display: block; font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.about__stat span { font-size: .92rem; color: #c8d6ec; }
.about__content .section__title { margin-bottom: 18px; }
.about__content p { color: var(--muted); margin-bottom: 16px; max-width: 520px; }

.checklist { margin: 26px 0 32px; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 500; color: var(--ink); }
.checklist svg { color: #fff; background: var(--blue); border-radius: 50%; padding: 4px; flex-shrink: 0; }

/* ---------- Partners ---------- */
.partners { background: var(--light); padding: 80px 0; }
.partners__label {
  text-align: center; color: var(--ink); font-family: var(--font-head);
  font-weight: 600; font-size: 1.15rem; letter-spacing: .01em; margin-bottom: 40px;
}
.marquee--partners .marquee__track { animation-duration: 30s; gap: 40px; align-items: center; }
.partner {
  flex-shrink: 0; width: 280px; height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.partner img { max-height: 105px; max-width: 100%; width: auto; object-fit: contain; }
.partner:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue-soft); }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-900), var(--blue) 55%, var(--blue-700));
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(248, 186, 5, .18), transparent 60%); pointer-events: none;
}
.cta-band__inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 64px 24px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); max-width: 600px; }
.cta-band p { color: #c8d6ec; margin-top: 12px; max-width: 560px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--light); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__info .section__title { margin-bottom: 16px; }
.contact__list { margin-top: 34px; display: grid; gap: 22px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ic {
  width: 48px; height: 48px; border-radius: 14px; background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.contact__list strong { display: block; font-family: var(--font-head); color: var(--ink); margin-bottom: 2px; }
.contact__list a { color: var(--blue); font-weight: 500; }
.contact__list div { color: var(--muted); line-height: 1.5; }

.contact__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-md); }
.contact__form h3 { font-size: 1.5rem; color: var(--blue-900); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--light);
  transition: border-color .2s, box-shadow .2s, background .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(1, 57, 125, .1); }
.contact__form-note { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 14px; }

/* Mapa (ocupa o lugar do antigo formulário) */
.contact__map {
  position: relative; height: 100%; min-height: 480px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); background: var(--paper);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }
.contact__map-link {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 11px 18px; border-radius: 999px; box-shadow: var(--shadow-md);
  transition: background .2s, transform .2s;
}
.contact__map-link:hover { background: var(--blue-700); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { background: var(--blue-900); color: #aebfd9; padding-top: 70px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__brand img { height: 60px; background: #fff; padding: 8px; border-radius: 12px; margin-bottom: 18px; }
.footer__brand p { max-width: 320px; font-size: 14.5px; line-height: 1.7; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .08);
  display: flex; align-items: center; justify-content: center; color: #aebfd9; transition: .2s;
}
.footer__social a:hover { background: var(--yellow); color: var(--blue-900); transform: translateY(-3px); }
.footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .02em; }
.footer__col a, .footer__addr { display: block; color: #aebfd9; font-size: 14.5px; margin-bottom: 11px; transition: color .2s; }
.footer__col a:hover { color: var(--yellow); }
.footer__addr { margin-top: 6px; line-height: 1.6; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; font-size: 13.5px; color: #8ca3c4; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .25s; animation: pulse 2.4s infinite;
}
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes pulse { 0% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; padding-top: 50px; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { order: -1; min-height: 320px; padding: 30px 20px; }
  .hero__blob { display: none; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }

  .hero__photo { max-width: 520px; margin: 0 auto; }
  .hero__photo img { height: 300px; }
  .hero__badge--top { top: -2%; left: 2%; }
  .hero__badge--bottom { bottom: -2%; right: 2%; }

  .beyond__inner { grid-template-columns: 1fr; gap: 40px; padding: 44px 32px; }
  .beyond__media { order: -1; }
  .beyond__media img { height: 360px; }
  .beyond__lead { max-width: none; }
  .beyond__actions { justify-content: flex-start; }

  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .review-score { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .35s ease; visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav__link { padding: 13px 14px; }
  .nav__cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .header__inner { height: 70px; }

  .topbar__link--hide-mobile { display: none; }
  .topbar__follow { display: none; }

  .section { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .about__stat { left: 0; }
  .brand__text small { font-size: 10px; }

  .hero__photo img { height: 230px; }
  .hero__visual { padding: 35px 10px; }
  .hero__badge--top { top: -4%; left: 0; }
  .hero__badge--bottom { bottom: -4%; right: 0; }
  .beyond__inner { padding: 36px 22px; }
  .beyond__grid { grid-template-columns: 1fr; }
  .beyond__media img { height: 260px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .partner { width: 210px; height: 130px; padding: 20px; }
  .partner img { max-height: 80px; }
}

@media (max-width: 420px) {
  .hero__badge { transform: scale(.85); }
  .hero__badge--top { top: -6%; left: -2%; }
  .hero__badge--bottom { bottom: -6%; right: -2%; }
  .hero__visual { padding: 40px 5px; }
  .btn--lg { padding: 13px 22px; font-size: 15px; }
}

/* Acessibilidade: respeitar preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .hero__product, .hero__badge, .whatsapp-fab { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
