:root {
  --black: #050606;
  --black-2: #08090a;
  --panel: #111315;
  --panel-light: #17191b;
  --line: #292c2e;
  --yellow: #f7c600;
  --yellow-light: #ffda18;
  --white: #fff;
  --muted: #aaa;
  --green: #27c75a;
  --shell-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #111417;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 10%, #262a2d 0, #141719 38%, #0c0e10 80%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-shell {
  width: min(calc(100% - 36px), var(--shell-width));
  margin: 4px auto 12px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid #25282a;
  border-radius: 12px;
  box-shadow: 0 0 35px rgba(0, 0, 0, .75);
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 64px;
  padding: 10px 38px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 26px;
  background: rgba(5, 6, 6, .97);
  border-bottom: 1px solid #242628;
}

.brand {
  width: 178px;
}

.brand img,
.footer-brand img {
  width: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #e3e3e3;
  font-size: 12px;
  white-space: nowrap;
  transition: color .2s ease;
}

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

.header-contact {
  min-height: 40px;
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--yellow);
  border-radius: 5px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.header-contact svg {
  width: 19px;
  height: 19px;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: #050606;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(247, 198, 0, .25);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 337px;
  padding: 36px 64px 30px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 4, 4, .2), rgba(3, 4, 4, .03)),
    url("assets/hero-circuit-desktop.webp") center/cover no-repeat;
  border-bottom: 1px solid rgba(247, 198, 0, .55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 570px;
}

.hero h1 {
  max-width: 590px;
  margin: 0 0 13px;
  font-size: clamp(31px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -.5px;
}

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

.hero-content > p {
  max-width: 510px;
  margin: 0 0 18px;
  color: #f0f0f0;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 44px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

.button-primary {
  color: #090a0a;
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(247, 198, 0, .16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--yellow-light);
  box-shadow: 0 0 18px rgba(247, 198, 0, .35);
  transform: translateY(-1px);
}

.button-secondary {
  color: #fff;
  background: rgba(4, 5, 5, .72);
  border-color: #d5d5d5;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--yellow);
  border-color: var(--yellow);
}

.hero-phone {
  width: fit-content;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  letter-spacing: .3px;
}

.hero-phone svg {
  width: 25px;
  height: 25px;
  color: var(--green);
}

.hero-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem img {
  width: min(100%, 500px);
  max-height: 276px;
  object-fit: contain;
}

.benefits {
  padding: 19px 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #090a0b;
  border-bottom: 1px solid #242628;
}

.benefit {
  min-width: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid #202224;
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit > svg {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  color: var(--yellow);
}

.benefit h2 {
  margin: 0 0 2px;
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}

.benefit p {
  margin: 0;
  color: #d0d0d0;
  font-size: 11px;
  line-height: 1.35;
}

.section-block {
  background: #070809;
}

.services {
  padding: 14px 62px 17px;
}

.section-heading {
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
  align-items: center;
  gap: 15px;
}

.section-heading span {
  height: 1px;
  position: relative;
  background: linear-gradient(90deg, transparent, var(--yellow));
}

.section-heading span:last-child {
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.section-heading span:first-child::after,
.section-heading span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--yellow);
  transform: translateY(-50%) rotate(45deg);
  background: #08090a;
}

.section-heading span:first-child::after {
  right: -8px;
}

.section-heading span:last-child::before {
  left: -8px;
}

.section-heading h2 {
  margin: 0;
  color: #f3f3f3;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 2.6px;
  text-align: center;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-card {
  min-height: 102px;
  padding: 12px 13px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: linear-gradient(145deg, #111315, #0b0d0e);
  border: 1px solid #343638;
  border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02);
}

.service-card > svg {
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  color: var(--yellow);
}

.service-card h3 {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #c4c4c4;
  font-size: 10.5px;
  line-height: 1.35;
}

.coverage {
  min-height: 157px;
  display: grid;
  grid-template-columns: 37% 31% 32%;
  align-items: stretch;
  overflow: hidden;
  background: #090a0b;
  border-top: 1px solid rgba(247, 198, 0, .48);
  border-bottom: 1px solid rgba(247, 198, 0, .4);
}

.coverage-map,
.coverage-photo {
  position: relative;
  overflow: hidden;
}

.coverage-map > img,
.coverage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 52%, #090a0b 99%);
  pointer-events: none;
}

.coverage-map ul {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-map li {
  min-width: 155px;
  padding: 5px 0 5px 28px;
  position: relative;
  font-size: 12px;
}

.coverage-map li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 52px;
  height: 1px;
  background: var(--yellow);
}

.coverage-copy {
  padding: 29px 15px 22px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 24px;
  height: 24px;
  fill: var(--yellow);
  color: var(--yellow);
  stroke: #080909;
}

.coverage-copy h2 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.23;
}

.coverage-copy > p:last-child {
  margin: 0;
  color: #c9c9c9;
  font-size: 11px;
}

.coverage-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #090a0b 0, transparent 26%, rgba(0, 0, 0, .08));
}

.mobile-coverage-map {
  display: none;
}

.testimonials {
  padding: 13px 27px 16px;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}

.review-card {
  min-width: 0;
  min-height: 130px;
  padding: 10px;
  background: #151719;
  border: 1px solid #303335;
  border-radius: 5px;
}

.review-card header {
  min-width: 0;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-card header > div {
  min-width: 0;
}

.review-card h3 {
  margin: 0;
  overflow: hidden;
  font-size: 9.5px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card small {
  color: #909090;
  font-size: 8px;
}

.avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
}

.avatar-blue { background: #4c6573; }
.avatar-purple { background: #6b3f9a; }
.avatar-cyan { background: #31879a; }
.avatar-green { background: #579e32; }
.avatar-red { background: #bb3b25; }
.avatar-brown { background: #725b4e; }

.stars {
  margin-bottom: 5px;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 1px;
}

.review-card > p {
  margin: 0;
  color: #dedede;
  font-size: 9px;
  line-height: 1.45;
}

.carousel-controls {
  display: none;
}

.final-cta {
  margin: 0 120px 15px;
  min-height: 88px;
  padding: 13px 26px;
  display: grid;
  grid-template-columns: auto 1fr 290px;
  align-items: center;
  gap: 23px;
  overflow: hidden;
  background:
    linear-gradient(rgba(3, 4, 4, .28), rgba(3, 4, 4, .28)),
    url("assets/final-cta-lightning.webp") center/cover no-repeat;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(247, 198, 0, .32), inset 0 0 20px rgba(247, 198, 0, .07);
}

.cta-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #8df6a8;
  filter: drop-shadow(0 0 8px rgba(52, 220, 95, .55));
}

.cta-icon svg {
  width: 58px;
  height: 58px;
}

.cta-copy h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.cta-copy p {
  margin: 3px 0 0;
  font-size: 17px;
}

.cta-actions {
  display: grid;
  gap: 5px;
}

.cta-actions .button {
  min-height: 36px;
  padding: 7px 15px;
}

.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 17px;
  letter-spacing: 1px;
}

.cta-phone svg {
  width: 21px;
  height: 21px;
  color: var(--green);
}

.site-footer {
  padding: 21px 34px 0;
  background: #08090a;
  border-top: 1px solid #242628;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.05fr 1fr 1fr 1fr;
  gap: 35px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 14px;
}

.footer-brand p,
.footer-column p,
.footer-column li,
.footer-column a {
  color: #c8c8c8;
  font-size: 10px;
  line-height: 1.55;
}

.footer-brand p {
  max-width: 230px;
  margin: 0;
}

.footer-column h2 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  position: relative;
  padding: 2px 0 2px 13px;
}

.footer-column li::before {
  content: "ϟ";
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.footer-contact a,
.footer-contact > p {
  margin: 0 0 7px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--yellow);
}

.social-column a {
  color: #f2f2f2;
}

.social-column a::before {
  content: "◎";
  margin-right: 7px;
  color: #e94379;
  font-size: 17px;
  vertical-align: -2px;
}

.footer-bottom {
  margin-top: 18px;
  min-height: 34px;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #2a2c2e;
}

.footer-bottom p {
  margin: 0;
  color: #8c8c8c;
  font-size: 9px;
}

.footer-bottom span {
  color: var(--yellow);
  font-size: 15px;
}

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

@media (max-width: 1020px) and (min-width: 769px) {
  .site-header {
    padding-inline: 20px;
    grid-template-columns: 160px 1fr auto;
    gap: 14px;
  }

  .desktop-nav {
    gap: 12px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .brand {
    width: 155px;
  }

  .hero {
    padding-inline: 40px;
  }

  .benefits {
    padding-inline: 28px;
  }

  .benefit {
    padding-inline: 12px;
  }

  .services {
    padding-inline: 28px;
  }

  .service-card {
    padding: 10px;
    gap: 8px;
  }

  .service-card > svg {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .final-cta {
    margin-inline: 60px;
  }
}

@media (max-width: 768px) {
  body {
    background: #0d1012;
  }

  body.menu-open {
    overflow: auto;
  }

  .site-shell {
    width: min(calc(100% - 20px), 420px);
    margin: 9px auto;
    border-radius: 10px;
  }

  .site-header {
    min-height: 56px;
    padding: 10px 14px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    width: 139px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 0;
    color: #fff;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    justify-self: center;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    grid-column: 1 / -1;
    margin: 0 -14px -10px;
    padding: 6px 14px 12px;
    display: grid;
    background: #090a0b;
    border-top: 1px solid #27292b;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    min-height: 42px;
    padding: 10px 4px;
    border-bottom: 1px solid #202224;
    font-size: 13px;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    padding: 18px 18px 17px;
    display: block;
    background:
      linear-gradient(rgba(2, 3, 3, .2), rgba(2, 3, 3, .18)),
      url("assets/hero-circuit-mobile.webp") center bottom/cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(25px, 7.3vw, 30px);
    line-height: 1.12;
    letter-spacing: -.2px;
  }

  .hero-content > p {
    max-width: 330px;
    margin: 0 auto 15px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-actions {
    max-width: 290px;
    margin-inline: auto;
    display: grid;
    gap: 7px;
  }

  .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero-phone {
    margin: 10px auto 0;
    font-size: 13px;
  }

  .hero-phone svg {
    width: 20px;
    height: 20px;
  }

  .hero-emblem {
    display: none;
  }

  .benefits {
    padding: 10px 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .benefit,
  .benefit:first-child,
  .benefit:last-child {
    min-height: 77px;
    padding: 7px 3px;
    display: block;
    text-align: center;
    border: 1px solid #232628;
    border-radius: 4px;
  }

  .benefit > svg {
    width: 31px;
    height: 31px;
    margin: 0 auto 4px;
  }

  .benefit h2 {
    font-size: 8px;
    line-height: 1.25;
  }

  .benefit p {
    margin-top: 2px;
    font-size: 7px;
    line-height: 1.2;
  }

  .services {
    padding: 10px 12px;
  }

  .section-heading {
    margin-bottom: 10px;
    gap: 10px;
  }

  .section-heading h2 {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .service-card {
    min-height: 72px;
    padding: 8px 7px;
    align-items: center;
    gap: 7px;
  }

  .service-card > svg {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .service-card h3 {
    margin: 0;
    font-size: 9px;
    line-height: 1.28;
  }

  .service-card p {
    display: none;
  }

  .coverage {
    margin: 0 11px 6px;
    min-height: 0;
    padding: 12px 8px 12px 10px;
    grid-template-columns: 62% 38%;
    align-items: center;
    border: 1px solid #3d4042;
    border-radius: 6px;
  }

  .desktop-coverage-map,
  .coverage-photo {
    display: none;
  }

  .coverage-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .eyebrow svg {
    display: none;
  }

  .coverage-copy h2 {
    margin-bottom: 7px;
    font-size: 13px;
    line-height: 1.28;
  }

  .coverage-copy > p:last-child {
    font-size: 8px;
    line-height: 1.4;
  }

  .mobile-coverage-map {
    display: block;
  }

  .mobile-coverage-map img {
    width: 100%;
    object-fit: contain;
  }

  .testimonials {
    padding: 7px 12px 12px;
  }

  .testimonials .section-heading h2 {
    font-size: 11px;
    white-space: nowrap;
  }

  .reviews-viewport {
    overflow: hidden;
  }

  .reviews-track {
    display: flex;
    gap: 0;
    transition: transform .38s ease;
    will-change: transform;
  }

  .review-card {
    min-width: 100%;
    min-height: 0;
    padding: 13px;
  }

  .review-card h3 {
    font-size: 11px;
  }

  .review-card small {
    font-size: 9px;
  }

  .review-card > p {
    font-size: 11px;
    line-height: 1.45;
  }

  .carousel-controls {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    border: 0;
    color: #bbb;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #4c4f51;
    cursor: pointer;
  }

  .carousel-dot.active {
    background: var(--yellow);
    box-shadow: 0 0 6px rgba(247, 198, 0, .6);
  }

  .final-cta {
    margin: 0 11px 12px;
    min-height: 0;
    padding: 11px 16px 13px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
    background:
      linear-gradient(rgba(2, 3, 3, .32), rgba(2, 3, 3, .32)),
      url("assets/final-cta-lightning.webp") center/cover no-repeat;
  }

  .cta-icon {
    width: 45px;
    height: 45px;
    margin-bottom: -3px;
  }

  .cta-icon svg {
    width: 43px;
    height: 43px;
  }

  .cta-copy h2 {
    font-size: 16px;
  }

  .cta-copy p {
    margin-top: 2px;
    font-size: 12px;
  }

  .cta-actions {
    width: 100%;
    margin-top: 6px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .cta-phone {
    min-height: 31px;
    font-size: 13px;
  }

  .site-footer {
    padding: 14px 18px 12px;
  }

  .footer-grid {
    display: block;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand img {
    width: 183px;
    margin: 0 auto 12px;
  }

  .footer-brand p {
    display: none;
  }

  .footer-column h2,
  .desktop-footer-column,
  .social-column {
    display: none;
  }

  .footer-contact {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-contact a,
  .footer-contact > p {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .footer-contact svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  .footer-contact::after {
    content: "Atendimento 24h todos os dias";
    display: block;
    margin-top: 9px;
    color: #fff;
    font-size: 11px;
    text-align: center;
  }

  .footer-bottom {
    margin-top: 13px;
    display: block;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 8px;
  }

  .footer-bottom p:last-child {
    display: none;
  }
}

@media (max-width: 350px) {
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit h2 {
    font-size: 9px;
  }

  .benefit p {
    font-size: 8px;
  }

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

  .service-card h3 {
    font-size: 10px;
  }

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

  .mobile-coverage-map {
    max-width: 145px;
    margin: 6px auto 0;
  }

  .testimonials .section-heading h2 {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!important}
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}


/* === GIGA OHMS Premium Electric Experience === */
:root{
  --electric:#ffd500;
  --electric-hot:#fff06a;
  --electric-soft:rgba(255,213,0,.18);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9999;
  opacity:.07;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
}

.site-shell{position:relative}
.site-shell::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:20;
  box-shadow:inset 0 0 0 1px rgba(255,213,0,.03),inset 0 0 70px rgba(255,213,0,.02);
}

.site-header{
  position:sticky;
  top:0;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(0,0,0,.24);
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  left:50%;right:50%;bottom:2px;height:2px;
  background:var(--electric);
  box-shadow:0 0 8px var(--electric);
  transition:left .25s ease,right .25s ease;
}
.desktop-nav a:hover::after,.desktop-nav a.active::after{left:0;right:0}

.electric-zone{overflow:hidden}
.electric-zone::after{
  content:"";
  position:absolute;
  z-index:-1;
  width:42%;height:1px;
  top:18%;left:-45%;
  background:linear-gradient(90deg,transparent,var(--electric-hot),transparent);
  box-shadow:0 0 8px 2px rgba(255,213,0,.45);
  transform:rotate(-11deg);
  animation:electricSweep 7.5s ease-in-out infinite;
  pointer-events:none;
}

.electric-arc{
  position:absolute;
  z-index:0;
  width:180px;height:2px;
  background:linear-gradient(90deg,transparent,#fff7b3,var(--electric),transparent);
  box-shadow:0 0 8px 2px rgba(255,213,0,.8);
  opacity:.25;
  clip-path:polygon(0 45%,12% 20%,20% 70%,31% 35%,43% 65%,55% 25%,67% 75%,79% 30%,100% 50%,100% 100%,0 100%);
  animation:arcFlash 4.6s steps(1,end) infinite;
}
.arc-one{right:13%;top:22%;transform:rotate(-12deg)}
.arc-two{right:26%;bottom:20%;transform:rotate(16deg);animation-delay:2.2s}

.experience-pill{
  width:max-content;max-width:100%;
  margin:0 0 12px;
  padding:7px 12px;
  display:flex;align-items:center;gap:7px;
  color:#f6f6f6;
  background:linear-gradient(90deg,rgba(255,213,0,.12),rgba(255,213,0,.035));
  border:1px solid rgba(255,213,0,.5);
  border-radius:999px;
  box-shadow:0 0 18px rgba(255,213,0,.09);
  font-size:12px;letter-spacing:.2px;
}
.experience-pill svg{width:17px;height:17px;color:var(--electric);fill:rgba(255,213,0,.12)}
.experience-pill strong{color:var(--electric-hot);font-size:14px}

.hero-emblem{position:relative;isolation:isolate}
.hero-emblem::before{
  content:"";position:absolute;inset:12% 15%;z-index:-1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,213,0,.22),transparent 63%);
  filter:blur(14px);
  animation:energyPulse 3.2s ease-in-out infinite;
}
.hero-emblem img{
  filter:drop-shadow(0 0 15px rgba(255,213,0,.2));
  animation:emblemFloat 5.2s ease-in-out infinite;
}

.electric-button{position:relative;overflow:hidden}
.electric-button::after{
  content:"";position:absolute;inset:-50% auto -50% -35%;width:22%;
  transform:skewX(-18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);
  animation:buttonSpark 3.6s ease-in-out infinite;
}

.service-card,.benefit,.review-card{
  position:relative;overflow:hidden;
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease,background .28s ease;
}
.service-card::after,.benefit::after,.review-card::after{
  content:"";position:absolute;left:-120%;top:0;width:60%;height:1px;
  background:linear-gradient(90deg,transparent,var(--electric),transparent);
  box-shadow:0 0 10px var(--electric);
  transition:left .55s ease;
}
.service-card:hover,.benefit:hover,.review-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,213,0,.65);
  box-shadow:0 12px 28px rgba(0,0,0,.35),0 0 16px rgba(255,213,0,.08);
}
.service-card:hover::after,.benefit:hover::after,.review-card:hover::after{left:150%}
.service-card>svg,.benefit>svg{filter:drop-shadow(0 0 5px rgba(255,213,0,.18))}

.section-intro{
  max-width:760px;margin:-3px auto 14px;color:#aeb1b3;text-align:center;font-size:12px;
}

.experience{
  min-height:240px;
  padding:36px 62px;
  display:grid;
  grid-template-columns:250px 1fr;
  gap:44px;
  align-items:center;
  background:
    radial-gradient(circle at 14% 50%,rgba(255,213,0,.12),transparent 25%),
    linear-gradient(135deg,#0c0e0f,#050606 66%);
  border-top:1px solid rgba(255,213,0,.28);
  border-bottom:1px solid rgba(255,213,0,.28);
}
.experience-number{
  min-height:172px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  border:1px solid rgba(255,213,0,.45);
  border-radius:14px;
  background:linear-gradient(145deg,rgba(255,213,0,.07),rgba(0,0,0,.25));
  box-shadow:inset 0 0 28px rgba(255,213,0,.035),0 18px 44px rgba(0,0,0,.28);
  position:relative;
}
.experience-number::before{
  content:"";position:absolute;inset:8px;border:1px solid rgba(255,213,0,.12);border-radius:10px;
}
.experience-number span{
  color:var(--electric);font-size:70px;font-weight:900;line-height:.92;letter-spacing:-4px;
  text-shadow:0 0 24px rgba(255,213,0,.18);
}
.experience-number strong{margin-top:7px;font-size:20px;letter-spacing:5px}
.experience-number small{margin-top:3px;color:#9ea1a3;font-size:11px;letter-spacing:1.4px;text-transform:uppercase}
.experience-copy h2{max-width:760px;margin:0 0 12px;font-size:clamp(23px,2.7vw,34px);line-height:1.16}
.experience-copy>p:not(.eyebrow){max-width:800px;margin:0;color:#c9cbcc;font-size:14px;line-height:1.65}
.experience-copy strong{color:#fff}
.experience-points{margin-top:18px;display:flex;flex-wrap:wrap;gap:10px}
.experience-points span{padding:9px 12px;display:inline-flex;align-items:center;gap:7px;border:1px solid #2e3133;border-radius:7px;background:#101214;color:#e2e2e2;font-size:11px}
.experience-points svg{width:19px;height:19px;color:var(--electric)}

.coverage-copy h2 strong{color:var(--electric)}

.reveal{opacity:1;transform:none;transition:opacity .7s ease,transform .7s cubic-bezier(.2,.75,.2,1)}
.js-enabled .reveal{opacity:0;transform:translateY(22px)}
.js-enabled .reveal-left{transform:translateX(-28px)}
.js-enabled .reveal-right{transform:translateX(28px)}
.js-enabled .reveal.is-visible{opacity:1;transform:none}

.stars{filter:drop-shadow(0 0 3px rgba(255,213,0,.25))}
.final-cta{animation:ctaGlow 4s ease-in-out infinite}
.sf-social-whatsapp{animation:whatsappPulse 2.6s ease-in-out infinite}

@keyframes electricSweep{
  0%,48%{left:-45%;opacity:0}
  52%{opacity:.9}
  70%{left:105%;opacity:.15}
  100%{left:105%;opacity:0}
}
@keyframes arcFlash{0%,12%,14%,58%,60%,100%{opacity:.06}13%,59%{opacity:.85}}
@keyframes energyPulse{0%,100%{opacity:.5;transform:scale(.93)}50%{opacity:1;transform:scale(1.07)}}
@keyframes emblemFloat{0%,100%{transform:translate(var(--px,0),var(--py,0))}50%{transform:translate(var(--px,0),calc(var(--py,0) - 7px))}}
@keyframes buttonSpark{0%,58%{left:-35%}75%,100%{left:125%}}
@keyframes ctaGlow{0%,100%{box-shadow:0 0 12px rgba(247,198,0,.27),inset 0 0 20px rgba(247,198,0,.06)}50%{box-shadow:0 0 26px rgba(247,198,0,.42),inset 0 0 30px rgba(247,198,0,.1)}}
@keyframes whatsappPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.06)}}

@media(max-width:768px){
  .experience-pill{margin:0 auto 10px;font-size:10px;padding:6px 10px}
  .experience-pill strong{font-size:12px}
  .experience{padding:20px 14px;grid-template-columns:1fr;gap:16px;text-align:center}
  .experience-number{min-height:125px;max-width:280px;width:100%;margin:0 auto}
  .experience-number span{font-size:52px}
  .experience-number strong{font-size:16px;letter-spacing:4px}
  .experience-copy .eyebrow{justify-content:center}
  .experience-copy h2{font-size:21px}
  .experience-copy>p:not(.eyebrow){font-size:12px;line-height:1.55}
  .experience-points{justify-content:center;display:grid;grid-template-columns:1fr;width:100%;max-width:320px;margin:15px auto 0}
  .experience-points span{justify-content:center}
  .section-intro{font-size:10px;line-height:1.45;margin:0 10px 11px}
  .electric-arc{display:none}
  .reveal-left,.reveal-right{transform:translateY(18px)}
  .mobile-nav .mobile-wa{margin-top:6px;border:1px solid #25d366;color:#fff;background:#1e9f4b;text-align:center;border-radius:7px}
}

@media(prefers-reduced-motion:reduce){
  .hero-emblem img,.electric-zone::after,.electric-arc,.electric-button::after,.final-cta,.sf-social-whatsapp{animation:none!important}
  .reveal{opacity:1!important;transform:none!important}
}

/* CTA elétrico: mantém a identidade amarela da GIGA OHMS */
.hero .sf-whatsapp-button,.final-cta .sf-whatsapp-button{background:var(--electric)!important;color:#050606!important;border:1px solid var(--electric)!important;box-shadow:0 0 18px rgba(255,213,0,.22)!important}
.hero .sf-whatsapp-button svg,.final-cta .sf-whatsapp-button svg{color:#050606!important;stroke:#050606!important}
.header-contact.sf-whatsapp-button{background:rgba(255,213,0,.06)!important;color:var(--electric)!important;border:1px solid var(--electric)!important;padding:8px 15px!important;min-height:40px!important;border-radius:6px!important}
.header-contact.sf-whatsapp-button svg{color:var(--electric)!important;stroke:var(--electric)!important}
.header-contact.sf-whatsapp-button:hover{background:var(--electric)!important;color:#050606!important}
.header-contact.sf-whatsapp-button:hover svg{color:#050606!important;stroke:#050606!important}

/* SEO/content section — FAQ */
.site-shell{overflow:clip}
.faq{padding:22px 62px 30px;background:linear-gradient(180deg,#070809,#090a0b)}
.faq-grid{max-width:950px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:9px}
.faq-item{border:1px solid #303335;border-radius:7px;background:linear-gradient(145deg,#111315,#0b0d0e);overflow:hidden}
.faq-item[open]{border-color:rgba(255,213,0,.5);box-shadow:0 0 16px rgba(255,213,0,.06)}
.faq-item summary{padding:14px 42px 14px 15px;position:relative;cursor:pointer;list-style:none;font-size:12px;font-weight:700;line-height:1.35}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";position:absolute;right:15px;top:50%;transform:translateY(-50%);color:var(--electric);font-size:20px;font-weight:400;transition:transform .2s ease}
.faq-item[open] summary::after{transform:translateY(-50%) rotate(45deg)}
.faq-item p{margin:0;padding:0 15px 15px;color:#bfc2c3;font-size:11px;line-height:1.55}
@media(max-width:768px){.faq{padding:16px 12px 20px}.faq-grid{grid-template-columns:1fr;gap:7px}.faq-item summary{font-size:11px;padding:12px 38px 12px 12px}.faq-item p{font-size:10px;padding:0 12px 12px}}



/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}