:root {
  --navy: #08213d;
  --blue: #006ca8;
  --cyan: #09b8dd;
  --aqua: #70e7f2;
  --lime: #c9f04f;
  --ink: #122033;
  --muted: #5a6a7f;
  --line: #dbe9ef;
  --soft: #f2fbfd;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 33, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 130px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

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

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

.brand-word {
  color: #006ca8;
  font-weight: 900;
  text-transform: lowercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 233, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.75rem, 2.55vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--cyan);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  min-height: calc(82vh - 78px);
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(247, 253, 255, 0.96) 0%, rgba(235, 250, 253, 0.9) 45%, rgba(235, 250, 253, 0.46) 70%, rgba(235, 250, 253, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 33, 61, 0.18)),
    url("assets/galeria-piscina-01.jpeg") center / cover no-repeat;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 15ch;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.35rem;
}

.hero-copy,
.section-heading p,
.feature-copy p,
.contact-copy p,
.process-list p,
.service-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: 1.16rem;
}

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

.hero-search {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 233, 239, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(8, 33, 61, 0.1);
}

.hero-search label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hero-search input {
  min-height: 50px;
  background: var(--white);
}

.hero-search button {
  min-height: 50px;
  padding: 0 20px;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 108, 168, 0.25);
}

.button.primary:hover {
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.light {
  width: fit-content;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.18);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.commerce-section,
.home-featured-products,
.brands-section,
.local-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

.commerce-section {
  background: var(--soft);
}

.commerce-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  max-width: none;
}

.commerce-heading div {
  max-width: 820px;
}

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

.category-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  border-color: rgba(9, 184, 221, 0.7);
  box-shadow: 0 20px 46px rgba(8, 33, 61, 0.12);
  transform: translateY(-3px);
}

.category-card span {
  width: fit-content;
  padding: 8px 10px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.category-card h3,
.category-card p {
  margin-bottom: 0;
}

.category-card p {
  color: var(--muted);
  line-height: 1.55;
}

.category-card.featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.88), rgba(0, 108, 168, 0.74)),
    url("assets/galeria-piscina-04.jpeg") center / cover no-repeat;
}

.category-card.featured h3,
.category-card.featured p {
  color: var(--white);
}

.home-featured-products {
  background: var(--white);
}

.featured-product-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-product-media {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.04), rgba(9, 184, 221, 0.11)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-product-media img {
  width: min(100%, 420px);
  max-height: 300px;
  object-fit: contain;
}

.featured-product-copy {
  display: grid;
  gap: 14px;
}

.featured-product-copy span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lime);
  border-radius: 8px;
}

.featured-product-copy h3 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.featured-product-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--white);
}

.subpage-hero {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 78% 12%, rgba(112, 231, 242, 0.28), transparent 28%),
    linear-gradient(135deg, #f7fdff 0%, #dff8fd 54%, #ffffff 100%);
}

.subpage-hero.compact {
  padding-bottom: clamp(42px, 6vw, 78px);
}

.subpage-hero h1 {
  max-width: 13ch;
}

.subpage-hero p {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.about-copy {
  max-width: 850px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.about-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.about-details div {
  padding: 22px;
  background: var(--soft);
}

.about-details span,
.about-details strong {
  display: block;
}

.about-details span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-details strong {
  color: var(--navy);
  line-height: 1.45;
}

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

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

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.brands-section {
  background: var(--soft);
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.brand-strip span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 33, 61, 0.06);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.95), rgba(0, 108, 168, 0.92)),
    url("assets/aquaflass-logo.jpeg") center/cover;
}

.feature-band .eyebrow,
.feature-band h2,
.feature-band p {
  color: var(--white);
}

.button.primary .brand-word,
.feature-band .brand-word,
.contact-section .brand-word,
.site-footer .brand-word {
  color: inherit;
}

.feature-band p {
  opacity: 0.88;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--lime);
  font-weight: 800;
}

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

.product-list span {
  min-height: 66px;
  padding: 20px;
  color: var(--navy);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border-left: 5px solid var(--lime);
  border-radius: 8px;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  background: var(--white);
}

.local-copy {
  max-width: 800px;
}

.local-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.local-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.local-facts span {
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 800;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.map-card .button {
  width: fit-content;
}

.map-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--soft);
}

.wide-map iframe {
  min-height: 460px;
}

.product-catalog-section {
  background: var(--soft);
}

.catalog-hero,
.store-hero {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 78% 12%, rgba(112, 231, 242, 0.28), transparent 28%),
    linear-gradient(135deg, #f7fdff 0%, #dff8fd 54%, #ffffff 100%);
}

.catalog-hero div,
.store-hero div {
  max-width: 780px;
}

.catalog-hero h1,
.store-hero h1 {
  max-width: 13ch;
}

.catalog-hero p,
.store-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.store-section {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 80px) clamp(62px, 8vw, 112px);
  background: var(--soft);
}

.store-filters {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.product-search-wrap {
  position: relative;
}

.product-suggestions {
  position: absolute;
  z-index: 20;
  right: 0;
  left: 0;
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 33, 61, 0.16);
}

.product-suggestions[hidden] {
  display: none !important;
}

.product-suggestion {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  color: var(--navy);
  border-radius: 8px;
}

.product-suggestion:hover {
  background: var(--soft);
}

.product-suggestion img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-suggestion span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.product-suggestion small {
  overflow: hidden;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-suggestion strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-note {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-note strong {
  color: var(--navy);
}

.filter-note span {
  color: var(--muted);
  line-height: 1.45;
}

.store-results {
  min-width: 0;
}

.store-toolbar {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.store-toolbar h2 {
  margin-bottom: 0;
}

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

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

.store-product-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-product-card[hidden],
.no-results[hidden] {
  display: none !important;
}

.store-product-card:hover {
  border-color: rgba(9, 184, 221, 0.7);
  box-shadow: 0 20px 46px rgba(8, 33, 61, 0.12);
  transform: translateY(-3px);
}

.store-product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.04), rgba(9, 184, 221, 0.11)),
    var(--soft);
}

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

.store-product-media-cover {
  min-height: 260px;
  padding: 0;
  background: #f7fbff;
  overflow: hidden;
}

.store-product-media-cover img {
  width: 100%;
  height: 260px;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.store-product-copy {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.store-product-copy span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-product-copy h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.store-product-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.store-product-copy strong {
  color: var(--blue);
}

.no-results {
  padding: 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.store-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.store-pagination[hidden] {
  display: none !important;
}

.store-pagination button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.store-pagination button:hover:not(:disabled),
.store-pagination button.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.store-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.product-page-section {
  background: var(--soft);
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 900;
}

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

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  margin-bottom: 24px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(8, 33, 61, 0.09);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.06), rgba(9, 184, 221, 0.12)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-media img {
  width: min(100%, 420px);
  max-height: 360px;
  object-fit: contain;
}

.product-media-cover {
  min-height: 460px;
  padding: 0;
  background: #f7fbff;
  overflow: hidden;
}

.product-media-cover img {
  width: 100%;
  height: 460px;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.product-detail-copy {
  display: grid;
  gap: 14px;
}

.product-category {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.product-detail-copy p,
.product-detail-copy li {
  color: var(--muted);
  line-height: 1.62;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 4px 0 10px;
}

.product-specs div {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-specs h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1rem;
}

.product-specs ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.catalog-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.catalog-card span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.catalog-card p {
  color: var(--muted);
  line-height: 1.6;
}

.catalog-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.process-section {
  background: var(--soft);
}

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list div {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 24px;
  padding: 26px;
  background: var(--white);
}

.process-list strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.process-list p {
  margin-bottom: 0;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.calculator-hero h1 {
  max-width: 12ch;
}

.calculator-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f2fbfd 100%);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.68fr);
  gap: 20px;
  align-items: stretch;
}

.calculator-panel,
.calculator-results,
.recommendation-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(8, 33, 61, 0.08);
}

.calculator-panel {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
}

.calculator-panel h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.calculator-panel p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}

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

.calculator-panel label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.calculator-wide-field {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calculator-hint {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calculator-results {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.98), rgba(0, 108, 168, 0.94));
}

.calculator-results .eyebrow,
.calculator-results strong {
  color: var(--white);
}

.result-number strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.result-number span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 800;
}

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

.result-item {
  display: grid;
  gap: 8px;
  min-height: 145px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.result-item span,
.result-item small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.result-item strong {
  font-size: 1.5rem;
}

.calculator-results .button.primary {
  justify-content: center;
  color: var(--navy);
  background: var(--lime);
}

.calculator-recommendations {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.8fr));
  gap: 18px;
  margin-top: 18px;
}

.recommendation-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
}

.recommendation-card-main {
  grid-column: span 2;
  background: var(--soft);
}

.recommendation-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommendation-card h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
}

.recommendation-card h3 {
  margin-bottom: 0;
}

.recommendation-card p,
.recommendation-card li {
  color: var(--muted);
  line-height: 1.65;
}

.dosage-card {
  grid-column: 1 / -1;
}

.dosage-options {
  display: grid;
  gap: 18px;
}

.dosage-options > p {
  margin-bottom: 0;
}

.dosage-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dosage-option-group {
  display: grid;
  gap: 12px;
}

.dosage-option-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.dosage-option-title span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dosage-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dosage-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dosage-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.dosage-table caption {
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.dosage-table th,
.dosage-table td {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dosage-table th:last-child,
.dosage-table td:last-child {
  border-right: 0;
}

.dosage-table tr:last-child td {
  border-bottom: 0;
}

.dosage-table th {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dosage-table td:first-child {
  color: var(--navy);
  font-weight: 800;
}

.equipment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.equipment-links a {
  padding: 10px 12px;
  color: var(--navy);
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.equipment-links a:hover,
.text-link:hover {
  color: var(--blue);
}

.mini-product-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.text-link {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
}

.gallery-section {
  background: var(--soft);
}

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

.gallery-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--soft);
}

.gallery-card.wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.gallery-card.wide img {
  height: 420px;
}

.gallery-card div {
  padding: 22px;
}

.gallery-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card p {
  color: var(--muted);
  line-height: 1.6;
}

.gallery-section-more {
  padding-top: 0;
}

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

.gallery-photo-tile {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.gallery-photo-tile.wide {
  grid-column: span 2;
}

.gallery-photo-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-photo-tile.tall img {
  height: 340px;
}

.gallery-photo-tile figcaption {
  padding: 14px 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--navy);
}

.standalone-contact {
  padding-top: clamp(48px, 6vw, 86px);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  opacity: 0.82;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  width: fit-content;
  color: var(--aqua);
  font-weight: 800;
}

.contact-links span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(9, 184, 221, 0.14);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 80px);
  color: var(--white);
  background: #06182c;
}

.rich-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(150px, 0.72fr));
  gap: 28px;
  align-items: start;
}

.rich-footer div {
  display: grid;
  gap: 8px;
}

.rich-footer strong {
  color: var(--white);
  font-size: 1rem;
}

.rich-footer span,
.rich-footer a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.rich-footer a {
  width: fit-content;
  font-weight: 800;
}

.rich-footer a:hover {
  color: var(--aqua);
}

.footer-socials {
  display: grid;
  gap: 8px;
}

.footer-socials strong {
  color: var(--white);
}

.footer-social-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  padding: 4px;
  color: var(--white);
  fill: currentColor;
  background: linear-gradient(135deg, #405de6 0%, #c13584 45%, #fd1d1d 72%, #fcb045 100%);
  border-radius: 8px;
}

.footer-social-link.facebook-link svg {
  background: #1877f2;
}

.footer-social-link:hover {
  color: var(--aqua);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #0aa84f;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(8, 33, 61, 0.22);
}

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

.floating-whatsapp:hover {
  background: #087f3e;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 94px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .about-section,
  .catalog-hero,
  .store-hero,
  .feature-band,
  .local-section,
  .featured-product-card,
  .contact-section,
  .product-detail-card,
  .calculator-layout,
  .calculator-recommendations {
    grid-template-columns: 1fr;
  }

  .store-section {
    grid-template-columns: 1fr;
  }

  .store-filters {
    position: static;
  }

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

  .hero {
    min-height: calc(82vh - 70px);
    background:
      linear-gradient(180deg, rgba(247, 253, 255, 0.96) 0%, rgba(235, 250, 253, 0.88) 52%, rgba(235, 250, 253, 0.32) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 33, 61, 0.18)),
      url("assets/galeria-piscina-01.jpeg") center bottom / cover no-repeat;
  }

  h1 {
    max-width: 15ch;
  }

  .trust-strip,
  .service-grid,
  .gallery-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

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

  .commerce-heading {
    align-items: start;
    flex-direction: column;
  }

  .brand-strip,
  .rich-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .gallery-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-photo-tile.wide {
    grid-column: span 2;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .calculator-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommendation-card-main {
    grid-column: auto;
  }

  .dosage-table-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand span {
    font-size: 1.42rem;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .site-nav {
    top: 78px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-search {
    padding: 12px;
  }

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

  .hero-search button {
    width: 100%;
  }

  .catalog-hero,
  .store-hero {
    align-items: stretch;
  }

  .brand-strip,
  .rich-footer {
    grid-template-columns: 1fr;
  }

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

  .gallery-photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-photo-tile.wide {
    grid-column: auto;
  }

  .gallery-photo-tile img,
  .gallery-photo-tile.tall img {
    height: 250px;
  }

  .featured-product-media {
    min-height: 260px;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .map-card .button {
    width: 100%;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .store-toolbar {
    align-items: start;
    flex-direction: column;
  }

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

  .product-media {
    min-height: 260px;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .calculator-field-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 14px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp {
    bottom: 14px;
  }
}
