:root {
  --navy-950: #03101f;
  --navy-900: #06182b;
  --navy-850: #08213a;
  --navy-800: #0a2b49;
  --navy-700: #103d63;
  --yellow-500: #FC6700;
  --yellow-600: #FC6700;
  --green-500: #11b85a;
  --green-600: #0c9848;
  --white: #ffffff;
  --ice: #f4f7fb;
  --line: #dbe4ef;
  --text: #132033;
  --muted: #637083;
  --shadow: 0 14px 28px rgba(3, 16, 31, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ice);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--yellow-500);
  color: var(--navy-950);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.top-bar {
  background: #020b15;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.top-bar__inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.top-bar__inner::-webkit-scrollbar {
  display: none;
}

.top-bar span {
  position: relative;
  flex: 0 0 auto;
  padding-left: 1.1rem;
  white-space: nowrap;
}

.top-bar span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.46rem;
  height: 0.46rem;
  transform: translateY(-50%) rotate(45deg);
  background: var(--yellow-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 18, 33, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.header__inner {
  position: relative;
  display: grid;
  grid-template-areas: "brand . actions toggle";
  grid-template-columns: minmax(132px, 178px) 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 66px;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  max-width: 178px;
}

.brand img {
  width: 178px;
  aspect-ratio: 920 / 306;
  object-fit: contain;
}

.main-nav {
  grid-area: nav;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 0;
  overflow: hidden;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  box-shadow: var(--shadow);
  transition: max-height 180ms ease;
}

.main-nav.is-open {
  max-height: 420px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.92);
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--yellow-500);
}

.header-actions {
  grid-area: actions;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-toggle {
  grid-area: toggle;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--large {
  min-height: 52px;
  padding: 0.9rem 1.25rem;
}

.btn--whatsapp {
  background: var(--green-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 184, 90, 0.28);
}

.btn--whatsapp:hover {
  background: var(--green-600);
}

.btn--call {
  display: none;
  background: var(--yellow-500);
  color: var(--navy-950);
}

.btn--outline {
  background: rgba(3, 16, 31, 0.2);
  border-color: var(--yellow-500);
  color: var(--white);
}

.btn--dark {
  background: var(--navy-900);
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(620px, calc(100svh - 96px));
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(3, 16, 31, 0.96) 0%, rgba(3, 16, 31, 0.88) 35%, rgba(3, 16, 31, 0.42) 70%, rgba(3, 16, 31, 0.22) 100%),
    url("../../imagens/otimizadas/socorro-bateria-cascavel-hero-mobile.webp");
  background-position: center top;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(0deg, rgba(3, 16, 31, 0.9), rgba(3, 16, 31, 0));
}

.hero__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  min-height: inherit;
  padding: 2.6rem 0 3rem;
}

.hero__content {
  max-width: 710px;
}

.section-kicker {
  margin-bottom: 0.7rem;
  color: var(--yellow-500);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 0.85rem;
  color: var(--white);
  font-size: 2.9rem;
  font-style: italic;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.46);
}

.hero h1 span {
  display: inline-block;
  color: var(--yellow-500);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 650;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  max-width: 680px;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 850;
}

.hero-benefits strong {
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(252, 103, 0, 0.8);
  border-radius: 50%;
  color: var(--yellow-500);
  font-size: 0.72rem;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  max-width: 560px;
}

.hero-panel {
  display: none;
  align-self: end;
  max-width: 330px;
  margin-left: auto;
  padding: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 16, 31, 0.72);
  box-shadow: var(--shadow);
}

.hero-stars {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stars span {
  color: var(--yellow-500);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.hero-stars small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--yellow-500);
  font-size: 1rem;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.hero-panel li::before,
.brand-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--yellow-500);
}

.section {
  padding: 3.5rem 0;
}

.section--light {
  background: var(--ice);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background:
    linear-gradient(180deg, rgba(6, 24, 43, 0.94), rgba(3, 16, 31, 0.98)),
    var(--navy-900);
  color: var(--white);
}

.section--navy {
  background: var(--navy-850);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.section-heading h2,
.about__content h2,
.clients h2,
.trust h2,
.final-cta h2 {
  margin-bottom: 0.8rem;
  color: var(--navy-950);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.12;
}

.section-heading p,
.about__content p,
.clients p,
.trust p,
.final-cta p {
  color: var(--muted);
  font-weight: 550;
}

.section-heading--dark h2,
.section-heading--dark p {
  color: var(--white);
}

.section-heading--dark p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

.benefit-grid,
.brand-grid,
.battery-grid,
.service-grid,
.client-grid,
.seal-grid,
.neighborhood-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card,
.brand-card,
.service-card,
.battery-card,
.client-card,
.faq-list details {
  border-radius: var(--radius);
}

.benefit-card {
  min-height: 176px;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(3, 16, 31, 0.08);
}

.card-icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--navy-950);
  font-size: 0.76rem;
  font-weight: 950;
}

.benefit-card h3,
.brand-card h3,
.battery-card h3,
.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.18;
}

.benefit-card p,
.brand-card p,
.battery-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(3, 16, 31, 0.1);
}

.brand-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef2f7;
}

.brand-card__body {
  padding: 1rem;
}

.brand-card__body a {
  display: inline-flex;
  margin-top: 0.95rem;
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  border-bottom: 2px solid var(--yellow-500);
}

.brand-note {
  position: relative;
  max-width: 850px;
  margin: 1.4rem auto 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 650;
  text-align: center;
}

.brand-note::before {
  top: 0.64em;
}

.product-highlight {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--navy-950), var(--navy-850));
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-highlight img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
  background: var(--white);
}

.product-highlight h3 {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-highlight p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.battery-grid {
  grid-template-columns: 1fr;
}

.battery-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 100%;
}

.battery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.battery-card h3 {
  margin: 0;
  padding: 0.9rem 0.9rem 0.25rem;
  color: var(--white);
  text-transform: uppercase;
}

.battery-card p {
  padding: 0 0.9rem 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.service-grid {
  grid-template-columns: 1fr;
}

.service-card {
  min-height: 185px;
  padding: 1.05rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-card h3 {
  color: var(--white);
}

.service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(252, 103, 0, 0.72);
  color: var(--yellow-500);
}

.about__grid {
  display: grid;
  gap: 2rem;
}

.about__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.about__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about__content {
  align-self: center;
}

.seal-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 1.4rem;
}

.seal-grid span {
  display: grid;
  min-height: 64px;
  align-items: center;
  padding: 0.85rem;
  border-left: 4px solid var(--yellow-500);
  border-radius: var(--radius);
  background: var(--ice);
  color: var(--navy-950);
  font-weight: 900;
}

.neighborhood-grid {
  grid-template-columns: 1fr 1fr;
}

.neighborhood-grid a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-950);
  font-weight: 850;
  text-align: center;
  box-shadow: 0 8px 20px rgba(3, 16, 31, 0.06);
}

.neighborhood-grid a:hover {
  border-color: var(--yellow-600);
  background: #fff3eb;
}

.trust__grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.trust__actions,
.clients__actions,
.final-cta__actions {
  display: grid;
  gap: 0.75rem;
}

.client-grid {
  grid-template-columns: 1fr;
  margin-bottom: 1.2rem;
}

.client-card {
  min-height: 220px;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(3, 16, 31, 0.08);
}

.client-stars {
  margin-bottom: 0.7rem;
  color: var(--yellow-500);
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.client-card h3 {
  margin-bottom: 0.45rem;
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 950;
}

.client-card p {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.client-card span {
  display: inline-flex;
  color: var(--navy-700);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.clients__actions {
  max-width: 620px;
  margin-inline: auto;
}

.clients__note {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 880px;
  margin-inline: auto;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(3, 16, 31, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--navy-950);
  font-weight: 900;
}

.faq-list summary::marker {
  color: var(--yellow-600);
}

.faq-list p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
}

.final-cta {
  background: var(--yellow-500);
  color: var(--navy-950);
  padding: 2.15rem 0;
}

.final-cta__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.final-cta .section-kicker,
.final-cta h2,
.final-cta p {
  color: var(--navy-950);
}

.site-footer {
  padding: 3rem 0 6rem;
  background: #020b15;
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

.footer__brand img {
  width: 190px;
  margin-bottom: 1rem;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 0.45rem;
  font-style: normal;
}

.site-footer a:hover {
  color: var(--yellow-500);
}

.footer-map {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--yellow-500);
  font-weight: 900;
}

.footer-social {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.mobile-action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.65rem;
  background: rgba(3, 16, 31, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -16px 30px rgba(0, 0, 0, 0.22);
}

.mobile-action-bar a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.mobile-action-bar__whatsapp {
  background: var(--green-500);
}

.mobile-action-bar__call {
  background: var(--yellow-500);
  color: var(--navy-950) !important;
}

.local-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(3, 16, 31, 0.97), rgba(3, 16, 31, 0.78) 52%, rgba(3, 16, 31, 0.36)),
    url("../../imagens/otimizadas/socorro-bateria-cascavel-hero-desktop.webp");
  background-position: center right;
  background-size: cover;
}

.local-hero__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.local-hero h1 {
  max-width: 820px;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 2.7rem;
  font-style: italic;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.local-hero h1 span {
  color: var(--yellow-500);
}

.local-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 650;
}

.local-hero__actions,
.local-cta__actions {
  display: grid;
  gap: 0.75rem;
  max-width: 560px;
  margin-top: 1.2rem;
}

.local-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 800;
}

.local-breadcrumb a {
  color: var(--yellow-500);
}

.local-proof {
  align-self: end;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(3, 16, 31, 0.78);
  box-shadow: var(--shadow);
}

.local-proof strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--yellow-500);
  font-size: 1.65rem;
  line-height: 1;
}

.local-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.local-section {
  padding: 3.5rem 0;
}

.local-grid,
.local-card-grid,
.local-faq-grid {
  display: grid;
  gap: 1rem;
}

.local-card {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(3, 16, 31, 0.07);
}

.local-card h2,
.local-card h3 {
  margin-bottom: 0.55rem;
  color: var(--navy-950);
  font-weight: 950;
  line-height: 1.15;
}

.local-card p,
.local-card li {
  color: var(--muted);
}

.local-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.1rem;
}

.local-wide {
  background: var(--navy-850);
  color: var(--white);
}

.local-wide .section-heading h2,
.local-wide .section-heading p {
  color: var(--white);
}

.local-wide .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.75);
}

.local-wide .local-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.local-wide .local-card h3,
.local-wide .local-card p,
.local-wide .local-card li {
  color: var(--white);
}

.local-cta {
  background: var(--yellow-500);
  color: var(--navy-950);
}

.local-cta__inner {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 2.4rem 0;
}

.local-cta h2 {
  margin-bottom: 0.45rem;
  color: var(--navy-950);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.08;
}

.local-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.local-neighborhoods a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 900;
}

.local-neighborhoods a:hover {
  border-color: var(--yellow-600);
  background: #fff1e8;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 78px;
  }

  .top-bar {
    font-size: 0.68rem;
  }

  .top-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    min-height: 0;
    padding: 0.35rem 0;
    row-gap: 0.18rem;
  }

  .top-bar span {
    padding-left: 0.8rem;
  }

  .top-bar span::before {
    width: 0.34rem;
    height: 0.34rem;
  }

  .hero {
    min-height: 760px;
  }

  .local-hero {
    background-image:
      linear-gradient(90deg, rgba(3, 16, 31, 0.96), rgba(3, 16, 31, 0.72)),
      url("../../imagens/otimizadas/socorro-bateria-cascavel-hero-mobile.webp");
    background-position: center top;
  }

  .header-actions .btn {
    min-height: 42px;
    padding: 0.65rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header__inner {
    grid-template-columns: minmax(116px, 150px) 1fr auto auto;
    gap: 0.45rem;
  }

  .brand,
  .brand img {
    width: 148px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .local-hero h1 {
    font-size: 2.15rem;
  }

  .top-bar {
    font-size: 0.6rem;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .seal-grid,
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 560px) {
  .hero-actions,
  .trust__actions,
  .clients__actions,
  .final-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .neighborhood-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .local-hero__actions,
  .local-cta__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 768px) {
  .btn--call {
    display: inline-flex;
  }

  .hero {
    min-height: min(670px, calc(100svh - 86px));
    background-image:
      linear-gradient(90deg, rgba(3, 16, 31, 0.96) 0%, rgba(3, 16, 31, 0.84) 35%, rgba(3, 16, 31, 0.36) 70%, rgba(3, 16, 31, 0.16) 100%),
      url("../../imagens/otimizadas/socorro-bateria-cascavel-hero-desktop.webp");
    background-position: center right;
  }

  .hero h1 {
    font-size: 4.55rem;
  }

  .hero__lead {
    font-size: 1.22rem;
  }

  .section {
    padding: 4.25rem 0;
  }

  .section-heading h2,
  .about__content h2,
  .clients h2,
  .trust h2,
  .final-cta h2 {
    font-size: 2.5rem;
  }

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

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .product-highlight {
    grid-template-columns: 310px 1fr;
  }

  .trust__grid,
  .final-cta__inner {
    grid-template-columns: 1fr auto;
  }

  .trust__actions,
  .clients__actions,
  .final-cta__actions {
    min-width: 420px;
  }

  .footer__grid {
    grid-template-columns: 1.3fr 0.75fr 1fr 1.05fr;
  }

  .local-hero__inner {
    grid-template-columns: 1fr 300px;
  }

  .local-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

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

  .local-cta__inner {
    grid-template-columns: 1fr auto;
  }

  .site-footer {
    padding-bottom: 3rem;
  }

  .mobile-action-bar {
    display: none;
  }
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .hero-panel {
    display: block;
  }

  .about__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .battery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .neighborhood-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  html {
    scroll-padding-top: 92px;
  }

  .header__inner {
    grid-template-areas: "brand nav actions";
    grid-template-columns: 178px 1fr auto;
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 178px;
    max-width: 178px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    max-height: none;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .main-nav a {
    position: relative;
    padding: 1.55rem 0.55rem;
    border-top: 0;
    font-size: 0.73rem;
  }

  .main-nav a::after {
    content: "";
    position: absolute;
    right: 0.55rem;
    bottom: 1rem;
    left: 0.55rem;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--yellow-500);
    transition: transform 160ms ease;
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after {
    transform: scaleX(1);
  }

  .hero h1 {
    font-size: 5.15rem;
  }

  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

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


/* #NAV-DROPDOWN-LINKFIX# */
.main-nav.is-open {
  max-height: 880px;
}

.main-nav .nav-group {
  display: grid;
}

.main-nav .nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.main-nav .nav-parent::before {
  content: none;
}

.main-nav .nav-parent::after {
  content: "▾";
  display: inline-block;
  position: static;
  width: auto;
  height: auto;
  margin-left: 0.25rem;
  background: transparent;
  color: currentColor;
  font-size: 0.68rem;
  transform: none;
  opacity: 0.9;
}

.main-nav .nav-submenu {
  display: grid;
  background: rgba(255, 255, 255, 0.04);
}

.main-nav .nav-submenu a {
  padding: 0.72rem 1rem 0.72rem 1.75rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.01em;
  text-transform: none;
}

@media (min-width: 1040px) {
  .main-nav .nav-group {
    position: relative;
    display: flex;
    align-items: center;
  }

  .main-nav .nav-submenu {
    position: absolute;
    top: calc(100% - 0.35rem);
    left: 50%;
    z-index: 40;
    min-width: 230px;
    padding: 0.45rem;
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 2px solid var(--yellow-500);
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .main-nav .nav-group:hover .nav-submenu,
  .main-nav .nav-group:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .main-nav .nav-submenu a {
    padding: 0.68rem 0.75rem;
    border-top: 0;
    border-radius: 6px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .main-nav .nav-submenu a::after {
    display: none;
  }
}
/* /#NAV-DROPDOWN-LINKFIX# */

/* #NAV-DROPDOWN-LINKFIX-HOVER# */
.main-nav .nav-parent:hover::after,
.main-nav .nav-parent:focus-visible::after {
  transform: none;
}
/* /#NAV-DROPDOWN-LINKFIX-HOVER# */
