/*
Theme Name: H2Agua
Theme URI: https://example.com/h2agua
Author: H2Agua
Description: Tema WordPress institucional e comercial para distribuidora de água mineral, com home responsiva, catálogo de produtos, fluxo de pedidos e chamadas para WhatsApp.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: h2agua
*/

:root {
  --blue-950: #06285d;
  --blue-900: #083b86;
  --blue-800: #074fae;
  --blue-700: #0667cf;
  --blue-600: #0a7ee7;
  --blue-100: #eaf6ff;
  --blue-050: #f4fbff;
  --green-600: #10b84f;
  --green-700: #079a3c;
  --ink: #08152f;
  --muted: #526174;
  --line: #d7e7f6;
  --card: #ffffff;
  --shadow: 0 14px 34px rgba(5, 52, 110, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  line-height: 1.45;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(6, 40, 93, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
}

.brand-mark {
  width: 44px;
  height: 54px;
}

.brand-title {
  display: block;
  color: var(--blue-700);
  font-size: 34px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-subtitle {
  display: block;
  color: var(--blue-800);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav,
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.main-nav {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  color: #111827;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--blue-700);
}

.button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--blue-800);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(7, 79, 174, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: var(--blue-900);
}

.button.secondary {
  background: #fff;
  color: var(--blue-950);
  border-color: var(--blue-950);
  box-shadow: none;
}

.button.green,
.whatsapp-button {
  background: var(--green-600);
  color: #fff;
}

.button.green:hover,
.button.green:focus,
.whatsapp-button:hover,
.whatsapp-button:focus {
  background: var(--green-700);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 252, 255, 0.98) 0%, rgba(246, 252, 255, 0.92) 22%, rgba(246, 252, 255, 0.42) 45%, rgba(246, 252, 255, 0.02) 70%),
    url("assets/hero-background.png") center right / cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0 auto 0 0;
  width: min(58vw, 780px);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0));
  opacity: 0.8;
}

.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 560px);
  align-items: center;
  padding: 62px 0 54px;
}

.hero-copy {
  max-width: 560px;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.97;
  letter-spacing: 0;
  font-weight: 950;
}

.hero p {
  margin: 0 0 26px;
  max-width: 450px;
  color: #16253d;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.service-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #27364d;
  font-size: 14px;
}

.benefits {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px 0;
}

.benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

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

.benefit-icon,
.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f5ff;
  color: var(--blue-700);
}

.benefit h3,
.product-card h3,
.testimonial strong {
  margin: 0;
  color: #0b1731;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 900;
}

.product-card h3 a:hover,
.product-card h3 a:focus {
  color: var(--blue-700);
}

.benefit p {
  margin: 4px 0 0;
  color: #303d4f;
  font-size: 13px;
}

.section {
  padding: 36px 0;
}

.products {
  background: linear-gradient(#eef8ff, #eaf6ff);
}

.local-seo {
  background: #fff;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.local-seo p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #24334a;
  font-size: 16px;
}

.service-areas {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6fbff;
}

.service-areas h3 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
}

.service-areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-areas li {
  padding: 7px 10px;
  border-radius: 6px;
  background: #e5f3ff;
  color: var(--blue-950);
  font-size: 13px;
  font-weight: 800;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
}

.section-title {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  font-weight: 950;
}

.section-subtitle {
  margin: 6px 0 0;
  color: #13233f;
  font-size: 18px;
}

.product-groups {
  display: grid;
  gap: 26px;
}

.product-group {
  min-width: 0;
}

.product-group-title {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-width: 0;
  padding: 16px 12px 12px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 26px rgba(6, 40, 93, 0.11);
  text-align: center;
}

.product-visual {
  height: 126px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.product-image {
  width: 100%;
  height: 126px;
  object-fit: contain;
}

.mini-gallon,
.mini-pack,
.mini-dispenser,
.mini-pump {
  position: relative;
  width: 96px;
  height: 116px;
}

.mini-gallon::before,
.mini-pack::before {
  content: "";
  position: absolute;
  inset: 25px 16px 6px;
  border: 2px solid #1681d8;
  border-radius: 24px 24px 14px 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75), transparent), linear-gradient(#75ccfb, #d7f4ff 55%, #62bff3);
  box-shadow: inset 0 0 15px #fff;
}

.mini-gallon::after {
  content: "H2Agua";
  position: absolute;
  left: 27px;
  top: 62px;
  color: var(--blue-800);
  font-size: 11px;
  font-weight: 950;
}

.mini-pack {
  width: 122px;
}

.mini-pack::before {
  inset: 34px 6px 10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18px 35px, #dff7ff 0 12px, transparent 13px),
    repeating-linear-gradient(90deg, #71c9f4 0 15px, #ccefff 16px 26px);
}

.mini-pack.green::before {
  border-color: #2da986;
  background:
    radial-gradient(circle at 18px 35px, #e3fff8 0 12px, transparent 13px),
    repeating-linear-gradient(90deg, #71d8bd 0 15px, #d4fff5 16px 26px);
}

.mini-dispenser::before {
  content: "";
  position: absolute;
  inset: 16px 22px 8px;
  border-radius: 16px 16px 8px 8px;
  background: #1c1e25;
  box-shadow: inset -12px 0 0 #05070a;
}

.mini-dispenser::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 38px;
  width: 48px;
  height: 52px;
  border: 8px solid #090c11;
  border-left-width: 12px;
  border-radius: 6px 24px 24px 6px;
}

.mini-pump::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 16px;
  width: 44px;
  height: 84px;
  border-radius: 8px;
  background: linear-gradient(90deg, #e7e9ec, #ffffff, #c9d0d6);
  border: 2px solid #20242a;
}

.mini-pump::after {
  content: "";
  position: absolute;
  right: 0;
  top: 44px;
  width: 52px;
  height: 32px;
  border-top: 6px solid #20242a;
  border-right: 4px solid #20242a;
  border-radius: 0 18px 0 0;
}

.product-card p {
  margin: 4px 0 10px;
  color: #263449;
  font-size: 12px;
}

.price {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: 22px;
  font-weight: 950;
}

.product-card .button {
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.product-detail-trigger {
  cursor: pointer;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-modal.is-open {
  display: flex;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 46, 0.62);
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  max-height: min(86vh, 720px);
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  overflow: auto;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 18, 46, 0.32);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eef7ff;
  color: var(--blue-950);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-modal-media {
  min-height: 300px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(#f7fcff, #e9f6ff);
}

.product-modal-media img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.product-modal-media .mini-gallon,
.product-modal-media .mini-pack,
.product-modal-media .mini-dispenser,
.product-modal-media .mini-pump {
  transform: scale(1.7);
}

.product-modal-copy {
  align-self: center;
  min-width: 0;
}

.product-modal-copy h2 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  font-weight: 950;
}

.product-modal-desc {
  margin: 0 0 14px;
  color: #172943;
  font-size: 18px;
  font-weight: 800;
}

.product-modal-details {
  margin: 0 0 18px;
  color: #324159;
  font-size: 15px;
}

body.has-product-modal {
  overflow: hidden;
}

.single-product-section {
  min-height: 520px;
}

.single-product {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 42px;
  align-items: center;
}

.single-product-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.single-product-media .mini-gallon,
.single-product-media .mini-pack,
.single-product-media .mini-dispenser,
.single-product-media .mini-pump {
  transform: scale(1.65);
}

.single-product-image {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  padding: 24px;
}

.single-product-copy .service-note {
  margin-top: 0;
  margin-bottom: 12px;
}

.single-product-copy .price {
  margin: 18px 0;
  font-size: 30px;
}

.single-product-content {
  margin: 18px 0 24px;
  color: #24334a;
  font-size: 17px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-950);
  box-shadow: 0 7px 18px rgba(6, 40, 93, 0.18);
  transform: translateY(-50%);
}

.carousel-arrow.prev {
  left: -18px;
}

.carousel-arrow.next {
  right: -18px;
}

.how {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.how::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 270px;
  height: 260px;
  background: url("assets/water-wave.svg") center / contain no-repeat;
  opacity: 0.42;
}

.steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 34px auto 26px;
  max-width: 880px;
}

.step {
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  left: calc(50% + 52px);
  width: calc(100% - 68px);
  border-top: 2px dashed var(--blue-600);
}

.step-icon {
  position: relative;
  width: 92px;
  height: 92px;
  margin-bottom: 12px;
  border: 1px solid var(--blue-600);
  background: #eff9ff;
}

.step-number {
  position: absolute;
  right: -4px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-800);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.15;
}

.step p {
  margin: 0;
  color: #344153;
  font-size: 14px;
}

.promo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.promo {
  min-height: 245px;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: center;
  padding: 28px 36px;
  background: linear-gradient(135deg, #0064d8, #003f9a);
  color: #fff;
}

.promo-subscription {
  min-height: 390px;
  grid-template-columns: minmax(0, 0.82fr) minmax(220px, 1fr);
  background:
    linear-gradient(90deg, rgba(0, 70, 158, 0.94) 0%, rgba(0, 94, 203, 0.78) 40%, rgba(0, 94, 203, 0.1) 68%),
    url("assets/promo-subscription-bg.png") center right / cover no-repeat;
}

.promo.light {
  background: linear-gradient(135deg, #dff1ff, #ffffff);
  color: var(--blue-950);
}

.promo-company {
  position: relative;
  min-height: 390px;
  grid-template-columns: minmax(0, 0.86fr) minmax(220px, 1fr);
  overflow: hidden;
  background: linear-gradient(135deg, #dff1ff, #ffffff);
}

.promo-company::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(244, 251, 255, 0.98) 0%, rgba(244, 251, 255, 0.9) 36%, rgba(244, 251, 255, 0.18) 58%, rgba(244, 251, 255, 0) 78%);
  pointer-events: none;
}

.promo-company > div {
  position: relative;
  z-index: 2;
}

.promo-company-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 72%;
  background: url("assets/promo-company-bg.png") right center / contain no-repeat;
}

.promo h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 950;
}

.promo p,
.promo li {
  color: inherit;
  font-size: 15px;
}

.promo ul {
  padding: 0;
  margin: 12px 0 18px;
  list-style: none;
}

.promo li {
  margin: 5px 0;
}

.promo .button {
  min-height: 36px;
  padding: 10px 18px;
  background: #fff;
  color: var(--blue-900);
  box-shadow: none;
}

.promo.light .button {
  background: var(--blue-800);
  color: #fff;
}

.calendar-visual,
.office-visual {
  min-height: 180px;
  position: relative;
}

.calendar-visual::before {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 4px;
  width: 120px;
  height: 170px;
  border-radius: 30px 30px 18px 18px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(#76c9fb, #d9f6ff 48%, #58b9ef);
}

.calendar-visual::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 98px;
  border-radius: 8px;
  background:
    linear-gradient(#e9f4ff 0 24px, #ffffff 24px),
    repeating-linear-gradient(90deg, transparent 0 28px, #bdd9f4 29px 30px),
    repeating-linear-gradient(0deg, transparent 0 28px, #bdd9f4 29px 30px);
  border: 4px solid #b9d2eb;
}

.office-visual::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 0;
  width: 142px;
  height: 198px;
  border-radius: 70px 70px 8px 8px;
  background: linear-gradient(#111827 0 22%, #f3c4a1 22% 42%, #1c2638 42%);
}

.office-visual::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 86px;
  bottom: 0;
  height: 132px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), transparent),
    repeating-linear-gradient(90deg, #74c9f5 0 42px, #d9f6ff 43px 68px);
  border: 2px solid rgba(6, 103, 207, 0.25);
}

.trust {
  padding-top: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, 1fr) 0.95fr;
  gap: 12px;
  align-items: stretch;
}

.trust-copy h2 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 950;
}

.trust-copy p {
  margin: 0;
  color: #1d2b42;
  font-size: 17px;
}

.testimonial {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 40, 93, 0.08);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(#f4c49e 0 42%, #1f2937 42%);
}

.avatar.alt {
  background: linear-gradient(#e6b38e 0 42%, #355c85 42%);
}

.avatar.senior {
  background: linear-gradient(#eec6a8 0 42%, #cfd6df 42%);
}

.stars {
  color: #ffc11a;
  font-size: 15px;
  letter-spacing: 0;
}

.testimonial blockquote {
  margin: 3px 0 8px;
  color: #293648;
  font-size: 12px;
}

.testimonial small {
  display: block;
  color: #607086;
  font-size: 10px;
}

.neighborhoods {
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #0861ce, #00469e);
  color: #fff;
}

.neighborhoods h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.neighborhoods p {
  margin: 0 0 18px;
}

.neighborhoods .button {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.86);
  background: transparent;
  box-shadow: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.cep-checker {
  display: grid;
  gap: 10px;
}

.cep-field {
  display: grid;
  gap: 8px;
}

.cep-field input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-950);
  font: inherit;
  font-weight: 800;
}

.cep-field input::placeholder {
  color: #6b7b90;
}

.cep-field input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.32);
  outline-offset: 2px;
}

.cep-result {
  min-height: 42px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.cep-result.is-success {
  background: rgba(16, 184, 79, 0.22);
}

.cep-result.is-error {
  background: rgba(255, 255, 255, 0.18);
}

.site-footer {
  position: relative;
  background: #06336f;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 30px 0;
}

.footer-brand .brand-title,
.footer-brand .brand-subtitle {
  color: #fff;
}

.footer-brand p,
.footer-main p,
.footer-main li,
.footer-main a {
  color: rgba(255, 255, 255, 0.93);
  font-size: 14px;
}

.footer-main h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

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

.footer-main li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.footer-main li .icon {
  width: 18px;
  height: 18px;
}

.map-card {
  overflow: hidden;
  min-height: 116px;
  padding: 0;
  border-radius: var(--radius);
  background: #e5f1e8;
  box-shadow: 0 10px 22px rgba(0, 22, 58, 0.18);
}

.map-card iframe {
  width: 100%;
  min-height: 116px;
  display: block;
  border: 0;
}

.footer-bottom {
  background: #005fca;
  color: #fff;
  font-size: 12px;
}

.footer-bottom-inner {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
  text-align: center;
}

.payment-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

.developer-credit img {
  width: min(260px, 78vw);
  height: auto;
  object-fit: contain;
}

.developer-credit:hover,
.developer-credit:focus {
  text-decoration: underline;
}

.payment-badge {
  min-width: 58px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: #fff;
  color: #10213d;
  text-align: center;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(0, 24, 70, 0.16);
}

.payment-badge.cash {
  min-width: 76px;
  background: linear-gradient(135deg, #1f9d55, #e9fff2);
  color: #063d22;
}

.payment-badge.pix {
  color: #087b74;
}

.payment-badge.pix::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #21c7b7;
  transform: rotate(45deg);
}

.payment-badge.visa {
  color: #123a91;
  font-style: italic;
  letter-spacing: 0;
}

.payment-badge.master {
  color: #151515;
}

.payment-badge.master i {
  position: relative;
  width: 22px;
  height: 14px;
  display: inline-block;
}

.payment-badge.master i::before,
.payment-badge.master i::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.payment-badge.master i::before {
  left: 0;
  background: #eb001b;
}

.payment-badge.master i::after {
  right: 0;
  background: rgba(247, 158, 27, 0.9);
}

.payment-badge.elo {
  color: #111827;
}

.payment-badge.elo::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: conic-gradient(#f7c600 0 32%, #00a4e0 0 66%, #ef4023 0);
}

.payment-badge.amex {
  background: linear-gradient(135deg, #2b77c8, #0f4c9d);
  color: #fff;
  letter-spacing: 0.02em;
}

.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1060px) {
.main-nav,
.main-nav ul {
    gap: 18px;
  }

  .promo-grid,
  .single-product {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .local-seo-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(n + 3) {
    margin-top: 18px;
  }

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

  .trust-copy,
  .neighborhoods {
    grid-column: span 2;
  }

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

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

  .header-inner {
    min-height: auto;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .brand-title {
    font-size: 28px;
  }

  .main-nav,
  .main-nav ul {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .whatsapp-button {
    padding-inline: 14px;
  }

  .hero-inner {
    min-height: 620px;
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions .button {
    flex: 1 1 190px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(246, 252, 255, 0.98) 0%, rgba(246, 252, 255, 0.92) 38%, rgba(246, 252, 255, 0.18) 72%),
      url("assets/hero-background.png") 64% center / cover no-repeat;
  }

  .benefit-grid,
  .local-seo-grid,
  .product-grid,
  .steps,
  .promo,
  .footer-main,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .benefit,
  .benefit:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
  }

  .benefit:nth-child(n + 3) {
    margin-top: 0;
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-arrow {
    display: none;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .promo {
    padding: 24px;
  }

  .product-modal {
    padding: 14px;
  }

  .product-modal-dialog {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .product-modal-media {
    min-height: 220px;
  }

  .promo-subscription {
    min-height: 520px;
    background:
      linear-gradient(180deg, rgba(0, 70, 158, 0.96) 0%, rgba(0, 94, 203, 0.78) 45%, rgba(0, 94, 203, 0.06) 78%),
      url("assets/promo-subscription-bg.png") 62% center / cover no-repeat;
  }

  .promo-company {
    position: relative;
    min-height: 520px;
    background: linear-gradient(135deg, #dff1ff, #ffffff);
  }

  .promo-company::before {
    background: linear-gradient(180deg, rgba(244, 251, 255, 0.98) 0%, rgba(244, 251, 255, 0.9) 46%, rgba(244, 251, 255, 0.08) 78%);
  }

  .promo-company-visual {
    width: 100%;
    background-size: 100% auto;
    background-position: center bottom;
  }

  .trust-copy,
  .neighborhoods {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    padding: 10px 0;
  }

  .developer-credit {
    justify-content: center;
  }
}
