:root {
  --blue: #0787c8;
  --blue-dark: #026da8;
  --blue-deep: #075887;
  --ink: #101820;
  --muted: #5e6873;
  --soft: #f3f5f7;
  --white: #ffffff;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 34px rgba(16, 24, 32, .08);
  --shadow-lg: 0 24px 70px rgba(1, 45, 72, .22);
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-padding-top: var(--header-height); }
body { margin: 0; min-width: 320px; overflow-x: hidden; font-family: 'Poppins', sans-serif; color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 9999;
  padding: .8rem 1rem; border-radius: 10px; background: var(--ink); color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--header-height); background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(7,135,200,.09);
  backdrop-filter: blur(14px); transition: box-shadow .25s ease, height .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.header-inner { height: 100%; }
.brand { display: inline-flex; width: 180px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }

.menu-toggle {
  display: inline-grid; width: 46px; height: 46px; place-content: center; gap: 5px;
  border: 0; border-radius: 12px; background: #eef8fd; cursor: pointer;
}
.menu-toggle span { display: block; width: 23px; height: 2px; border-radius: 999px; background: var(--ink); transition: .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed; left: 1rem; right: 1rem; top: calc(var(--header-height) + .6rem);
  display: grid; gap: .2rem; padding: .8rem; border: 1px solid rgba(7,135,200,.12);
  border-radius: 18px; background: white; box-shadow: var(--shadow-lg);
  transform: translateY(-18px); opacity: 0; visibility: hidden; transition: .25s ease;
}
.main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
.main-nav a { padding: .85rem 1rem; border-radius: 11px; font-size: .94rem; font-weight: 600; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--blue); background: #eff9ff; }
.main-nav .nav-cta { background: var(--blue); color: white; text-align: center; }
.main-nav .nav-cta:hover { color: white; background: var(--blue-dark); }

.hero { position: relative; padding-top: var(--header-height); background: #071018; }
.hero-swiper { position: relative; height: min(790px, calc(100svh - 20px)); min-height: 640px; }
.hero-swiper:not(.swiper-initialized) .hero-slide:not(:first-child) { display: none; }
.hero-swiper:not(.swiper-initialized) .hero-slide:first-child { height: 100%; }
.hero-slide { position: relative; display: flex; align-items: center; overflow: hidden; background-size: cover; background-position: center; }
.hero-slide--thermometer { background-image: url('../img/hero-termometro.webp'); background-position: 60% center; }
.hero-slide--workshop { background-image: url('../img/hero-oficina.webp'); background-position: 58% center; }
.hero-slide--temperature { background-image: url('../img/hero-temperatura.webp'); background-position: 62% center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.79) 45%, rgba(0,0,0,.25) 78%, rgba(0,0,0,.12) 100%); }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; min-height: 100%; padding-top: 2rem; padding-bottom: 7rem; }
.hero-copy { width: min(100%, 700px); color: white; }
.hero-kicker { display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem; color: #8bd9ff; font-size: .82rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.hero-copy h1, .hero-copy h2 { margin: 0; max-width: 680px; font-size: clamp(2.35rem, 10vw, 4.8rem); line-height: 1.03; letter-spacing: -.045em; font-weight: 800; text-wrap: balance; }
.hero-copy p { max-width: 650px; margin: 1.35rem 0 0; color: rgba(255,255,255,.86); font-size: clamp(1rem, 3.6vw, 1.22rem); line-height: 1.58; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: .65rem; padding: .9rem 1.2rem; border: 1px solid transparent; border-radius: 12px; font-size: .89rem; font-weight: 800; text-align: center; text-transform: uppercase; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid rgba(7,135,200,.32); outline-offset: 3px; }
.button--primary { background: var(--blue); color: white; box-shadow: 0 14px 28px rgba(7,135,200,.3); }
.button--primary:hover { background: var(--blue-dark); box-shadow: 0 18px 34px rgba(7,135,200,.38); }
.button--ghost { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(10px); }
.button--ghost:hover { background: rgba(255,255,255,.16); }
.button--small { min-height: 48px; padding-inline: 1.1rem; }

.hero-arrow { display: none !important; width: 48px !important; height: 48px !important; border-radius: 50%; background: rgba(255,255,255,.16); color: white !important; backdrop-filter: blur(10px); }
.hero-arrow::after { font-size: 1rem !important; font-weight: 800; }
.hero-pagination { position: absolute; z-index: 8; left: 0; right: 0; bottom: 7rem !important; text-align: center; }
.hero-pagination .swiper-pagination-bullet { width: 9px; height: 9px; background: white; opacity: .5; }
.hero-pagination .swiper-pagination-bullet-active { width: 28px; border-radius: 999px; opacity: 1; background: var(--blue); }
.hero-trust { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr; background: rgba(3,17,27,.93); color: white; }
.hero-trust > div { display: flex; align-items: center; gap: .8rem; padding: .8rem 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.hero-trust i { width: 34px; color: #6fd3ff; font-size: 1.1rem; text-align: center; }
.hero-trust span { display: grid; color: rgba(255,255,255,.7); font-size: .73rem; }
.hero-trust b { color: white; font-size: .82rem; }

.section { padding: 5rem 0; }
.section--soft { background: var(--soft); }
.section-heading { max-width: 750px; margin-bottom: 2.5rem; }
.section-heading > span, .section-label { display: block; margin-bottom: .65rem; color: var(--blue); font-size: .9rem; font-weight: 800; }
.section-heading h2, .services-copy h2, .workshop-header h2 { margin: 0; color: #282828; font-size: clamp(2rem, 8vw, 3.7rem); line-height: 1.12; letter-spacing: -.035em; font-weight: 750; }
.section-heading p, .workshop-header p { margin: 1rem 0 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.section-heading--center { margin-inline: auto; text-align: center; }

.benefits-grid { display: grid; gap: 1rem; }
.benefit-card { position: relative; min-height: 285px; padding: 1.65rem; overflow: hidden; border: 1px solid rgba(7,135,200,.06); border-radius: var(--radius-md); background: white; box-shadow: 0 8px 30px rgba(16,24,32,.04); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.benefit-card::after { content: ''; position: absolute; right: -55px; bottom: -65px; width: 145px; height: 145px; border-radius: 50%; background: radial-gradient(circle, rgba(7,135,200,.12), transparent 68%); transition: transform .35s ease; }
.benefit-card:hover { transform: translateY(-7px); border-color: rgba(7,135,200,.18); box-shadow: var(--shadow-sm); }
.benefit-card:hover::after { transform: scale(1.25); }
.benefit-icon { display: grid; width: 62px; height: 62px; margin-bottom: 1.4rem; place-items: center; border-radius: 18px; background: #e9f7ff; color: var(--blue); font-size: 1.65rem; }
.benefit-card h3 { margin: 0; max-width: 300px; font-size: clamp(1.4rem, 6vw, 2rem); line-height: 1.13; letter-spacing: -.025em; }
.benefit-card p { position: relative; z-index: 1; margin: 1.1rem 0 0; color: #46515b; line-height: 1.65; }

.air-cta { position: relative; min-height: 440px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.8)), url('../img/cta-ar.webp') center 45% / cover no-repeat; color: white; }
.air-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(7,135,200,.16), transparent 45%); }
.air-cta__content { position: relative; z-index: 2; padding-block: 4.5rem; }
.air-cta h2 { margin: 1rem 0 0; font-size: clamp(2rem, 8vw, 3.5rem); line-height: 1.12; font-weight: 750; letter-spacing: -.03em; text-wrap: balance; }
.air-cta p { margin: .9rem auto 1.6rem; max-width: 620px; color: rgba(255,255,255,.78); line-height: 1.7; }
.round-icon { display: grid; width: 74px; height: 74px; margin-inline: auto; place-items: center; border-radius: 50%; background: var(--blue); box-shadow: 0 14px 30px rgba(7,135,200,.35); font-size: 2rem; animation: breathe 2.6s ease-in-out infinite; }
.air-particles i { position: absolute; left: var(--x); bottom: -20px; width: 6px; height: 6px; border-radius: 50%; background: rgba(139,217,255,.8); filter: blur(.5px); animation: air-rise var(--speed) linear infinite; }
.air-particles i:nth-child(1) { --x: 12%; --speed: 8s; }
.air-particles i:nth-child(2) { --x: 29%; --speed: 10s; animation-delay: -3s; }
.air-particles i:nth-child(3) { --x: 54%; --speed: 7s; animation-delay: -5s; }
.air-particles i:nth-child(4) { --x: 76%; --speed: 11s; animation-delay: -2s; }
.air-particles i:nth-child(5) { --x: 91%; --speed: 9s; animation-delay: -6s; }

.services-section { padding: 5.5rem 0; background: #05090c; color: white; overflow: hidden; }
.services-layout { gap: 3rem; }
.services-copy h2 { color: white; }
.services-intro { max-width: 680px; margin: 1rem 0 1.8rem; color: rgba(255,255,255,.72); line-height: 1.75; }
.services-list { display: grid; gap: .95rem; margin: 0; padding: 0; list-style: none; }
.services-list li { display: flex; align-items: flex-start; gap: .8rem; color: rgba(255,255,255,.87); font-size: .92rem; line-height: 1.55; }
.services-list i { flex: 0 0 auto; margin-top: .22rem; color: #31c7ff; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.8rem; color: var(--blue); font-weight: 750; }
.text-link i { font-size: .85rem; transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }
.services-visual { min-width: 0; }
.services-photo-wrap { position: relative; width: min(100%, 620px); margin-inline: auto; }
.services-photo-wrap::before { content: ''; position: absolute; inset: 8% -4% -4% 8%; border: 1px solid rgba(49,199,255,.28); border-radius: var(--radius-lg); }
.services-photo-wrap img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); object-fit: cover; object-position: center; box-shadow: 0 28px 70px rgba(0,0,0,.38); }
.photo-badge { position: absolute; z-index: 2; left: .8rem; bottom: .8rem; display: grid; max-width: 235px; padding: 1rem 1.15rem; border-radius: 16px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); }
.photo-badge strong { color: var(--blue); }
.photo-badge span { font-size: .75rem; line-height: 1.4; }

.workshop-section { padding: 5rem 0; background: white; }
.workshop-header { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 160px; gap: .75rem; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: #dfeaf0; cursor: zoom-in; }
.gallery-item--large { grid-column: 1 / -1; grid-row: span 2; }
.gallery-item::after { content: '\f00e'; position: absolute; right: .75rem; bottom: .75rem; display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: rgba(7,135,200,.92); color: white; font-family: 'Font Awesome 6 Free'; font-weight: 900; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

.air-cta--second { min-height: 470px; background-position: center; }

.reviews-section { padding: 5rem 0; background: #f7f9fb; }

/* Avaliações do Google */
.google-reviews { margin-bottom: 2.75rem; }
.google-reviews__summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.15rem;
  border: 1px solid #e7eaee;
  border-radius: 18px;
  background: #fff;
}
.google-reviews__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  color: #111827;
  font-size: .92rem;
}
.google-wordmark { display: inline-flex; margin-right: .2rem; font-size: 1.55rem; font-weight: 600; letter-spacing: -.08em; }
.google-wordmark span:nth-child(1), .google-wordmark span:nth-child(4) { color: #4285f4; }
.google-wordmark span:nth-child(2), .google-wordmark span:nth-child(6) { color: #ea4335; }
.google-wordmark span:nth-child(3) { color: #fbbc05; }
.google-wordmark span:nth-child(5) { color: #34a853; }
.google-reviews__summary-stars { color: #fbbc04; font-size: 1.35rem; letter-spacing: .02em; line-height: 1; }
.google-reviews__divider { width: 1px; height: 20px; background: #d4d7dc; }
.google-reviews__write {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border: 1px solid #9aa0a6;
  border-radius: 9px;
  color: #111827;
  font-size: .9rem;
  font-weight: 700;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.google-reviews__write:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 8px 22px rgba(7, 135, 200, .12);
  transform: translateY(-2px);
}
.google-reviews__carousel { position: relative; }
.reviews-swiper { overflow: hidden; padding: .15rem .05rem .35rem; }
.reviews-swiper .swiper-wrapper { align-items: stretch; }


/* Carrossel de avaliações independente da CDN do Swiper.
   O script dedicado calcula 1, 2 ou 3 cartões por tela sem alterar o layout. */
.reviews-swiper.reviews-native-carousel {
  touch-action: pan-y;
}

.reviews-swiper.reviews-native-carousel .swiper-wrapper {
  display: flex;
  gap: var(--reviews-gap, 16px);
  width: 100%;
  align-items: stretch;
  will-change: transform;
}

.reviews-swiper.reviews-native-carousel .google-review-card {
  min-width: 0;
  flex: 0 0 auto;
  margin-right: 0 !important;
}

.google-reviews__arrow:disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}
.google-review-card {
  display: flex;
  height: auto;
  min-height: 310px;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid #e4e7eb;
  border-radius: 18px;
  background: #f3f3f3;
  color: #111827;
}
.google-review-card__header {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem;
}
.google-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #dbeafe;
}
.google-review-card__avatar--initials {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0787c8, #24b5dc);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.google-review-card__person { min-width: 0; }
.google-review-card__person h3 {
  overflow: hidden;
  margin: 0;
  color: #0f172a;
  font-size: .98rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.google-review-card__person span { display: block; margin-top: .1rem; color: #6b7280; font-size: .78rem; }
.google-review-card__google { color: #4285f4; font-size: 1.5rem; font-weight: 800; }
.google-review-card__rating { display: flex; align-items: center; gap: .5rem; margin-top: 1.05rem; }
.google-review-card__rating span { color: #fbbc04; font-size: 1.18rem; letter-spacing: .02em; line-height: 1; }
.google-review-card__rating i { color: #4285f4; font-size: .9rem; }
.google-review-card p { margin: 1rem 0 0; color: #1f2937; font-size: .92rem; line-height: 1.68; }
.google-reviews__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #e2e5e9;
  border-radius: 50%;
  background: #fff;
  color: #374151;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.google-reviews__arrow:hover { color: var(--blue); box-shadow: 0 10px 28px rgba(7, 135, 200, .18); }
.google-reviews__arrow--prev { left: -.65rem; }
.google-reviews__arrow--next { right: -.65rem; }
.google-reviews__arrow.swiper-button-disabled { opacity: .35; cursor: default; }
.contact-grid { display: grid; gap: 1rem; }
.map-card { min-height: 390px; overflow: hidden; border-radius: var(--radius-md); background: #dbe7ed; box-shadow: var(--shadow-sm); }
.map-card iframe { width: 100%; height: 100%; min-height: 390px; border: 0; }
.hours-card { display: flex; min-height: 390px; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; border-radius: var(--radius-md); background: white; text-align: center; box-shadow: var(--shadow-sm); }
.hours-icon { display: grid; width: 70px; height: 70px; margin-bottom: 1rem; place-items: center; border-radius: 20px; background: #eaf7ff; color: var(--blue); font-size: 2rem; }
.hours-card > span { color: #59636c; }
.hours-card h3 { margin: .6rem 0 .2rem; font-size: 1.55rem; line-height: 1.45; }
.hours-card p { margin: 0; font-size: 1.08rem; }
.hours-card hr { width: 100%; margin: 1.5rem 0; border: 0; border-top: 1px solid #e7edf1; }
.hours-card address { color: #59636c; font-style: normal; line-height: 1.6; }

.site-footer { background: #040b10; color: rgba(255,255,255,.74); }
.footer-grid { display: grid; gap: 2.2rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
.footer-brand img { width: 190px; filter: brightness(0) invert(1); opacity: .92; }
.footer-brand p { max-width: 420px; margin: 1.1rem 0 0; line-height: 1.7; }
.footer-grid h2 { margin: 0 0 1rem; color: white; font-size: 1rem; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: .72rem; }
.footer-grid a:hover { color: #6fd3ff; }
.footer-bottom { padding: 1.1rem 1rem; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: .8rem; }
.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; z-index: 900; right: 1rem; bottom: 1rem; display: inline-flex; width: 58px; height: 58px; align-items: center; justify-content: center; border-radius: 50%; background: #1ebc5a; color: white; box-shadow: 0 14px 28px rgba(18,145,66,.3); font-size: 1.65rem; transition: transform .2s ease; }
.floating-whatsapp:hover { transform: translateY(-4px) scale(1.03); }
.floating-whatsapp span { display: none; }

.gallery-modal { width: min(94vw, 1020px); max-width: none; padding: 0; overflow: visible; border: 0; border-radius: 20px; background: transparent; }
.gallery-modal::backdrop { background: rgba(0,0,0,.86); backdrop-filter: blur(8px); }
.gallery-modal img { width: 100%; max-height: 86vh; border-radius: 20px; object-fit: contain; background: #101010; }
.gallery-modal__close { position: absolute; z-index: 2; right: .6rem; top: .6rem; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: rgba(0,0,0,.68); color: white; cursor: pointer; }

@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes air-rise { from { transform: translateY(0) scale(.6); opacity: 0; } 12% { opacity: .9; } to { transform: translateY(-450px) translateX(70px) scale(1.8); opacity: 0; } }

@media (max-width: 639px) {
  .google-reviews__summary { padding: 1rem; }
  .google-reviews__score { gap: .42rem; }
  .google-wordmark { width: 100%; margin-bottom: .2rem; }
  .google-reviews__summary-stars { font-size: 1.15rem; }
  .google-reviews__write { width: 100%; }
  .google-review-card { min-height: 330px; padding: 1.2rem; }
  .google-reviews__arrow { width: 38px; height: 38px; }
  .google-reviews__arrow--prev { left: -.35rem; }
  .google-reviews__arrow--next { right: -.35rem; }
}

@media (min-width: 640px) {
  :root { --header-height: 92px; }
  .google-reviews__summary { flex-direction: row; align-items: center; justify-content: space-between; padding: 1rem 1.35rem; }
  .google-reviews__write { flex: 0 0 auto; }
  .brand { width: 220px; }
  .hero-swiper { min-height: 680px; }
  .hero-content { padding-bottom: 5.5rem; }
  .hero-pagination { bottom: 5.4rem !important; }
  .hero-trust { grid-template-columns: repeat(3, 1fr); padding-inline: max(1.5rem, calc((100vw - 1500px)/2)); }
  .hero-trust > div { border-top: 0; border-left: 1px solid rgba(255,255,255,.08); padding-block: 1rem; }
  .hero-trust > div:first-child { border-left: 0; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .workshop-header { grid-template-columns: 1fr auto; align-items: end; }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.6fr .8fr 1fr; }
  .floating-whatsapp { width: auto; height: 54px; padding: 0 1rem; border-radius: 999px; font-size: 1.35rem; }
  .floating-whatsapp span { display: inline; margin-left: .55rem; font-size: .82rem; font-weight: 700; }
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  :root { --header-height: 118px; }
  .site-header.is-scrolled { height: 92px; }
  .site-header.is-scrolled + main .hero { --header-height: 118px; }
  .brand { width: 265px; }
  .main-nav { position: static; display: flex; align-items: center; gap: .45rem; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: .75rem .95rem; font-size: .95rem; }
  .main-nav .nav-cta { padding-inline: 1.25rem; }
  .hero-swiper { height: min(825px, calc(100svh - 30px)); min-height: 700px; }
  .hero-copy { margin-top: -1rem; }
  .hero-slide--thermometer { background-position: center; }
  .hero-arrow { display: flex !important; }
  .hero-arrow--prev { left: 1.5rem !important; }
  .hero-arrow--next { right: 1.5rem !important; }
  .section { padding: 7rem 0; }
  .benefits-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.4rem; }
  .benefit-card { min-height: 330px; padding: 2.2rem; }
  .air-cta { min-height: 500px; }
  .services-section { padding: 7rem 0; }
  .services-layout { gap: 7rem; }
  .services-copy { padding-left: clamp(0px, 2vw, 30px); }
  .services-photo-wrap img { aspect-ratio: 5 / 6; }
  .workshop-section { padding: 7rem 0; }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 250px; gap: 1rem; }
  .gallery-item--large { grid-column: span 2; grid-row: span 2; }
  .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 1.4rem; }
  .map-card, .hours-card, .map-card iframe { min-height: 470px; }
  .reviews-section { padding: 7rem 0; }
}

@media (min-width: 1280px) {
  .main-nav { gap: 1.4rem; }
  .hero-copy h1, .hero-copy h2 { font-size: 4.7rem; }
  .hero-content { padding-left: 3.6rem !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ========================================================================== 
   Página Quem Somos
   ========================================================================== */
.main-nav a[aria-current='page'] {
  color: var(--blue);
  background: #eff9ff;
}

.about-page main {
  background: #f8fbfd;
}

.about-shell {
  position: relative;
}

.about-intro {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 4.25rem) 0 5.5rem;
  background:
    radial-gradient(circle at 9% 23%, rgba(49, 199, 255, .10), transparent 23rem),
    #f8fbfd;
}

.about-intro::before,
.about-intro::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(7, 135, 200, .12);
  border-radius: 999px;
}

.about-intro::before {
  width: 340px;
  height: 95px;
  top: 18%;
  left: -210px;
  transform: rotate(-13deg);
}

.about-intro::after {
  width: 430px;
  height: 110px;
  right: -270px;
  bottom: 7%;
  transform: rotate(12deg);
}

.about-page-title {
  margin: 0 auto 3.2rem;
  text-align: center;
}

.about-page-title span {
  display: block;
  margin-bottom: .15rem;
  color: var(--blue);
  font-size: clamp(.92rem, 3.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.about-page-title h1 {
  margin: 0;
  color: #20252b;
  font-size: clamp(2.35rem, 10vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.about-intro-grid,
.about-region-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.about-intro-copy h2,
.region-copy h2 {
  margin: 0;
  color: #1f242a;
  font-size: clamp(2rem, 7.4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.about-intro-copy h2 strong,
.region-copy h2 strong {
  display: block;
  color: var(--blue);
  font-weight: inherit;
}

.about-text {
  margin-top: 1.65rem;
}

.about-text p,
.region-copy p {
  margin: 0;
  color: #30383f;
  font-size: clamp(.98rem, 3.6vw, 1.1rem);
  line-height: 1.72;
}

.about-text p + p,
.region-copy p + p {
  margin-top: .3rem;
}

.about-photo {
  position: relative;
  min-width: 0;
  margin: 0;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 9% -3% -5% 9%;
  border: 1px solid rgba(7, 135, 200, .20);
  border-radius: 36px;
}

.about-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.49 / 1;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 60px rgba(18, 69, 101, .14);
}

.about-air-line {
  position: absolute;
  z-index: 3;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(49, 199, 255, .9), transparent);
  opacity: .85;
  animation: about-air-flow 4.8s ease-in-out infinite;
}

.about-air-line--one {
  width: 36%;
  top: 13%;
  right: -3%;
}

.about-air-line--two {
  width: 24%;
  right: 4%;
  bottom: 13%;
  animation-delay: -2.2s;
}

.about-region {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 5.5rem;
  background: #f8fbfd;
}

.region-map {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.region-map img {
  width: min(100%, 620px);
  margin-inline: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 28px rgba(7, 135, 200, .08));
}

.region-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .85rem;
  color: var(--blue);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.region-copy h2 {
  margin-bottom: 1.8rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 630px;
  margin: 3.75rem auto 0;
}

.about-stat {
  padding: 1.2rem .5rem;
  text-align: center;
}

.about-stat strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #12439a;
  font-size: clamp(2.25rem, 10vw, 4rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: 1;
}

.about-stat > span {
  display: block;
  margin-top: .7rem;
  color: #17202a;
  font-size: clamp(.9rem, 3.4vw, 1.05rem);
  font-weight: 600;
}

.counter-prefix {
  margin-right: .08em;
}

.about-values {
  padding: 4.5rem 0;
  background: #fff;
}

.values-grid {
  display: grid;
  gap: 1.25rem;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 2rem 1.55rem;
  border: 1px solid rgba(7, 135, 200, .07);
  border-radius: 34px;
  background: #eef8ff;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.value-card::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -55px;
  bottom: -65px;
  border-radius: 50%;
  background: rgba(49, 199, 255, .12);
}

.value-card:hover {
  transform: translateY(-7px);
  border-color: rgba(7, 135, 200, .18);
  box-shadow: 0 18px 48px rgba(15, 78, 116, .11);
}

.value-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 25px rgba(7, 135, 200, .10);
  font-size: 1.35rem;
}

.value-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.8rem, 8vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -.03em;
}

.value-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 1.45rem auto 0;
  color: #2f3840;
  font-size: .98rem;
  line-height: 1.62;
}

@keyframes about-air-flow {
  0%, 100% { transform: translateX(-12px) scaleX(.84); opacity: .2; }
  50% { transform: translateX(12px) scaleX(1.08); opacity: .9; }
}

@media (min-width: 640px) {
  .about-page-title { margin-bottom: 4rem; }
  .about-intro { padding-bottom: 7rem; }
  .about-intro-grid,
  .about-region-grid { gap: 4rem; }
  .about-photo img { border-radius: 42px; }
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-card { min-height: 320px; }
}

@media (min-width: 1024px) {
  .about-intro {
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 8rem;
  }

  .about-page-title { margin-bottom: 5.5rem; }

  .about-intro-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.08fr);
    gap: clamp(4rem, 7vw, 8rem);
  }

  .about-region {
    padding: 1rem 0 5rem;
  }

  .about-region-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.08fr);
    gap: clamp(4.5rem, 8vw, 8rem);
  }

  .region-map img {
    width: min(100%, 650px);
  }

  .about-stats {
    margin-top: 5rem;
  }

  .about-values {
    padding: 5.5rem 0;
  }

  .values-grid {
    gap: 3.2rem;
  }

  .value-card {
    min-height: 345px;
    padding: 2.6rem 2rem;
    border-radius: 42px;
  }

  .value-icon {
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
  }
}

@media (min-width: 1280px) {
  .about-intro-copy h2,
  .region-copy h2 {
    font-size: 3.2rem;
  }

  .about-intro-copy {
    padding-left: 1.5rem;
  }

  .region-copy {
    padding-right: 1.5rem;
  }
}

/* ========================================================================== 
   Página Serviços
   ========================================================================== */
.service-page-main {
  background: #fff;
}

.service-page-shell {
  position: relative;
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 4rem) 0 4.25rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(49, 199, 255, .12), transparent 26rem),
    linear-gradient(180deg, #f7fbfe 0%, #eef8ff 100%);
}

.service-page-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.service-page-heading > span {
  display: block;
  margin-bottom: .45rem;
  color: var(--blue);
  font-size: clamp(.86rem, 3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.service-page-heading h1 {
  margin: 0;
  color: #20252b;
  font-size: clamp(2.45rem, 11vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.service-page-heading p {
  max-width: 720px;
  margin: 1.2rem auto 0;
  color: #52606b;
  font-size: clamp(.98rem, 3.6vw, 1.12rem);
  line-height: 1.75;
}

.service-air-stroke {
  position: absolute;
  display: block;
  pointer-events: none;
  border: 1px solid rgba(7, 135, 200, .14);
  border-radius: 999px;
  animation: service-air-drift 7s ease-in-out infinite;
}

.service-air-stroke--one {
  width: 370px;
  height: 90px;
  left: -245px;
  top: 43%;
  transform: rotate(-10deg);
}

.service-air-stroke--two {
  width: 460px;
  height: 105px;
  right: -295px;
  bottom: 9%;
  transform: rotate(11deg);
  animation-delay: -2.5s;
}

.service-catalog {
  padding: 4.5rem 0 5.25rem;
  background: #fff;
}

.service-card-grid {
  display: grid;
  gap: 1.35rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 135, 200, .07);
  border-radius: 30px;
  background: #edf8ff;
  box-shadow: 0 15px 40px rgba(23, 65, 91, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(7, 135, 200, .20);
  box-shadow: 0 24px 55px rgba(20, 71, 102, .14);
}

.service-card-photo {
  position: relative;
  height: 235px;
  margin: 0;
  overflow: hidden;
  background: #dbe9f0;
}

.service-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(4, 28, 44, .14));
  pointer-events: none;
}

.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease;
}

.service-card:hover .service-card-photo img {
  transform: scale(1.045);
}

.service-card-body {
  position: relative;
  min-height: 330px;
  padding: 2rem 1.45rem 2.15rem;
}

.service-card-number {
  position: absolute;
  top: 1.45rem;
  right: 1.4rem;
  color: rgba(7, 135, 200, .16);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: 1;
}

.service-card h3 {
  max-width: calc(100% - 58px);
  margin: 0 0 1.3rem;
  color: #25313a;
  font-size: clamp(1.35rem, 5.6vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.service-card ul {
  display: grid;
  gap: .78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.55rem;
  color: #58636c;
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.55;
}

.service-card li::before {
  content: '\f054';
  position: absolute;
  left: 0;
  top: .12rem;
  color: var(--blue);
  font-family: 'Font Awesome 6 Free';
  font-size: .84rem;
  font-weight: 900;
}

.service-confidence {
  padding: 4.75rem 0;
  background: #061018;
  color: #fff;
}

.service-confidence-grid {
  display: grid;
  gap: 2.8rem;
  align-items: center;
}

.service-confidence-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.45rem);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.service-confidence-copy p {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, .69);
  line-height: 1.75;
}

.service-confidence-points {
  display: grid;
  gap: 1rem;
}

.service-confidence-points > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border: 1px solid rgba(111, 211, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
}

.service-confidence-points i {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 14px;
  background: rgba(7, 135, 200, .2);
  color: #6fd3ff;
  font-size: 1.2rem;
}

.service-confidence-points span {
  color: rgba(255, 255, 255, .66);
  font-size: .88rem;
  line-height: 1.55;
}

.service-confidence-points strong {
  display: block;
  margin-bottom: .25rem;
  color: #fff;
  font-size: 1rem;
}

@keyframes service-air-drift {
  0%, 100% { translate: -12px 0; opacity: .25; }
  50% { translate: 18px -6px; opacity: .85; }
}

@media (min-width: 640px) {
  .service-page-hero {
    padding-bottom: 5.5rem;
  }

  .service-catalog {
    padding-top: 5.5rem;
    padding-bottom: 6.5rem;
  }

  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-photo {
    height: 260px;
  }

  .service-card-body {
    padding: 2rem 1.8rem 2.25rem;
  }
}

@media (min-width: 1024px) {
  .service-page-hero {
    padding-top: calc(var(--header-height) + 5.25rem);
    padding-bottom: 6.25rem;
  }

  .service-catalog {
    padding-top: 6.75rem;
    padding-bottom: 7.5rem;
  }

  .service-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .service-card {
    border-radius: 36px;
  }

  .service-card-photo {
    height: 300px;
  }

  .service-card-body {
    min-height: 365px;
    padding: 2.35rem 2rem 2.5rem;
  }

  .service-confidence {
    padding: 7rem 0;
  }

  .service-confidence-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(4rem, 8vw, 8rem);
  }
}

@media (min-width: 1280px) {
  .service-card-grid {
    gap: 2.5rem;
  }

  .service-card-photo {
    height: 305px;
  }
}

/* Fallback das utilidades Tailwind usadas na estrutura principal. */
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.grid { display: grid; }
.w-full { width: 100%; }
.max-w-\[1500px\] { max-width: 1500px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.text-center { text-align: center; }
.bg-white { background-color: #fff; }
.text-slate-900 { color: #0f172a; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.scroll-smooth { scroll-behavior: smooth; }

@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==========================================================================
   Correção de largura no mobile
   Evita que navbar, carrossel e animações criem rolagem lateral.
   ========================================================================== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-header,
.header-inner,
.hero,
.hero-swiper,
.swiper-wrapper,
.hero-slide,
.hero-content,
main,
section {
  max-width: 100%;
}

.header-inner,
.hero-content {
  min-width: 0;
}

@media (max-width: 639px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    width: 100%;
    max-width: 100vw;
    overflow: visible;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    width: clamp(132px, 42vw, 165px);
    max-width: calc(100% - 66px);
    min-width: 0;
    overflow: hidden;
  }

  .brand img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .menu-toggle {
    flex: 0 0 46px;
    margin-left: 10px;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
  }

  .hero,
  .hero-swiper,
  .swiper-wrapper,
  .hero-slide {
    width: 100%;
    max-width: 100vw;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy h2,
  .hero-copy p,
  .hero-actions {
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-copy h2 {
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 330px);
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-right: .85rem;
    padding-left: .85rem;
    white-space: normal;
  }

  /* O fade lateral do AOS pode aumentar a largura visual antes da animação. */
  [data-aos='fade-right'],
  [data-aos='fade-left'] {
    transform: translate3d(0, 28px, 0);
  }
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}


/* ==========================================================================
   Correção definitiva da navegação mobile
   Mantém o menu visível fora da altura do header sem criar rolagem lateral.
   ========================================================================== */
@media (max-width: 1023px) {
  body {
    min-width: 0;
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    position: relative;
    min-width: 0;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    box-sizing: border-box;
    width: auto;
    max-width: none;
    max-height: calc(100svh - var(--header-height) - 1.2rem);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ==========================================================================
   Navegação com submenu das oficinas
   ========================================================================== */
.nav-dropdown {
  position: relative;
  min-width: 0;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .55rem;
  padding: .85rem 1rem;
  border-radius: 11px;
  cursor: pointer;
  list-style: none;
  font-size: .94rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown[open] > summary {
  color: var(--blue);
  background: #eff9ff;
}

.nav-dropdown summary i {
  font-size: .7rem;
  transition: transform .22s ease;
}

.nav-dropdown[open] summary i { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: grid;
  gap: .2rem;
  margin-top: .25rem;
  padding: .35rem;
  border: 1px solid rgba(7, 135, 200, .1);
  border-radius: 13px;
  background: #f8fcff;
}

.nav-dropdown-menu a {
  display: block;
  white-space: nowrap;
}

.main-nav a[aria-current='page'],
.nav-dropdown-menu a[aria-current='page'] {
  color: var(--blue);
  background: #eaf7ff;
}

@media (min-width: 1024px) {
  .nav-dropdown summary {
    padding: .75rem .95rem;
    font-size: .95rem;
  }

  .nav-dropdown-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + .6rem);
    left: 50%;
    width: max-content;
    min-width: 190px;
    margin-top: 0;
    padding: .5rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(5, 42, 65, .17);
    transform: translateX(-50%);
  }

  .nav-dropdown-menu::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -7px;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(7, 135, 200, .1);
    border-left: 1px solid rgba(7, 135, 200, .1);
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
  }

  .nav-dropdown-menu a { position: relative; z-index: 1; }
}

/* ==========================================================================
   Páginas Oficina Fixa e Oficina Móvel
   ========================================================================== */
.workshop-page-main {
  background: #fff;
}

.workshop-page-shell {
  position: relative;
  z-index: 2;
}

.workshop-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(77, 195, 255, .24), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(7, 135, 200, .16), transparent 30%),
    linear-gradient(135deg, #f7fcff 0%, #edf8ff 52%, #dff3ff 100%);
}

.workshop-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(7, 135, 200, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 135, 200, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.workshop-hero > .workshop-page-shell {
  gap: 3.2rem;
}

.workshop-hero-copy {
  position: relative;
  z-index: 4;
}

.workshop-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  padding: .55rem .85rem;
  border: 1px solid rgba(7, 135, 200, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--blue-deep);
  box-shadow: 0 10px 24px rgba(7, 135, 200, .08);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.workshop-kicker i { color: var(--blue); }

.workshop-hero-copy h1 {
  margin: 0;
  color: #071823;
  font-size: clamp(3rem, 14vw, 6rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .95;
  text-wrap: balance;
}

.workshop-hero-copy > p {
  max-width: 680px;
  margin: 1.45rem 0 0;
  color: #425563;
  font-size: clamp(1rem, 3.7vw, 1.18rem);
  line-height: 1.75;
}

.workshop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.button--light {
  border-color: rgba(7, 135, 200, .18);
  background: rgba(255, 255, 255, .75);
  color: #173342;
  box-shadow: 0 10px 28px rgba(13, 67, 98, .08);
  backdrop-filter: blur(10px);
}

.button--light:hover {
  border-color: rgba(7, 135, 200, .35);
  background: #fff;
  color: var(--blue-dark);
}

.workshop-hero-highlights {
  display: grid;
  gap: .7rem;
  margin-top: 2rem;
}

.workshop-hero-highlights span {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #314956;
  font-size: .88rem;
  font-weight: 600;
}

.workshop-hero-highlights i { color: var(--blue); }

.workshop-hero-media {
  position: relative;
  width: min(100%, 690px);
  min-height: 420px;
  margin-inline: auto;
}

.workshop-main-photo {
  position: absolute;
  inset: 0 0 3.8rem 0;
  margin: 0;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, .9);
  border-radius: 34px;
  background: #d8eaf4;
  box-shadow: 0 28px 75px rgba(4, 56, 88, .23);
  transform: rotate(1.2deg);
  animation: workshop-photo-float 6s ease-in-out infinite;
}

.workshop-main-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgba(0, 56, 88, .22));
  pointer-events: none;
}

.workshop-main-photo img,
.workshop-secondary-photo img,
.mobile-van-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-secondary-photo {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: -1.2rem;
  width: min(46%, 280px);
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 26px;
  background: #dcebf3;
  box-shadow: 0 22px 45px rgba(4, 45, 70, .25);
  transform: rotate(-3deg);
  transition: transform .35s ease;
}

.workshop-secondary-photo:hover { transform: rotate(0) scale(1.04); }

.workshop-photo-badge {
  position: absolute;
  z-index: 4;
  left: -1rem;
  bottom: .6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  align-items: center;
  max-width: 250px;
  padding: .95rem 1rem;
  border: 1px solid rgba(7, 135, 200, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(5, 52, 79, .18);
  color: #49606e;
  font-size: .75rem;
  line-height: 1.4;
  animation: workshop-badge-pulse 3.2s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.workshop-photo-badge i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: #e8f7ff;
  color: var(--blue);
  font-size: 1.25rem;
}

.workshop-photo-badge strong {
  display: block;
  color: #17313f;
  font-size: .84rem;
}

.workshop-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(7, 135, 200, .22);
  border-radius: 50%;
  animation: workshop-orbit-spin 15s linear infinite;
}

.workshop-orbit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(7, 135, 200, .8);
}

.workshop-orbit--one {
  width: 280px;
  height: 280px;
  right: -100px;
  top: -80px;
}

.workshop-orbit--two {
  width: 190px;
  height: 190px;
  left: -70px;
  bottom: 15px;
  animation-direction: reverse;
  animation-duration: 11s;
}

.workshop-ambient span {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 0 45px rgba(7, 135, 200, .16);
  animation: workshop-drift 8s ease-in-out infinite;
}

.workshop-ambient span:nth-child(1) { width: 18px; height: 18px; left: 7%; top: 20%; }
.workshop-ambient span:nth-child(2) { width: 34px; height: 34px; left: 47%; top: 11%; animation-delay: -2s; }
.workshop-ambient span:nth-child(3) { width: 14px; height: 14px; right: 8%; bottom: 18%; animation-delay: -4s; }
.workshop-ambient span:nth-child(4) { width: 26px; height: 26px; left: 29%; bottom: 10%; animation-delay: -6s; }

.workshop-quickbar {
  position: relative;
  z-index: 5;
  background: #061018;
  color: #fff;
}

.workshop-quickbar .workshop-page-shell {
  gap: 0;
}

.workshop-quickbar .workshop-page-shell > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.workshop-quickbar .workshop-page-shell > div:last-child { border-bottom: 0; }

.workshop-quickbar i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: rgba(7, 135, 200, .18);
  color: #71d4ff;
  font-size: 1.1rem;
}

.workshop-quickbar span {
  color: rgba(255, 255, 255, .65);
  font-size: .8rem;
  line-height: 1.45;
}

.workshop-quickbar strong {
  display: block;
  color: #fff;
  font-size: .9rem;
}

.workshop-overview,
.mobile-advantages,
.mobile-services,
.mobile-process,
.mobile-coverage,
.workshop-services-showcase,
.workshop-switch {
  padding: 5rem 0;
}

.workshop-overview,
.mobile-advantages,
.mobile-coverage {
  background: #fff;
}

.workshop-section-heading {
  max-width: 800px;
  margin-bottom: 2.6rem;
}

.workshop-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.workshop-section-heading > span {
  display: block;
  margin-bottom: .65rem;
  color: var(--blue);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.workshop-section-heading h2,
.workshop-flow-copy h2,
.mobile-advantages-copy h2,
.mobile-coverage-copy h2,
.workshop-switch-card h2 {
  margin: 0;
  color: #142630;
  font-size: clamp(2rem, 8vw, 3.65rem);
  font-weight: 750;
  letter-spacing: -.045em;
  line-height: 1.1;
  text-wrap: balance;
}

.workshop-section-heading p,
.workshop-flow-copy > p,
.mobile-advantages-copy > p,
.mobile-coverage-copy > p,
.workshop-switch-card p {
  margin: 1.1rem 0 0;
  color: #5a6871;
  line-height: 1.75;
}

.workshop-feature-grid,
.mobile-advantages-cards,
.mobile-service-grid,
.mobile-process-grid,
.workshop-pill-grid {
  display: grid;
  gap: 1rem;
}

.workshop-feature-card {
  position: relative;
  min-height: 310px;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid rgba(7, 135, 200, .1);
  border-radius: 26px;
  background: linear-gradient(145deg, #fff, #f0f9ff);
  box-shadow: 0 14px 36px rgba(12, 58, 85, .07);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.workshop-feature-card::before,
.mobile-service-grid article::before,
.mobile-advantages-cards article::before {
  content: '';
  position: absolute;
  inset: -130% 40% auto -60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .85), transparent);
  transform: rotate(24deg);
  transition: translate .7s ease;
}

.workshop-feature-card:hover,
.mobile-service-grid article:hover,
.mobile-advantages-cards article:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 135, 200, .26);
  box-shadow: 0 25px 58px rgba(12, 65, 97, .14);
}

.workshop-feature-card:hover::before,
.mobile-service-grid article:hover::before,
.mobile-advantages-cards article:hover::before {
  translate: 260% 0;
}

.workshop-feature-number {
  position: absolute;
  right: 1.4rem;
  top: 1.3rem;
  color: rgba(7, 135, 200, .14);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.08em;
}

.workshop-feature-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 1.6rem;
  place-items: center;
  border-radius: 18px;
  background: #ddf3ff;
  color: var(--blue);
  font-size: 1.5rem;
  transition: transform .32s ease;
}

.workshop-feature-card:hover .workshop-feature-icon { transform: rotate(-8deg) scale(1.08); }

.workshop-feature-card h3,
.mobile-advantages-cards h3,
.mobile-service-grid h3,
.mobile-process-grid h3 {
  position: relative;
  margin: 0;
  color: #1c303b;
  font-size: 1.22rem;
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.workshop-feature-card p,
.mobile-advantages-cards p,
.mobile-service-grid p,
.mobile-process-grid p {
  position: relative;
  margin: .85rem 0 0;
  color: #5a6871;
  font-size: .92rem;
  line-height: 1.7;
}

.workshop-service-flow {
  position: relative;
  overflow: hidden;
  padding: 5.4rem 0;
  background:
    radial-gradient(circle at 9% 20%, rgba(7, 135, 200, .18), transparent 29%),
    linear-gradient(135deg, #041018, #092638);
  color: #fff;
}

.workshop-service-flow::after {
  content: '';
  position: absolute;
  right: -140px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(113, 212, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(113, 212, 255, .035), 0 0 0 110px rgba(113, 212, 255, .025);
  animation: workshop-breathe 5s ease-in-out infinite;
}

.workshop-flow-grid {
  display: grid;
  gap: 3rem;
}

.workshop-flow-copy {
  position: relative;
  z-index: 2;
}

.workshop-flow-copy h2 { color: #fff; }
.workshop-flow-copy > p { color: rgba(255, 255, 255, .68); }
.text-link--light { color: #72d5ff; }

.workshop-flow-steps {
  position: relative;
  z-index: 2;
  display: grid;
  gap: .95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workshop-flow-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(113, 212, 255, .15));
}

.workshop-flow-steps li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem;
  border: 1px solid rgba(113, 212, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(8px);
}

.workshop-flow-steps li > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(7, 135, 200, .3);
  font-weight: 800;
}

.workshop-flow-steps strong {
  display: block;
  margin-top: .1rem;
  color: #fff;
  font-size: 1rem;
}

.workshop-flow-steps p {
  margin: .3rem 0 0;
  color: rgba(255, 255, 255, .61);
  font-size: .86rem;
  line-height: 1.55;
}

.workshop-services-showcase,
.mobile-services {
  background: #f2f8fc;
}

.workshop-pill-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(7, 135, 200, .08);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 62, 90, .055);
  color: #2c424e;
  font-size: .9rem;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease;
}

.workshop-pill-grid article:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 38px rgba(13, 62, 90, .11);
}

.workshop-pill-grid i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: #e7f7ff;
  color: var(--blue);
  font-size: 1.1rem;
}

.workshop-switch {
  background: #fff;
}

.workshop-switch-card {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: 2.2rem 1.5rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(113, 212, 255, .19), transparent 28%),
    linear-gradient(135deg, #061018, #0b2e43);
  box-shadow: 0 24px 65px rgba(4, 39, 59, .23);
  color: #fff;
}

.workshop-switch-card::before {
  content: '';
  position: absolute;
  width: 310px;
  height: 310px;
  right: -160px;
  bottom: -190px;
  border: 1px solid rgba(113, 212, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(113, 212, 255, .04), 0 0 0 90px rgba(113, 212, 255, .025);
  animation: workshop-orbit-spin 18s linear infinite;
}

.workshop-switch-card > * { position: relative; z-index: 2; }

.workshop-switch-card > div > span {
  display: block;
  margin-bottom: .7rem;
  color: #71d4ff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.workshop-switch-card h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(1.9rem, 7vw, 3.15rem);
}

.workshop-switch-card p {
  max-width: 780px;
  color: rgba(255, 255, 255, .66);
}

/* Oficina móvel */
.workshop-hero--mobile {
  background:
    radial-gradient(circle at 82% 18%, rgba(77, 195, 255, .3), transparent 25%),
    radial-gradient(circle at 13% 78%, rgba(7, 135, 200, .18), transparent 31%),
    linear-gradient(135deg, #f5fbff 0%, #e7f6ff 58%, #d8f0ff 100%);
}

.workshop-route-lines span {
  position: absolute;
  z-index: -1;
  height: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(7, 135, 200, .2) 0 9px, transparent 9px 19px);
  animation: workshop-route 8s linear infinite;
}

.workshop-route-lines span:nth-child(1) { width: 45%; right: -4%; top: 28%; transform: rotate(-12deg); }
.workshop-route-lines span:nth-child(2) { width: 36%; left: -8%; bottom: 23%; transform: rotate(8deg); animation-direction: reverse; }
.workshop-route-lines span:nth-child(3) { width: 28%; right: 18%; bottom: 8%; transform: rotate(3deg); animation-duration: 11s; }

.workshop-hero-media--mobile {
  min-height: 500px;
}

.mobile-van-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.mobile-van-halo {
  position: absolute;
  width: min(88vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 135, 200, .26), rgba(7, 135, 200, .06) 58%, transparent 70%);
  animation: workshop-breathe 4s ease-in-out infinite;
}

.mobile-van-photo {
  position: relative;
  z-index: 2;
  width: min(66vw, 300px);
  aspect-ratio: 262 / 362;
  margin: 0;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, .94);
  border-radius: 38px;
  background: #148dca;
  box-shadow: 0 30px 75px rgba(2, 85, 130, .28);
  transform: rotate(2deg);
  animation: workshop-van-float 4.5s ease-in-out infinite;
}

.mobile-van-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,.12), transparent 45%, rgba(0, 40, 70, .16));
  pointer-events: none;
}

.mobile-van-photo img { object-position: center; }

.mobile-van-pin {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .85rem;
  border: 1px solid rgba(7, 135, 200, .11);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 15px 35px rgba(4, 55, 86, .16);
  color: #29424f;
  font-size: .75rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.mobile-van-pin i { color: var(--blue); }
.mobile-van-pin--one { left: 0; top: 18%; animation: workshop-pin-float 4s ease-in-out infinite; }
.mobile-van-pin--two { right: 0; bottom: 19%; animation: workshop-pin-float 4s ease-in-out infinite reverse; }

.mobile-advantages-grid,
.mobile-coverage > .workshop-page-shell {
  display: grid;
  gap: 3rem;
}

.mobile-advantages-cards article {
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border: 1px solid rgba(7, 135, 200, .09);
  border-radius: 22px;
  background: #f2f9fd;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.mobile-advantages-cards i {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 24px rgba(7, 135, 200, .1);
  font-size: 1.3rem;
}

.mobile-service-grid article {
  position: relative;
  min-height: 280px;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(7, 135, 200, .08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 62, 91, .06);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.mobile-service-grid article > span {
  position: absolute;
  right: 1.3rem;
  top: 1.15rem;
  color: rgba(7, 135, 200, .12);
  font-size: 2.2rem;
  font-weight: 800;
}

.mobile-service-grid article > i {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 1.5rem;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(145deg, #e4f6ff, #f4fbff);
  color: var(--blue);
  font-size: 1.45rem;
  transition: transform .3s ease;
}

.mobile-service-grid article:hover > i { transform: rotate(8deg) scale(1.08); }

.mobile-process {
  position: relative;
  overflow: hidden;
  background: #061018;
  color: #fff;
}

.mobile-process .workshop-section-heading h2 { color: #fff; }
.mobile-process .workshop-section-heading > span { color: #72d5ff; }

.workshop-route-track {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 52%;
  height: 3px;
  opacity: .35;
  background: repeating-linear-gradient(90deg, #72d5ff 0 10px, transparent 10px 22px);
  transform: rotate(-2deg);
  animation: workshop-route 7s linear infinite;
}

.mobile-process-grid {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-process-grid li {
  position: relative;
  min-height: 260px;
  padding: 1.6rem;
  border: 1px solid rgba(113, 212, 255, .13);
  border-radius: 25px;
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(10px);
}

.mobile-process-grid li > span {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(113, 212, 255, .2);
  font-size: 2rem;
  font-weight: 800;
}

.mobile-process-grid li > i {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.4rem;
  place-items: center;
  border-radius: 18px;
  background: rgba(7, 135, 200, .22);
  color: #72d5ff;
  font-size: 1.45rem;
  animation: workshop-icon-breathe 3s ease-in-out infinite;
}

.mobile-process-grid h3 { color: #fff; }
.mobile-process-grid p { color: rgba(255, 255, 255, .62); }

.mobile-coverage-map {
  position: relative;
  width: min(100%, 570px);
  margin: 0 auto;
}

.mobile-coverage-map img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 24px 34px rgba(6, 53, 79, .15));
}

.coverage-pulse {
  position: absolute;
  z-index: 1;
  left: 44%;
  top: 56%;
  width: 42px;
  height: 42px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(7, 135, 200, .35);
  animation: workshop-coverage-pulse 2.2s ease-out infinite;
}

.mobile-coverage-copy ul {
  display: grid;
  gap: .8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.mobile-coverage-copy li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: #435864;
  font-size: .94rem;
  line-height: 1.55;
}

.mobile-coverage-copy li i {
  margin-top: .2rem;
  color: var(--blue);
}

.workshop-switch--light { background: #f2f8fc; }

/* Animações das páginas de oficina */
@keyframes workshop-photo-float {
  0%, 100% { transform: rotate(1.2deg) translateY(0); }
  50% { transform: rotate(.2deg) translateY(-9px); }
}

@keyframes workshop-van-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-12px); }
}

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

@keyframes workshop-badge-pulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.015); }
}

@keyframes workshop-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes workshop-drift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .45; }
  50% { transform: translate3d(20px, -24px, 0); opacity: .95; }
}

@keyframes workshop-breathe {
  0%, 100% { transform: scale(1); opacity: .65; }
  50% { transform: scale(1.07); opacity: 1; }
}

@keyframes workshop-route {
  to { background-position: 160px 0; }
}

@keyframes workshop-icon-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes workshop-coverage-pulse {
  0% { box-shadow: 0 0 0 0 rgba(7, 135, 200, .36); transform: scale(.82); }
  70% { box-shadow: 0 0 0 32px rgba(7, 135, 200, 0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(7, 135, 200, 0); transform: scale(.82); }
}

@media (min-width: 640px) {
  .workshop-hero {
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 5.5rem;
  }

  .workshop-hero-highlights {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 1.4rem;
  }

  .workshop-hero-media { min-height: 520px; }

  .workshop-quickbar .workshop-page-shell {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workshop-quickbar .workshop-page-shell > div {
    padding: 1.35rem 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 0;
  }

  .workshop-quickbar .workshop-page-shell > div:first-child { padding-left: 0; }
  .workshop-quickbar .workshop-page-shell > div:last-child { padding-right: 0; border-right: 0; }

  .workshop-overview,
  .mobile-advantages,
  .mobile-services,
  .mobile-process,
  .mobile-coverage,
  .workshop-services-showcase,
  .workshop-switch {
    padding: 6rem 0;
  }

  .workshop-feature-grid,
  .mobile-advantages-cards,
  .mobile-service-grid,
  .mobile-process-grid,
  .workshop-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshop-switch-card { padding: 3rem; }

  .workshop-hero-media--mobile { min-height: 590px; }
  .mobile-van-photo { width: min(52vw, 340px); }
  .mobile-van-pin--one { left: 8%; }
  .mobile-van-pin--two { right: 7%; }
}

@media (min-width: 1024px) {
  .workshop-hero {
    min-height: 760px;
    display: grid;
    align-items: center;
    padding-top: calc(var(--header-height) + 4.5rem);
    padding-bottom: 5rem;
  }

  .workshop-hero > .workshop-page-shell {
    grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
    gap: clamp(4rem, 7vw, 8rem);
  }

  .workshop-hero-copy h1 { font-size: clamp(4.6rem, 7.2vw, 7rem); }

  .workshop-hero-highlights {
    grid-template-columns: repeat(3, max-content);
  }

  .workshop-hero-media { min-height: 570px; }

  .workshop-main-photo { inset: 0 2rem 4rem 0; }
  .workshop-secondary-photo { right: -1.5rem; bottom: -.8rem; width: 43%; }
  .workshop-photo-badge { left: -1.7rem; bottom: 1rem; }

  .workshop-feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.35rem; }

  .workshop-feature-card { min-height: 355px; padding: 2rem; }

  .workshop-service-flow { padding: 7.5rem 0; }
  .workshop-flow-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(4rem, 8vw, 8rem); align-items: center; }

  .workshop-pill-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }

  .workshop-switch-card {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 3.5rem 4rem;
  }

  .workshop-switch-card .button { max-width: 290px; }

  .workshop-hero-media--mobile { min-height: 610px; }
  .mobile-van-photo { width: 350px; }
  .mobile-van-pin--one { left: 2%; top: 22%; }
  .mobile-van-pin--two { right: -1%; bottom: 21%; }

  .mobile-advantages-grid {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(4rem, 8vw, 8rem);
    align-items: center;
  }

  .mobile-advantages-cards { gap: 1.25rem; }
  .mobile-advantages-cards article { min-height: 225px; padding: 1.7rem; }

  .mobile-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
  .mobile-service-grid article { min-height: 310px; padding: 1.9rem; }

  .mobile-process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.3rem; }
  .mobile-process-grid li { min-height: 315px; padding: 1.8rem; }

  .mobile-coverage > .workshop-page-shell {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(4rem, 8vw, 8rem);
  }
}

@media (min-width: 1280px) {
  .workshop-hero > .workshop-page-shell { gap: 8rem; }
  .workshop-hero-media { min-height: 610px; }
  .workshop-main-photo { right: 2.5rem; }
  .workshop-feature-grid { gap: 1.7rem; }
  .mobile-service-grid { gap: 1.7rem; }
}

@media (max-width: 639px) {
  .workshop-hero {
    padding-top: calc(var(--header-height) + 2.8rem);
    padding-bottom: 3.5rem;
  }

  .workshop-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .workshop-hero-actions .button { width: 100%; }

  .workshop-main-photo { inset-bottom: 3rem; border-width: 6px; border-radius: 27px; }
  .workshop-secondary-photo { right: 0; width: 45%; border-width: 5px; border-radius: 20px; }
  .workshop-photo-badge { left: 0; max-width: 215px; padding: .75rem; }
  .workshop-photo-badge i { width: 38px; height: 38px; }

  .workshop-quickbar .workshop-page-shell > div { padding-inline: .2rem; }

  .workshop-feature-card { min-height: 285px; }
  .workshop-switch-card .button { width: 100%; }

  .workshop-hero-media--mobile { min-height: 480px; }
  .mobile-van-pin { max-width: 150px; }
  .mobile-van-pin--one { left: -2%; top: 14%; }
  .mobile-van-pin--two { right: -2%; bottom: 13%; }

  .workshop-route-track { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .workshop-main-photo,
  .workshop-photo-badge,
  .workshop-orbit,
  .workshop-ambient span,
  .mobile-van-photo,
  .mobile-van-pin,
  .mobile-van-halo,
  .workshop-route-lines span,
  .workshop-route-track,
  .mobile-process-grid li > i,
  .coverage-pulse,
  .workshop-switch-card::before,
  .workshop-service-flow::after {
    animation: none !important;
  }
}

/* Ajuste intermediário para a navegação não encostar na logo em notebooks menores. */
@media (min-width: 1024px) and (max-width: 1199px) {
  .brand { width: 220px; }
  .main-nav { gap: .1rem; }
  .main-nav a,
  .nav-dropdown summary { padding: .68rem .72rem; font-size: .86rem; }
  .main-nav .nav-cta { padding-inline: .95rem; }
}

.nav-dropdown:has(a[aria-current='page']) > summary {
  color: var(--blue);
  background: #eff9ff;
}
