:root {
  --blue-950: #001d4f;
  --blue-900: #002b70;
  --blue-800: #003a8c;
  --blue-700: #064aaf;
  --blue-500: #0b6bd3;
  --ink: #071326;
  --muted: #596273;
  --line: #dce3ee;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --stone: #e9ecef;
  --shadow: 0 16px 34px rgba(0, 34, 84, 0.12);
  --radius: 8px;
  --font-display: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --container: 1130px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 45, 112, 0.05), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f8fafc 48%, #fff 100%);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px),
    linear-gradient(30deg, rgba(0, 0, 0, 0.02) 0 1px, transparent 1px);
  background-size: 58px 58px, 90px 90px;
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--blue-900);
  color: #fff;
  border-radius: 4px;
}

.skip-link:focus {
  top: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 72px));
  margin: 0 auto;
}

.site-header .container {
  width: min(1320px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(4, 36, 88, 0.12);
  box-shadow: 0 8px 20px rgba(0, 19, 50, 0.06);
}

.header-inner {
  height: 70px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  height: 70px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #06111f;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  background: var(--blue-800);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.whatsapp-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1;
  cursor: pointer;
}

.whatsapp-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue-900);
  box-shadow: 0 10px 24px rgba(0, 43, 112, 0.2);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions .whatsapp-cta {
  justify-self: auto;
  min-width: 0;
  min-height: 42px;
  padding: 0 12px;
  gap: 7px;
  font-size: 11px;
  white-space: nowrap;
}

.header-actions .whatsapp-cta span {
  min-width: 0;
}

.representative-cta {
  font: inherit;
}

.header-actions .whatsapp-cta svg {
  width: 18px;
  height: 18px;
}

.whatsapp-cta svg,
.btn svg,
.site-footer svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.menu-toggle {
  display: none;
}

.btn.primary {
  background: linear-gradient(180deg, #004299 0%, #002e78 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 48, 122, 0.2);
}

.btn.secondary {
  color: var(--blue-900);
  background: #fff;
  border-color: var(--blue-900);
}

.btn.secondary-on-blue {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
}

.btn.small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 12px;
}

.btn.full {
  width: 100%;
}

.page {
  display: none;
}

.page.is-active {
  display: block;
  overflow-x: hidden;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 452px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0 32%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, #eff1f3, #fff);
}

.home-hero::after,
.sub-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(140deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.28;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 452px;
  display: grid;
  grid-template-columns: minmax(390px, 0.74fr) minmax(520px, 1.26fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 62px 0 48px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-800);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-950);
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: 0;
}

.sub-hero h1,
.contact-hero h1,
.retailer-hero h1 {
  max-width: 570px;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 500px;
  font-size: clamp(42px, 3.25vw, 49px);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: #1f2329;
}

.hero-copy h1 span,
.blue-word {
  display: block;
  color: var(--blue-900);
}

.hero-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 20px 0 0;
  color: #161d2a;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-stage {
  position: absolute;
  top: 0;
  right: calc((100% - 100vw) / 2);
  bottom: 0;
  z-index: 0;
  width: min(72vw, 920px);
  min-height: 452px;
  overflow: hidden;
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: translateX(0);
  transition: opacity 700ms ease;
}

.hero-slide.is-current {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: none;
  filter: grayscale(0.12) contrast(1.04);
  opacity: 0.98;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 19%, rgba(255, 255, 255, 0.34) 41%, rgba(255, 255, 255, 0.06) 64%, rgba(0, 29, 79, 0.06) 100%),
    linear-gradient(0deg, rgba(0, 29, 79, 0.16), transparent 45%);
  pointer-events: none;
}

.hero-products {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 2;
  width: min(670px, 58vw);
  height: 172px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 22px 24px rgba(0, 24, 60, 0.2));
  mix-blend-mode: multiply;
}

.hero-products-wide {
  height: 205px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 12px solid rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  mix-blend-mode: normal;
}

.hero-products-line {
  height: 172px;
  object-fit: contain;
  object-position: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  mix-blend-mode: normal;
}

.hero-product-stack {
  position: absolute;
  right: 32px;
  bottom: 34px;
  z-index: 3;
  width: min(560px, 55%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
}

.hero-product-stack img {
  width: 100%;
  max-height: 214px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 18px 18px rgba(0, 31, 84, 0.22));
}

.hero-product-stack--selantes {
  width: min(365px, 36%);
}

.hero-product-stack--selantes img {
  max-height: 220px;
}

.hero-dots {
  position: absolute;
  right: 42px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 31px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 43, 112, 0.26);
  cursor: pointer;
}

.hero-dots button.is-current {
  background: var(--blue-900);
}

.metric-strip {
  background: #fff;
  border-block: 1px solid var(--line);
}

.metrics {
  height: 95px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.metrics article {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics svg,
.why-grid svg,
.retailer-benefits svg,
.contact-shortcuts svg,
.catalog-grid svg {
  width: 44px;
  height: 44px;
  color: var(--blue-800);
  stroke-width: 1.8;
}

.metrics strong {
  color: #071326;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.35;
}

.section {
  padding: 36px 0;
}

.section-title {
  margin-bottom: 24px;
}

.section-title.center {
  text-align: center;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--blue-700);
}

.section-title:not(.center) h2::after {
  margin-left: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 22px rgba(0, 42, 98, 0.06);
}

.solution-trigger {
  width: 100%;
  min-height: 178px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  padding: 0;
  text-align: left;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.solution-trigger:focus-visible {
  outline: 3px solid rgba(11, 107, 211, 0.26);
  outline-offset: -3px;
}

.solution-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-trigger span {
  padding: 24px 18px;
}

.solution-card h3 {
  margin-bottom: 13px;
  font-size: 15px;
  font-weight: 900;
  overflow-wrap: normal;
  text-transform: uppercase;
}

.solution-card p,
.solution-detail p,
.material-grid p,
.product-card p {
  color: var(--muted);
}

.solution-trigger strong,
.solution-detail a,
.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
}

.solution-trigger strong svg,
.solution-detail a svg,
.product-card a svg {
  width: 16px;
  height: 16px;
}

.solution-card.is-open {
  border-color: rgba(0, 43, 112, 0.55);
  box-shadow: 0 18px 34px rgba(0, 42, 98, 0.12);
}

.solution-card.is-open .solution-trigger strong svg {
  transform: rotate(180deg);
}

.solution-details {
  margin-top: 20px;
  padding: 30px 34px;
  background:
    linear-gradient(120deg, rgba(0, 43, 112, 0.96), rgba(0, 70, 150, 0.9)),
    #002b70;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-details[hidden] {
  display: none;
}

.solution-detail {
  display: none;
  max-width: 850px;
}

.solution-detail.is-active {
  display: block;
}

.solution-detail .detail-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9bd1ff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-detail h3 {
  max-width: 760px;
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
}

.solution-detail p {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.solution-detail a {
  min-height: 40px;
  margin-top: 18px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 5px;
}

.home-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: stretch;
}

.product-shelves {
  display: grid;
  gap: 12px;
}

.shelf {
  overflow: hidden;
  border: 2px solid var(--blue-900);
  border-radius: 7px;
  background: #fff;
}

.shelf h3 {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  color: #fff;
  background: var(--blue-900);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mini-product {
  min-height: 176px;
  padding: 12px 12px 10px;
  border-right: 1px solid var(--line);
}

.mini-product:last-child {
  border-right: 0;
}

.mini-product img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  object-position: center bottom;
}

.mini-product strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-950);
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
}

.mini-product span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.mini-product a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
}

.blue-panel {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 36px 32px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(0, 99, 199, 0.24), transparent 42%),
    linear-gradient(180deg, #003a90 0%, #001d4f 100%);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.blue-panel h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.blue-panel p {
  max-width: 220px;
  margin: 22px 0;
  font-size: 16px;
}

.blue-panel img {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 20px;
  width: calc(100% - 20px);
  height: 240px;
  object-fit: contain;
  object-position: right center;
  border-radius: 6px;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  background: #fff;
  border-block: 1px solid var(--line);
}

.split-band img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.about-band img {
  object-position: center 38%;
}

.split-band:not(.about-band) img {
  object-fit: contain;
  padding: 22px;
  background: #fff;
}

.split-band > div {
  max-width: 600px;
  padding: 44px 56px;
}

.split-band h2 {
  margin-bottom: 18px;
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-band p {
  color: #253145;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.why-grid article {
  min-height: 112px;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.why-grid article:last-child {
  border-right: 0;
}

.why-grid strong {
  display: block;
  margin: 8px 0 5px;
  color: var(--blue-950);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.sub-hero,
.contact-hero,
.retailer-hero {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #eef1f4;
}

.sub-hero .container,
.contact-hero .container,
.retailer-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 64px;
}

.breadcrumb {
  margin-bottom: 28px;
  color: var(--blue-950);
  font-size: 14px;
}

.sub-hero h1,
.contact-hero h1,
.retailer-hero h1 {
  color: var(--blue-950);
}

.sub-hero p,
.contact-hero p,
.retailer-hero p {
  max-width: 510px;
  margin: 18px 0 0;
  color: #1f2734;
  font-size: 22px;
}

.products-hero {
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.98) 0 36%, rgba(247, 248, 250, 0.72) 56%, rgba(247, 248, 250, 0.28) 100%),
    url("assets/banner/hero-assentamento.jpeg?v=3") right center / 62% auto no-repeat,
    #eef1f4;
}

.products-section {
  padding-top: 0;
}

.product-tabs {
  display: grid;
  grid-template-columns: 180px 1.3fr 1.25fr 1.45fr 1fr;
  align-items: stretch;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
}

.product-tabs button {
  min-height: 58px;
  color: #5c6471;
  background: transparent;
  border: 0;
  border-right: 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.product-tabs button.active {
  color: #fff;
  background: var(--blue-900);
  box-shadow: inset 0 -4px 0 #fff, 0 8px 18px rgba(0, 43, 112, 0.16);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 18px;
  margin-top: 34px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 38, 98, 0.04);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 58, 140, 0.32);
  box-shadow: 0 18px 32px rgba(0, 38, 98, 0.12);
}

.product-card .image-wrap {
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-card .image-wrap img {
  max-width: 100%;
  max-height: 165px;
  object-fit: contain;
}

.product-card h3 {
  min-height: 42px;
  color: var(--blue-950);
  font-size: 18px;
  font-weight: 900;
}

.product-card p {
  flex: 1;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
}

.help-callout {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 26px;
  padding: 24px 38px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(237, 240, 244, 0.95)),
    #f1f4f7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.help-callout svg {
  width: 58px;
  height: 58px;
  color: var(--blue-900);
}

.help-callout h2 {
  font-size: 29px;
  font-weight: 900;
}

.help-callout p {
  margin: 5px 0 0;
  font-size: 18px;
}

.catalog-hero {
  min-height: 440px;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.98) 0 42%, rgba(247, 248, 250, 0.7) 58%, rgba(247, 248, 250, 0.18) 100%),
    #eef1f4;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.catalog-mockup {
  position: relative;
  height: 360px;
  perspective: 1100px;
}

.book-cover {
  position: absolute;
  z-index: 2;
  left: 90px;
  top: 26px;
  width: 270px;
  height: 310px;
  padding: 52px 34px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(128deg, #003178 0 56%, #0484ed 56% 100%);
  border-radius: 4px 10px 10px 4px;
  transform: rotate(-9deg) skewY(-2deg);
  box-shadow: 0 26px 35px rgba(0, 36, 90, 0.28);
}

.book-cover::after {
  content: "A";
  position: absolute;
  right: 22px;
  top: 62px;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--font-display);
  font-size: 190px;
  font-weight: 900;
  line-height: 1;
}

.book-cover span,
.book-cover strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.03;
  text-transform: uppercase;
}

.book-cover strong {
  color: #79c4ff;
}

.book-cover img {
  position: absolute;
  z-index: 1;
  left: 34px;
  bottom: 30px;
  width: 150px;
  filter: brightness(0) invert(1);
}

.book-pages {
  position: absolute;
  right: 0;
  top: 38px;
  width: 390px;
  height: 292px;
  transform: rotate(7deg) skewY(3deg);
  filter: drop-shadow(0 24px 26px rgba(0, 29, 79, 0.2));
}

.book-pages div {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 38, 90, 0.1), transparent 9%),
    linear-gradient(180deg, #fff, #f4f7fb);
  border: 1px solid #ccd6e2;
  border-radius: 5px;
}

.book-pages div::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 42px;
  height: 46px;
  background: var(--blue-900);
  border-radius: 2px;
}

.book-pages div::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 118px;
  width: 96px;
  height: 110px;
  background: url("assets/products-updated/porcelanato.png") center / contain no-repeat;
}

.book-pages div + div {
  left: 48px;
  top: 14px;
  transform: rotate(3deg);
}

.hero-notes {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.hero-notes article {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero-notes svg {
  width: 40px;
  height: 40px;
  color: var(--blue-900);
}

.hero-notes strong {
  display: block;
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
}

.hero-notes span {
  color: #3d4655;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.catalog-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 18px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(0, 38, 98, 0.05);
}

.catalog-card h3 {
  min-height: 44px;
  font-size: 17px;
  font-weight: 900;
}

.outline-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 28px;
  padding: 0 14px;
  color: var(--blue-900);
  border: 1px solid var(--blue-800);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.material-grid article {
  display: flex;
  flex-direction: column;
}

.material-grid img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  padding: 12px;
  border-radius: 6px;
  background: #f4f8ff;
}

.material-grid h3 {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 900;
}

.material-grid p {
  flex: 1;
  margin: 7px 0 12px;
  font-size: 13px;
}

.download-band {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 26px 38px;
  border: 1px solid #b8c9df;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #f7faff, #fff);
}

.download-band h2,
.download-help h3 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-band p {
  color: #3b4656;
}

.download-band img {
  height: 130px;
  object-fit: contain;
}

.download-help {
  padding-left: 28px;
  border-left: 1px solid #b8c9df;
}

.download-help svg {
  width: 52px;
  height: 52px;
  color: var(--blue-900);
}

.simple-hero {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.98) 0 44%, rgba(247, 248, 250, 0.64) 100%),
    url("assets/banner/hero-assentamento.jpeg?v=3") right center / 58% cover no-repeat;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.location-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 38, 98, 0.06);
}

.location-card > svg {
  width: 58px;
  height: 58px;
  color: var(--blue-900);
}

.location-card h2 {
  margin-top: 0;
  font-size: 24px;
  text-transform: uppercase;
}

.location-card p {
  color: #334052;
  font-size: 17px;
}

.city-overview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0 14px;
}

.city-overview article {
  padding: 15px;
  background: linear-gradient(135deg, rgba(0, 57, 142, 0.1), rgba(25, 191, 177, 0.1));
  border: 1px solid rgba(0, 74, 175, 0.16);
  border-radius: 7px;
}

.city-overview strong,
.city-overview span {
  display: block;
}

.city-overview strong {
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.city-overview span {
  margin-top: 6px;
  color: #516073;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.city-search {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
  padding: 11px 13px;
  background: #f7f9fc;
  border: 1px solid rgba(0, 74, 175, 0.16);
  border-radius: 7px;
}

.city-search svg {
  width: 20px;
  height: 20px;
  color: var(--blue-900);
}

.city-search input {
  min-width: 0;
  color: #1f2734;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-weight: 700;
}

.city-search small {
  color: #516073;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.partner-locations {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}

.city-filter-list {
  max-height: 390px;
  overflow: auto;
  padding-right: 6px;
  overscroll-behavior: contain;
}

.partner-locations article,
.partner-locations button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 13px 15px;
  color: inherit;
  background: linear-gradient(135deg, rgba(0, 74, 175, 0.08), rgba(25, 191, 177, 0.08));
  border: 1px solid rgba(0, 74, 175, 0.16);
  border-radius: 7px;
  text-align: left;
}

.partner-locations button {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.partner-locations button:hover,
.partner-locations button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(0, 74, 175, 0.34);
  background: linear-gradient(135deg, rgba(0, 74, 175, 0.12), rgba(25, 191, 177, 0.14));
}

.partner-locations button:focus-visible {
  outline: 3px solid rgba(11, 107, 211, 0.24);
  outline-offset: 2px;
}

.partner-locations strong,
.partner-locations span {
  display: block;
}

.partner-locations strong {
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-locations span {
  margin-top: 3px;
  color: #334052;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.city-filter-list span {
  padding: 5px 8px;
  color: #fff;
  background: var(--blue-900);
  border-radius: 999px;
  font-size: 11px;
}

.map-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #dbeafe;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.map-panel::before {
  display: none;
}

.partner-city-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 100%;
}

.partner-city-map .leaflet-control-attribution {
  font-size: 10px;
}

.city-leaflet-pin {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: linear-gradient(135deg, #00398e, #0b6bd3 62%, #19bfb1);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px 999px 999px 4px;
  box-shadow: 0 12px 26px rgba(0, 29, 79, 0.28);
  transform: rotate(-45deg);
}

.city-leaflet-pin span {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  transform: rotate(45deg);
}

.city-popup {
  min-width: 160px;
}

.city-popup strong,
.city-popup span {
  display: block;
}

.city-popup strong {
  color: var(--blue-900);
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
}

.city-popup span {
  margin-top: 4px;
  color: #334052;
  font-weight: 700;
}

.city-popup a {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 10px;
  color: #fff;
  background: var(--blue-900);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.region-visual {
  position: absolute;
  inset: 28px 28px 116px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
}

.region-visual::before {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -40px;
  width: 260px;
  height: 150px;
  background: url("assets/products-updated/hero-line-argamassas.png") center / contain no-repeat;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.2));
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1px 8px;
  align-items: center;
  min-width: 144px;
  padding: 9px 10px;
  color: var(--blue-900);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

.map-pin svg {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  color: #19bfb1;
}

.map-pin strong,
.map-pin small {
  display: block;
  white-space: nowrap;
}

.map-pin strong {
  text-transform: uppercase;
}

.map-pin small {
  color: #516073;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
}

.map-pin--city-0 {
  left: 36%;
  top: 12%;
  color: #fff;
  background: linear-gradient(135deg, #00398e, #0b6bd3);
}

.map-pin--city-0 svg,
.map-pin--city-0 small {
  color: #fff;
}

.map-pin--city-1 {
  left: 12%;
  top: 28%;
}

.map-pin--city-2 {
  right: 7%;
  top: 25%;
}

.map-pin--city-3 {
  left: 43%;
  top: 45%;
}

.map-pin--city-4 {
  left: 8%;
  top: 58%;
}

.map-pin--city-5 {
  right: 28%;
  top: 62%;
}

.map-pin--city-6 {
  left: 28%;
  top: 78%;
}

.map-pin--city-7 {
  right: 6%;
  top: 78%;
}

.map-panel .route-line {
  position: absolute;
  left: 25%;
  top: 36%;
  width: 56%;
  height: 120px;
  border: 3px dashed rgba(255, 255, 255, 0.72);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 90px 0 0;
}

.region-summary {
  position: absolute;
  left: 46px;
  right: 46px;
  bottom: 34px;
  z-index: 3;
  padding: 18px 20px;
  color: #fff;
  background: rgba(0, 29, 79, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.region-summary strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.region-summary p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.retailer-hero {
  min-height: 470px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 25, 65, 0.94) 0 35%, rgba(0, 25, 65, 0.65) 58%, rgba(0, 25, 65, 0.22) 100%),
    url("assets/products-updated/banner-linha-produtos.png") center / cover no-repeat;
}

.retailer-hero .breadcrumb,
.retailer-hero h1,
.retailer-hero p {
  color: #fff;
}

.retailer-hero h1 {
  max-width: 340px;
}

.retailer-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 0;
}

.retailer-benefits article,
.contact-shortcuts article {
  min-height: 190px;
  padding: 26px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(0, 38, 98, 0.06);
}

.retailer-benefits h3,
.contact-shortcuts h3 {
  margin: 12px 0 10px;
  font-size: 16px;
  font-weight: 900;
}

.retailer-benefits p,
.contact-shortcuts p {
  color: #445063;
  font-size: 13px;
}

.retailer-main {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 34px;
}

.retailer-main > div > p {
  color: #344153;
  font-size: 16px;
}

.contact-panel {
  margin-top: 24px;
  padding: 34px 36px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(12, 103, 199, 0.34), transparent 50%),
    var(--blue-900);
  border-radius: var(--radius);
}

.contact-panel h3 {
  color: #fff;
  font-size: 29px;
  text-transform: uppercase;
}

.contact-panel a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 13px;
  padding: 13px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel a span {
  min-width: 0;
}

.contact-panel a strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
  overflow-wrap: anywhere;
}

.contact-panel svg {
  width: 24px;
  height: 24px;
}

.form-card {
  padding: 34px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(0, 38, 98, 0.08);
}

.form-card h2 {
  margin-bottom: 24px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}

label {
  display: block;
  color: var(--blue-950);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd4df;
  border-radius: 4px;
  outline: 0;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(11, 107, 211, 0.12);
}

.form-card label + label,
.form-card .form-grid + label {
  margin-top: 16px;
}

body.modal-open {
  overflow: hidden;
}

.representative-modal[hidden] {
  display: none;
}

.representative-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.representative-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 17, 46, 0.64);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.representative-panel {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 30px 38px 28px;
  background: #fff;
  border: 1px solid rgba(0, 43, 112, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 18, 48, 0.34);
}

.representative-panel h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
}

.representative-intro {
  max-width: 650px;
  margin: 8px 0 18px;
  color: #344153;
  font-size: 16px;
}

.representative-panel .form-grid {
  gap: 10px 18px;
}

.representative-panel input,
.representative-panel select,
.representative-panel textarea {
  padding: 11px 13px;
}

.representative-panel textarea {
  min-height: 88px;
}

.representative-panel .form-grid + label {
  margin-top: 16px;
}

.representative-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: var(--blue-900);
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: 5px;
  cursor: pointer;
}

.representative-close svg {
  width: 20px;
  height: 20px;
}

.form-feedback {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--blue-900);
  font-weight: 700;
}

.privacy-note {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #5a6472;
  font-size: 12px;
}

.privacy-note svg {
  width: 20px;
  height: 20px;
  color: var(--blue-900);
}

.form-feedback {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--blue-900);
  font-weight: 700;
}

.contact-hero {
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.98) 0 42%, rgba(247, 248, 250, 0.56) 62%, rgba(247, 248, 250, 0.16) 100%),
    url("assets/official/home-3f87.jpg") right center / 55% auto no-repeat,
    #eef1f4;
}

.contact-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

.contact-shortcuts article {
  text-align: left;
  padding: 30px 30px;
}

.contact-shortcuts h3 {
  color: var(--blue-950);
  font-size: 18px;
  text-transform: uppercase;
}

.contact-shortcuts .btn {
  width: 100%;
  margin-top: 16px;
  min-height: 42px;
  font-size: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 22px;
}

.contact-info {
  padding: 34px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(0, 38, 98, 0.08);
}

.contact-info article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  margin: 22px 0;
}

.contact-info article svg {
  width: 52px;
  height: 52px;
  padding: 12px;
  color: var(--blue-900);
  background: #eef2f7;
  border-radius: 50%;
}

.contact-info article span {
  color: #596273;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info article strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.35;
  text-transform: none;
  overflow-wrap: anywhere;
}

.hours-card {
  margin-top: 26px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(13, 99, 194, 0.28), transparent 48%),
    var(--blue-900);
  border-radius: var(--radius);
}

.hours-card svg {
  width: 62px;
  height: 62px;
  padding: 14px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
}

.hours-card h3 {
  margin: 12px 0 16px;
  color: #fff;
  font-size: 19px;
  text-align: center;
  text-transform: uppercase;
}

.hours-card p {
  color: #fff;
}

.bottom-cta {
  color: #fff;
  background: linear-gradient(90deg, #00245f, #003c8e);
}

.bottom-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
}

.bottom-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.bottom-cta p {
  margin: 4px 0 0;
}

.site-footer {
  color: #fff;
  background:
    linear-gradient(140deg, rgba(0, 106, 212, 0.18), transparent 36%),
    linear-gradient(180deg, #002f78, #001638);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.8fr 0.9fr 1.25fr 1fr;
  gap: 44px;
  padding: 38px 0 32px;
}

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

.footer-brand p,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  font-size: 13px;
}

.site-footer p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 9px 0;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.footer-actions a {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 7px 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
  font-size: 12px;
}

.floating-whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 70;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  overflow: visible;
  transition: transform 180ms ease;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  stroke-width: 2.35;
  filter: drop-shadow(0 6px 12px rgba(0, 18, 54, 0.28));
}

.floating-whatsapp .whatsapp-logo-badge {
  position: relative;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow:
    0 12px 28px rgba(18, 140, 126, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: whatsappLogoPulse 1.75s ease-in-out infinite;
}

.floating-whatsapp .whatsapp-logo {
  width: 35px;
  height: 35px;
  stroke: none;
  filter: drop-shadow(0 3px 6px rgba(0, 50, 46, 0.2));
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(11, 107, 211, 0.28);
  outline-offset: 5px;
}

@keyframes whatsappLogoPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 12px 28px rgba(18, 140, 126, 0.34),
      0 0 0 0 rgba(37, 211, 102, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  50% {
    transform: scale(1.08);
    box-shadow:
      0 14px 30px rgba(18, 140, 126, 0.38),
      0 0 0 10px rgba(37, 211, 102, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }

  100% {
    transform: scale(1);
    box-shadow:
      0 12px 28px rgba(18, 140, 126, 0.34),
      0 0 0 0 rgba(37, 211, 102, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

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

  .header-inner {
    grid-template-columns: 170px minmax(0, 1fr) 170px;
    gap: 14px;
  }

  .site-nav a {
    padding: 0 8px;
    font-size: 10px;
  }

  .whatsapp-cta {
    padding: 0 10px;
    font-size: 10.5px;
  }

  .header-actions {
    gap: 8px;
  }

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

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

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

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

  .site-header .container {
    width: min(100% - 34px, var(--container));
  }

  .site-header,
  .header-inner {
    height: auto;
    min-height: 66px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 10px 0;
  }

  .brand img {
    width: 170px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--blue-900);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 5px;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0 4px;
  }

  .site-nav a::after {
    left: 0;
    right: 0;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header-actions .whatsapp-cta {
    width: 100%;
  }

  .header-actions .representative-cta {
    display: none;
  }

  .hero-grid,
  .catalog-hero-grid,
  .retailer-main,
  .contact-layout,
  .location-layout,
  .home-product-layout,
  .split-band,
  .download-band {
    grid-template-columns: 1fr;
  }

  .contact-layout,
  .location-layout {
    margin-left: auto;
    margin-right: auto;
  }

  .sub-hero .container,
  .contact-hero .container,
  .retailer-hero .container {
    text-align: center;
  }

  .sub-hero h1,
  .contact-hero h1,
  .retailer-hero h1,
  .sub-hero p,
  .contact-hero p,
  .retailer-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-grid,
  .hero-copy,
  .hero-stage {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .home-hero .hero-grid {
    width: min(100% - 34px, var(--container));
    padding-right: 0;
    padding-left: 0;
  }

  .hero-copy {
    padding: 44px 0 24px;
  }

  .hero-stage {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    overflow: hidden;
    min-height: 270px;
  }

  .hero-slide-bg {
    width: 100%;
    right: 0;
    height: 270px;
    clip-path: none;
  }

  .hero-slide::before {
    width: 100%;
    height: 270px;
  }

  .hero-products {
    left: 0;
    right: 0;
    width: 100%;
    height: 140px;
  }

  .hero-products-wide {
    height: 180px;
  }

  .hero-products-line {
    height: 140px;
  }

  .hero-product-stack {
    right: 16px;
    bottom: 28px;
    width: min(330px, 68%);
  }

  .hero-product-stack img {
    max-height: 138px;
  }

  .hero-product-stack--selantes {
    width: min(240px, 52%);
  }

  .hero-product-stack--selantes img {
    max-height: 142px;
  }

  .hero-dots {
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
  }

  .metrics,
  .retailer-benefits,
  .why-grid,
  .solution-grid,
  .product-tabs {
    grid-template-columns: 1fr;
  }

  .metrics {
    height: auto;
  }

  .metrics article,
  .why-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics article:last-child,
  .why-grid article:last-child {
    border-bottom: 0;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-trigger {
    grid-template-columns: 120px 1fr;
  }

  .product-grid,
  .catalog-grid,
  .material-grid,
  .contact-shortcuts {
    grid-template-columns: 1fr;
  }

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

  .blue-panel {
    min-height: 460px;
  }

  .contact-shortcuts {
    margin-top: 32px;
    margin-bottom: 28px;
  }

  .contact-shortcuts article {
    min-height: 0;
    text-align: center;
  }

  .map-panel {
    order: -1;
    min-height: 430px;
  }

  .location-layout {
    gap: 18px;
  }

  .location-card {
    padding: 22px;
    box-shadow: none;
  }

  .location-card h2 {
    text-align: center;
  }

  .city-filter-list {
    max-height: 280px;
    padding-right: 0;
  }

  .region-visual {
    inset: 24px 24px 150px;
  }

  .region-visual::before {
    width: 220px;
    right: 8px;
  }

  .map-pin {
    min-width: 152px;
    grid-template-columns: 24px 1fr;
    gap: 1px 8px;
    padding: 9px 10px;
    font-size: 10.5px;
  }

  .map-pin svg {
    width: 24px;
    height: 24px;
  }

  .map-pin small {
    font-size: 11px;
  }

  .region-summary {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .form-grid,
  .bottom-cta .container,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .bottom-cta .container {
    gap: 12px;
    padding: 26px 0;
    text-align: center;
  }

  .bottom-cta .btn {
    width: 100%;
  }

  .split-band > div,
  .form-card,
  .contact-info {
    padding: 28px 22px;
  }

  .contact-info article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .header-actions {
    gap: 8px;
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
  }

  .header-actions .whatsapp-cta {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    padding: 0 6px;
    gap: 5px;
    font-size: 9px;
    line-height: 1;
    white-space: normal;
    text-align: center;
  }

  .header-actions .whatsapp-cta span {
    white-space: normal;
  }

  .header-actions .whatsapp-cta svg {
    width: 16px;
    height: 16px;
  }

  .representative-modal {
    padding: 12px;
  }

  .representative-panel {
    padding: 28px 18px 24px;
  }

  .representative-close {
    top: 12px;
    right: 12px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }

  .floating-whatsapp .whatsapp-logo-badge {
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp .whatsapp-logo {
    width: 31px;
    height: 31px;
  }

  .map-panel {
    min-height: 420px;
  }

  .contact-hero,
  .sub-hero,
  .retailer-hero {
    min-height: 260px;
  }

  .contact-hero {
    background: linear-gradient(180deg, rgba(247, 248, 250, 0.98), rgba(247, 248, 250, 0.9)), #eef1f4;
  }

  .contact-shortcuts {
    margin-top: 22px;
  }

  .contact-shortcuts article {
    padding: 22px 18px;
  }

  .contact-info article {
    grid-template-columns: 42px minmax(0, 1fr);
    margin: 16px 0;
  }

  .contact-info article svg {
    width: 42px;
    height: 42px;
    padding: 10px;
  }

  .form-card,
  .contact-info,
  .location-card,
  .contact-panel {
    padding: 22px 16px;
  }

  .form-card h2,
  .contact-panel h3 {
    font-size: 24px;
  }

  .contact-panel a {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: flex-start;
  }

  .contact-panel a strong {
    font-size: 11.5px;
    line-height: 1.25;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .city-search {
    grid-template-columns: 20px minmax(0, 1fr);
    padding: 10px;
  }

  .city-filter-list {
    max-height: 250px;
  }

  .partner-locations article,
  .partner-locations button {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .partner-locations span,
  .city-filter-list span {
    white-space: normal;
  }

  .region-visual {
    inset: 18px 18px 188px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 8px;
    overflow: auto;
  }

  .region-visual::before {
    display: none;
  }

  .map-pin {
    position: static;
    min-width: 0;
    max-width: none;
    padding: 8px;
  }

  .map-pin strong,
  .map-pin small {
    white-space: normal;
  }

  .map-panel .route-line {
    display: none;
  }

  .hero-copy h1,
  .sub-hero h1,
  .contact-hero h1,
  .retailer-hero h1 {
    font-size: 36px;
  }

  .sub-hero p,
  .contact-hero p,
  .retailer-hero p {
    font-size: 18px;
  }

  .hero-copy p:not(.eyebrow) {
    width: 100%;
    max-width: 320px;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-product-stack {
    left: 64%;
    right: auto;
    bottom: 30px;
    width: min(220px, 56vw);
    transform: translateX(-50%);
  }

  .hero-product-stack img {
    max-height: 102px;
  }

  .hero-product-stack--selantes {
    width: min(166px, 43vw);
  }

  .hero-product-stack--selantes img {
    max-height: 108px;
  }

  .solution-card {
    grid-template-columns: 1fr;
  }

  .solution-trigger {
    grid-template-columns: 1fr;
  }

  .solution-trigger img {
    height: 150px;
  }

  .solution-details {
    padding: 24px;
  }

  .region-label {
    font-size: 10px;
    padding: 8px 9px;
  }

  .region-label.west {
    left: 4%;
  }

  .region-label.east {
    right: 4%;
  }

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

  .product-card {
    min-height: auto;
  }

  .help-callout {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

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

  .floating-whatsapp .whatsapp-logo-badge {
    animation: none;
  }
}
