@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --blue-900: #0a1628;
  --blue-800: #0f2240;
  --blue-700: #142e56;
  --blue-600: #1a3d6d;
  --blue-500: #1e4d8a;
  --red-600: #d62828;
  --red-500: #e63946;
  --yellow-400: #facc15;
  --yellow-300: #fde047;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #128c4e;
  --white: #fff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden
}

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

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

ul {
  list-style: none
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease);
  text-align: center;
  justify-content: center;
}

.btn-green {
  background: linear-gradient(135deg, #25d366, #128c4e);
  color: #fff;
  box-shadow: 0 4px 14px rgba(18, 140, 78, .3);
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(18, 140, 78, .4);
  filter: brightness(1.05)
}

.btn-green-lg {
  background: linear-gradient(135deg, #25d366, #128c4e);
  color: #fff;
  font-size: 1.1rem;
  padding: 18px 38px;
  box-shadow: 0 6px 20px rgba(18, 140, 78, .35);
}

.btn-green-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(18, 140, 78, .5);
  filter: brightness(1.05)
}

.btn-blue {
  background: var(--blue-700);
  color: #fff;
  box-shadow: 0 4px 14px rgba(20, 46, 86, .25)
}

.btn-blue:hover {
  background: var(--blue-600);
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700)
}

.btn-outline:hover {
  background: var(--blue-700);
  color: #fff;
  transform: translateY(-2px)
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: box-shadow .3s var(--ease);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .3)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1140px;
  margin: 0 auto
}

.header-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.4px
}

.header-logo span {
  color: var(--red-500)
}

.header-actions {
  display: flex;
  gap: 8px
}

.h-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .85rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .3s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.h-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.h-btn-call {
  background: var(--blue-700);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .1)
}

.h-btn-call:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

.h-btn-wa {
  background: linear-gradient(135deg, #128c4e, #075e54);
  color: #fff
}

.h-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .3)
}

/* ── HERO ── */
.hero {
  padding: 120px 0 70px;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 40, 40, .08) 0%, transparent 70%);
  top: -180px;
  right: -80px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.hero-text {
  position: relative;
  z-index: 2
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--yellow-300);
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.4px
}

.hero-text h1 .hl {
  color: var(--yellow-400)
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .9)
}

.hero-support {
  font-size: .92rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 28px;
  line-height: 1.6
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px
}

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

.mini-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  transition: all .25s var(--ease);
}

.mini-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-2px)
}

.mini-card .ic {
  font-size: 1.2rem;
  margin-bottom: 4px
}

.mini-card p {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8)
}

.hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2
}

.hero-img img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4));
  animation: float 4s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* ── GÁS DO POVO — HERO TRUST BLOCK ── */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  max-width: 340px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .85);
  font-weight: 500;
}

.trust-check {
  color: var(--green-500);
  font-weight: 700;
  font-size: 1rem
}

.trust-item strong {
  color: #fff
}

.trust-logo-povo {
  height: 28px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  padding: 2px 4px;
  flex-shrink: 0;
}

/* ── GÁS DO POVO — INFO STRIP ── */
.povo-strip {
  background: var(--blue-900);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.povo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.povo-strip-left {
  display: flex;
  align-items: center;
  gap: 14px
}

.povo-emblem {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.povo-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.povo-strip-text {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.povo-strip-text strong {
  font-size: .9rem;
  color: #fff;
  font-weight: 700
}

.povo-strip-text span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55)
}

.povo-strip .btn {
  padding: 11px 22px;
  font-size: .82rem
}

/* ── GÁS DO POVO — BENEFIT CARD ── */
.b-card-povo {
  border-color: rgba(22, 163, 74, .15)
}

.b-card-povo:hover {
  border-color: rgba(22, 163, 74, .25)
}

.b-icon-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
}

.b-povo-img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

/* ── SECTION COMMON ── */
.section {
  padding: 72px 0
}

.section-alt {
  background: var(--gray-50)
}

.section-dark {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-800));
  color: #fff
}

.s-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  color: var(--blue-900);
  letter-spacing: -.3px
}

.section-dark .s-title {
  color: #fff
}

.s-sub {
  text-align: center;
  color: var(--gray-500);
  font-size: .95rem;
  margin: 0 auto 40px;
  max-width: 480px
}

.section-dark .s-sub {
  color: rgba(255, 255, 255, .6)
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 20px
}

.p-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
  border-color: transparent
}

.p-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(214, 40, 40, .3);
}

.p-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  padding: 16px;
}

.p-img img {
  max-height: 170px;
  width: auto;
  object-fit: contain;
  transition: transform .35s var(--ease)
}

.p-card:hover .p-img img {
  transform: scale(1.06)
}

.p-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.p-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--blue-900)
}

.p-price-main {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-700);
  margin-bottom: 2px
}

.p-price-label {
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 12px
}

.p-price-alt {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px
}

.p-note {
  font-size: .78rem;
  color: var(--gray-400);
  font-style: italic;
  margin-bottom: 14px
}

.p-card .btn {
  margin-top: auto;
  width: 100%;
  font-size: .88rem;
  padding: 13px 18px
}

/* ── REGIONS ── */
.regions {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #fff;
  text-align: center
}

.regions h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 10px
}

.regions p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto
}

.region-tags {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap
}

.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  transition: all .25s var(--ease);
}

.region-tag:hover {
  background: rgba(255, 255, 255, .15);
  transform: translateY(-2px)
}

/* ── BENEFITS ── */
.b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px
}

.b-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--gray-200);
  transition: all .3s var(--ease);
  text-align: center;
}

.b-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  border-color: transparent
}

.b-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(30, 77, 138, .06), rgba(30, 77, 138, .12));
}

.b-card h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--blue-900)
}

.b-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5
}

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative
}

.steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--yellow-400), var(--green-500));
  border-radius: 2px;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2
}

.step-n {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 16px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.step:nth-child(1) .step-n {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500))
}

.step:nth-child(2) .step-n {
  background: linear-gradient(135deg, var(--yellow-400), #f59e0b);
  color: var(--blue-900)
}

.step:nth-child(3) .step-n {
  background: linear-gradient(135deg, var(--green-500), var(--green-600))
}

.step h3 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--blue-900)
}

.step p {
  font-size: .85rem;
  color: var(--gray-600)
}

/* ── ADDRESS ── */
.addr-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center
}

.addr-info p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.7
}

.addr-info .btn {
  margin-top: 4px
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  border: 2px solid var(--gray-200);
  height: 300px
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none
}

/* ── HOURS ── */
.hours-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.h-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-100)
}

.h-row:last-child {
  border-bottom: none
}

.h-day {
  font-weight: 600;
  color: var(--blue-900)
}

.h-time {
  color: var(--gray-500);
  font-weight: 500
}

.h-row.sun {
  background: rgba(214, 40, 40, .04);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin: 0 -12px
}

.h-row.sun .h-day {
  color: var(--red-500)
}

/* ── CTA ── */
.cta {
  padding: 72px 0;
  background: linear-gradient(160deg, var(--blue-900), var(--blue-800), var(--blue-700));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px
}

.cta>p,
.cta .container>p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 30px
}

.cta-phones {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px
}

.cta-ph {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: .9rem
}

.cta-ph a {
  color: var(--yellow-300);
  font-weight: 600;
  transition: color .2s
}

.cta-ph a:hover {
  color: var(--yellow-400)
}

/* ── FOOTER ── */
.footer {
  background: var(--blue-900);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 40px 0 20px;
  color: rgba(255, 255, 255, .55)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px
}

.footer-brand h3 span {
  color: var(--red-500)
}

.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:25px;border-top:1px solid rgba(255,255,255,.05);gap:20px}
.footer-copy p{font-size:.8rem;margin-bottom:4px}
.privacy-link{font-size:.78rem;color:rgba(255,255,255,.45);transition:color .2s}
.privacy-link:hover{color:#fff}
.dev-highlight{text-align:right}
.dev-highlight span{display:block;font-size:.7rem;text-transform:uppercase;letter-spacing:1px;color:rgba(255,255,255,.3);margin-bottom:2px}
.dev-highlight a{font-size:.85rem;font-weight:700;color:var(--yellow-500);text-decoration:none;transition:opacity .2s}
.dev-highlight a:hover{opacity:.8}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px
}

.footer-col p,
.footer-col a {
  font-size: .83rem;
  line-height: 1.8;
  display: block
}

.footer-col a:hover {
  color: var(--yellow-300)
}

  transition: color .2s
}

.privacy-link:hover {
  color: var(--yellow-300)
}

.credits {
  font-size: .7rem;
  color: rgba(255, 255, 255, .25)
}

.credits a {
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s
}

.credits a:hover {
  color: var(--yellow-400)
}

.privacy-text {
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.7
}

.privacy-text p {
  margin-bottom: 15px
}

/* ── FLOATING WA ── */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, var(--green-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  transition: all .25s var(--ease);
  animation: pulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 32px rgba(18, 140, 78, .55);
  filter: brightness(1.05)
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(18, 140, 78, .4)
  }

  50% {
    box-shadow: 0 4px 28px rgba(18, 140, 78, .65), 0 0 0 8px rgba(18, 140, 78, .08)
  }
}

/* ── ANIMATIONS ── */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease)
}

.fi.v {
  opacity: 1;
  transform: translateY(0)
}

.stg .fi:nth-child(1) {
  transition-delay: .04s
}

.stg .fi:nth-child(2) {
  transition-delay: .1s
}

.stg .fi:nth-child(3) {
  transition-delay: .16s
}

.stg .fi:nth-child(4) {
  transition-delay: .22s
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-img{order:1;margin-bottom:20px;width:100%;display:flex;justify-content:center;overflow:hidden}
  .hero-img img{max-width:280px;animation:none;transform:none}
  .hero-text h1{font-size:1.6rem;line-height:1.2}
  .hero-sub{font-size:1rem}

  .hero-minis {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps::before {
    display: none
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .addr-wrap {
    grid-template-columns: 1fr
  }

  .map-box {
    height: 240px
  }

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

  .povo-strip-inner {
    justify-content: center;
    text-align: center
  }

  .povo-strip-left {
    flex-direction: column;
    align-items: center
  }

  .hero-trust {
    max-width: 100%;
    align-items: center
  }
}

@media(max-width:640px) {
  .section {
    padding: 52px 0
  }

  .container {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .header-inner {
    padding: 12px 16px;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center
  }

  .header-logo {
    font-size: 1.3rem
  }

  .header-actions {
    gap: 8px;
    width: 100%;
    justify-content: center
  }

  .h-btn {
    padding: 10px 14px;
    font-size: .78rem;
    gap: 6px;
    flex: 1;
    max-width: 180px
  }

  .h-icon {
    width: 16px;
    height: 16px
  }

  .h-lbl {
    display: inline-block
  }

  .hero {
    padding: 100px 0 50px
  }

  .hero-img {
    order: -1;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden
  }

  .hero-img img {
    max-width: 260px;
    height: auto;
    animation: none !important;
    transform: none !important;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.3))
  }

  .hero-text h1 {
    font-size: 1.6rem
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px
  }

  .hero-minis {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%
  }

  .mini-card {
    padding: 10px 6px
  }

  .products-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px
  }

  .p-card {
    align-items: center;
    text-align: center
  }

  .b-grid {
    grid-template-columns: 1fr;
    width: 100%
  }

  .region-tags {
    flex-direction: column;
    align-items: center;
    width: 100%
  }

  .hours-card {
    padding: 20px 16px;
    width: 100%;
    max-width: 400px
  }

  .h-row {
    justify-content: center;
    gap: 15px;
    text-align: center
  }

  .cta-phones {
    flex-direction: column;
    align-items: center
  }

  .btn {
    padding: 13px 22px;
    font-size: .88rem
  }

  .btn-green-lg {
    padding: 15px 28px;
    font-size: 1rem
  }

  .addr-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px
  }

  .dev-highlight {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
    width: 100%
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .povo-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .povo-strip-left {
    flex-direction: column;
    align-items: center
  }
}