:root {
  --dark: #080b12;
  --dark-soft: #101621;
  --surface: #151c29;
  --blue: #1e52be;
  --blue-bright: #316cff;
  --red: #ee2d2d;
  --yellow: #ffd21a;
  --yellow-hover: #ffe25f;
  --green: #1fc56d;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --ink: #121722;
  --muted: #697283;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 65px rgba(2, 5, 12, 0.2);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  overflow-x: hidden;
  background: var(--dark);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.section {
  padding: 88px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--blue);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 38px;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.menu-toggle:focus-visible,
.floating-whatsapp:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 10px;
}

.button-yellow {
  background: var(--yellow);
  box-shadow: 0 12px 25px rgba(255, 210, 26, 0.16);
  color: var(--dark);
}

.button-yellow:hover {
  background: var(--yellow-hover);
  box-shadow: 0 15px 30px rgba(255, 210, 26, 0.24);
}

.button-whatsapp {
  background: var(--green);
  color: var(--dark);
}

.button-whatsapp:hover {
  background: #32d57e;
}

.button-whatsapp svg {
  width: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-white {
  background: var(--white);
  color: var(--red);
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--dark);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(8, 11, 18, 0.8);
  backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(8, 11, 18, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-battery {
  position: relative;
  display: flex;
  width: 52px;
  height: 34px;
  align-items: center;
  justify-content: space-around;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 7px;
  background: linear-gradient(90deg, var(--red) 0 50%, var(--blue) 50%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
}

.brand-battery::before,
.brand-battery::after {
  position: absolute;
  top: -6px;
  width: 13px;
  height: 5px;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}

.brand-battery::before {
  left: 7px;
}

.brand-battery::after {
  right: 7px;
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: #cdd4df;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #ced4df;
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Direcionamentos */
.quick-access {
  position: relative;
  overflow: hidden;
  padding: 125px 0 62px;
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 82, 190, 0.18), transparent 29%),
    radial-gradient(circle at 82% 0%, rgba(238, 45, 45, 0.13), transparent 28%),
    var(--dark);
}

.quick-access::after {
  position: absolute;
  right: 6%;
  bottom: -80px;
  width: 340px;
  height: 170px;
  border: 1px solid rgba(255, 210, 26, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

.quick-heading {
  margin-bottom: 28px;
}

.availability-label {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 210, 26, 0.24);
  border-radius: 999px;
  background: rgba(255, 210, 26, 0.08);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-label > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 210, 26, 0.1);
}

.quick-heading h1 {
  max-width: 650px;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
}

.quick-heading p {
  margin-top: 12px;
  color: #aeb8c8;
  font-size: 0.96rem;
}

.quick-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.16);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--card-accent);
  content: "";
}

.quick-card::after {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--card-glow);
  content: "";
  filter: blur(18px);
}

.quick-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.quick-card-lem {
  --card-accent: var(--red);
  --card-glow: rgba(238, 45, 45, 0.18);
}

.quick-card-barreiras {
  --card-accent: var(--blue-bright);
  --card-glow: rgba(49, 108, 255, 0.2);
}

.quick-card-shop {
  --card-accent: var(--yellow);
  --card-glow: rgba(255, 210, 26, 0.12);
}

.quick-card .card-tag {
  display: block;
  margin-bottom: 15px;
  color: #abb5c5;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.13;
  letter-spacing: -0.045em;
}

.quick-card p {
  color: #abb5c5;
  font-size: 0.87rem;
}

.quick-card .button {
  width: 100%;
  margin-top: 26px;
}

.marketup-logo {
  display: inline-flex;
  width: fit-content;
  align-items: baseline;
  margin-top: 12px;
  color: #d5dce8;
  font-size: 1.25rem;
  letter-spacing: -0.07em;
}

.marketup-logo strong {
  margin-left: 2px;
  color: var(--yellow);
  font-size: 1.4em;
  font-style: italic;
  letter-spacing: -0.1em;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 80px;
  border-top: 1px solid var(--border);
  background: #0b1019;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
}

.hero-glow-red {
  top: 20%;
  left: -190px;
  background: var(--red);
}

.hero-glow-blue {
  right: -170px;
  bottom: -80px;
  background: var(--blue-bright);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 515px;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
}

.hero-content h2 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5.6vw, 4.8rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero-content h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-content > p {
  max-width: 590px;
  color: #b5bfce;
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  margin-top: 37px;
  list-style: none;
}

.hero-trust li {
  display: grid;
  min-width: 112px;
  padding-right: 25px;
  border-right: 1px solid var(--border);
}

.hero-trust li + li {
  padding-left: 25px;
}

.hero-trust li:last-child {
  border: 0;
}

.hero-trust strong {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
}

.hero-trust span {
  margin-top: 5px;
  color: #7f8a9b;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 510px;
}

.energy-ring {
  position: absolute;
  top: 42px;
  right: 24px;
  width: 415px;
  height: 415px;
  border: 1px solid rgba(255, 210, 26, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(255, 210, 26, 0.1), inset 0 0 80px rgba(49, 108, 255, 0.08);
}

.energy-ring::before,
.energy-ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.energy-ring::before {
  inset: 34px;
  border: 1px dashed rgba(255, 255, 255, 0.17);
}

.energy-ring::after {
  inset: 80px;
  background: radial-gradient(circle, rgba(49, 108, 255, 0.2), transparent 70%);
}

.hero-products {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -2.5%;
  width: 105%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.46));
  transform: translateY(-50%);
}

.hero-badge {
  position: absolute;
  z-index: 4;
  bottom: 55px;
  left: 28px;
  display: grid;
  padding: 15px 18px 15px 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(9, 14, 24, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-badge > span {
  position: absolute;
  top: 50%;
  left: 15px;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-50%);
}

.hero-badge strong {
  font-size: 0.8rem;
}

.hero-badge small {
  color: #9faaba;
  font-size: 0.67rem;
}

/* Serviços */
.services {
  position: relative;
  background: var(--off-white);
}

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

.service-card {
  padding: 27px 24px;
  border: 1px solid #e3e7ed;
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(30, 82, 190, 0.25);
  box-shadow: 0 18px 40px rgba(17, 28, 48, 0.09);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 21px;
  place-items: center;
  border-radius: 12px;
  background: #edf2ff;
  color: var(--blue);
}

.service-icon svg {
  width: 22px;
  fill: currentColor;
}

.service-card h3 {
  margin-bottom: 7px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Marcas */
.brands {
  padding: 40px 0;
  border-top: 1px solid #e5e8ee;
  background: var(--white);
  color: var(--ink);
}

.brands-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.brands h2 {
  flex: 0 0 220px;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.brand-list {
  display: grid;
  flex: 1;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
}

.brand-list span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-left: 1px solid #e4e7eb;
  font-size: 1.12rem;
  font-weight: 800;
}

.brand-moura {
  color: #1d4ba5;
  font-style: italic;
}

.brand-heliar {
  color: #16733d;
}

.brand-cral {
  color: #f28718;
  font-style: italic;
}

.brand-erbs {
  color: #282f3c;
  letter-spacing: 0.1em;
}

.brand-extranger {
  color: #c4232d;
  font-style: italic;
}

/* Loja e localização */
.info-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(30, 82, 190, 0.16), transparent 28%),
    var(--dark-soft);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.info-card {
  display: flex;
  min-height: 385px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.info-card h2 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.8vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.info-card p,
.info-card address {
  max-width: 560px;
  color: #b7c0cd;
  font-size: 0.93rem;
  font-style: normal;
}

.info-card .button {
  margin-top: 26px;
}

.shop-card {
  position: relative;
  overflow: hidden;
}

.shop-card::after {
  position: absolute;
  right: -45px;
  bottom: -75px;
  width: 230px;
  height: 230px;
  border: 35px solid rgba(255, 210, 26, 0.08);
  border-radius: 50%;
  content: "";
}

.marketup-logo-large {
  margin-top: 23px;
  font-size: 1.8rem;
}

.location-card {
  background:
    linear-gradient(rgba(15, 22, 34, 0.88), rgba(15, 22, 34, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 255, 255, 0.04) 20px 21px);
}

.location-card .muted {
  margin-top: 13px;
  color: #7f8b9d;
  font-size: 0.79rem;
}

/* Chamada final */
.final-cta {
  padding: 55px 0;
  background: linear-gradient(110deg, #d9202b, var(--red) 55%, #fb4434);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta .eyebrow {
  color: var(--white);
  opacity: 0.8;
}

.final-cta h2 {
  margin-bottom: 5px;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

/* Rodapé */
.site-footer {
  padding: 45px 0 20px;
  background: #05070c;
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 35px;
}

.footer-grid p {
  color: #8f99a8;
  font-size: 0.78rem;
}

.footer-grid p a {
  transition: color 0.2s ease;
}

.footer-grid p a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #626c7b;
  font-size: 0.68rem;
}

/* WhatsApp flutuante */
.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  color: var(--dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: gentle-pulse 2.8s infinite;
}

.floating-whatsapp:hover {
  box-shadow: 0 15px 38px rgba(31, 197, 109, 0.28);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 30px;
  fill: currentColor;
}

/* Animações */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gentle-pulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(31, 197, 109, 0.32);
  }
  50% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), 0 0 0 11px rgba(31, 197, 109, 0);
  }
}

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

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

/* Responsividade */
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    padding: 20px;
    border-top: 1px solid var(--border);
    background: rgba(8, 11, 18, 0.98);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 14px 5px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .button {
    margin-top: 15px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

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

  .quick-card-shop {
    grid-column: span 2;
    min-height: 250px;
  }

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

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .brands-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brands h2 {
    flex: auto;
  }

  .brand-list {
    width: 100%;
  }

  .brand-list span:first-child {
    border-left: 0;
  }

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

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-battery {
    width: 47px;
    height: 31px;
  }

  .main-nav {
    top: 70px;
  }

  .quick-access {
    padding: 108px 0 50px;
  }

  .quick-heading {
    text-align: left;
  }

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

  .quick-card,
  .quick-card-shop {
    min-height: 265px;
    grid-column: auto;
  }

  .hero {
    padding: 68px 0 42px;
  }

  .hero-grid {
    min-height: 0;
    gap: 30px;
  }

  .hero-content h2 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-trust {
    justify-content: space-between;
  }

  .hero-trust li {
    min-width: 0;
    flex: 1;
    padding-right: 12px;
  }

  .hero-trust li + li {
    padding-left: 12px;
  }

  .hero-visual {
    width: calc(100% + 28px);
    min-height: 360px;
    margin-right: -14px;
    margin-left: -14px;
  }

  .energy-ring {
    top: 26px;
    right: 50%;
    width: 310px;
    height: 310px;
    transform: translateX(50%);
  }

  .hero-products {
    top: 47%;
    right: 0;
    width: 100%;
  }

  .hero-badge {
    bottom: 28px;
    left: 0;
  }

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

  .service-card {
    display: grid;
    align-items: center;
    padding: 21px;
    grid-template-columns: auto 1fr;
    column-gap: 17px;
  }

  .service-icon {
    margin: 0;
    grid-row: span 2;
  }

  .service-card h3 {
    margin: 0;
  }

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

  .brand-list span {
    border-bottom: 1px solid #e4e7eb;
  }

  .brand-list span:nth-child(odd) {
    border-left: 0;
  }

  .brand-list span:last-child {
    grid-column: span 2;
    border-bottom: 0;
  }

  .info-card {
    min-height: 370px;
    padding: 31px 25px;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}
