:root {
  --color-bg: #f4f2ea;
  --color-bg-deep: #ece7db;
  --color-surface: rgba(255, 255, 255, 0.76);
  --color-surface-strong: #ffffff;
  --color-panel: #111111;
  --color-panel-soft: #1f1f1f;
  --color-ink: #101010;
  --color-muted: #575757;
  --color-line: rgba(16, 16, 16, 0.08);
  --color-primary: #1c78ff;
  --color-primary-deep: #0d4fb4;
  --color-whatsapp: #1f8e57;
  --color-whatsapp-deep: #166840;
  --color-accent: #f4c46e;
  --shadow-soft: 0 14px 30px rgba(16, 16, 16, 0.06);
  --shadow-card: 0 24px 60px rgba(16, 16, 16, 0.09);
  --shadow-deep: 0 30px 80px rgba(16, 16, 16, 0.16);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(28, 120, 255, 0.12), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(244, 196, 110, 0.24), transparent 28%),
    linear-gradient(180deg, #fbfaf6 0%, var(--color-bg) 38%, var(--color-bg-deep) 100%);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 340px;
  height: 340px;
  top: 90px;
  left: -80px;
  background: rgba(28, 120, 255, 0.14);
}

body::after {
  width: 280px;
  height: 280px;
  right: -70px;
  top: 240px;
  background: rgba(244, 196, 110, 0.18);
}

img {
  max-width: 100%;
  display: block;
}

img[data-protected-image="true"] {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(28, 120, 255, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -52px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: #fff;
  z-index: 60;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 40px 0 10px;
}

.section-header {
  max-width: 740px;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 9px 16px;
  border: 1px solid rgba(28, 120, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-primary-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #f7f7f7;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.24rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 16px;
  color: var(--color-muted);
}

.lead {
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  max-width: 56ch;
}

.muted,
.footer-note {
  color: #676767;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, #29a363 0%, var(--color-whatsapp) 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(31, 142, 87, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #229154 0%, var(--color-whatsapp-deep) 100%);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink);
  border-color: rgba(16, 16, 16, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.96);
}

.button-text {
  min-height: auto;
  padding: 0;
  color: var(--color-primary-deep);
  border-radius: 0;
  background: transparent;
}

.button-inline-whatsapp {
  gap: 9px;
  align-items: center;
  font-weight: 800;
  color: var(--color-primary-deep);
}

.button-inline-whatsapp:hover,
.button-inline-whatsapp:focus-visible {
  color: var(--color-whatsapp-deep);
}

.inline-whatsapp-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  filter: drop-shadow(0 6px 12px rgba(31, 142, 87, 0.2));
}

.inline-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.inline-whatsapp-label {
  line-height: 1.1;
}

.button-block {
  width: 100%;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-shell {
  background: rgba(251, 250, 246, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 16, 16, 0.05);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 4px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.header-shell .brand-header {
  gap: 0;
}

.header-shell .brand-logo {
  width: 108px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.header-shell .brand-header,
.footer-shell .brand-footer {
  gap: 0;
}

.footer-shell .brand-footer img {
  width: 136px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.visual-logo-card img {
  width: 104px;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.nav-desktop {
  margin-left: 0;
  justify-self: center;
}

.nav-list,
.footer-links,
.coverage-list,
.benefits-list,
.mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
}

.nav-list a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 9px;
  color: #585858;
  border-radius: var(--radius-pill);
}

.nav-list a {
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.72);
}

.nav-list a[aria-current="page"],
.mobile-list a[aria-current="page"] {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.header-actions .button,
.menu-toggle {
  min-height: 36px;
}

.menu-toggle {
  display: none;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.mobile-menu {
  background: rgba(16, 16, 16, 0.96);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-inner {
  display: grid;
  gap: 18px;
  padding: 18px 0 24px;
}

.mobile-list {
  display: grid;
  gap: 10px;
}

.mobile-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
}

.hero {
  position: relative;
  padding: 44px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.highlight-panel,
.cta-panel,
.coverage-panel,
.page-hero-card,
.card,
.step-card,
.coverage-map {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.hero-copy,
.page-hero-card,
.card,
.step-card,
.coverage-panel,
.coverage-map {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.74) 100%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: 38px;
  min-height: 100%;
}

.hero-copy::before,
.page-hero-card::before,
.card::before,
.step-card::before,
.coverage-panel::before,
.coverage-map::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(28, 120, 255, 0.08), rgba(255, 255, 255, 0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(16, 16, 16, 0.05);
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-microcopy span::before,
.benefit-chip::before,
.coverage-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1fb15b, #157341);
  box-shadow: 0 0 0 5px rgba(31, 177, 91, 0.12);
}

.hero-visual {
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(244, 196, 110, 0.4), transparent 16%),
    linear-gradient(135deg, #0f1117 0%, #122548 56%, #0d5be0 100%);
  min-height: 100%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
}

.visual-logo-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}



.visual-logo-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.visual-logo-card p {
  color: rgba(255, 255, 255, 0.78);
}

.visual-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.hero-single-media {
  margin: 18px 0 0;
  min-height: 380px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 44px rgba(7, 12, 22, 0.22);
}

.hero-single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-stat {
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.visual-stat p {
  color: rgba(255, 255, 255, 0.78);
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 16, 16, 0.05);
  box-shadow: var(--shadow-soft);
  color: var(--color-ink);
  font-weight: 800;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.home-visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.visual-feature {
  display: grid;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: var(--shadow-card);
}

.visual-feature-large {
  grid-row: span 2;
}

.visual-feature-media {
  margin: 0;
  min-height: 260px;
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.9), rgba(235, 238, 244, 0.92));
}

.visual-feature-large .visual-feature-media {
  min-height: 100%;
}

.visual-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visual-feature-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.visual-feature-body h3 {
  margin-bottom: 0;
}

.visual-feature-body p {
  margin-bottom: 0;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.step-card,
.coverage-panel,
.coverage-map,
.page-hero-card {
  padding: 28px;
}

.card:hover,
.step-card:hover,
.coverage-panel:hover,
.coverage-map:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}

.card > *:last-child,
.step-card > *:last-child,
.coverage-panel > *:last-child,
.coverage-map > *:last-child,
.page-hero-card > *:last-child {
  margin-bottom: 0;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 120, 255, 0.12), rgba(28, 120, 255, 0.06));
  color: var(--color-primary-deep);
  font-weight: 800;
}

.highlight-panel,
.cta-panel {
  overflow: hidden;
  padding: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 196, 110, 0.22), transparent 24%),
    radial-gradient(circle at 100% 20%, rgba(28, 120, 255, 0.26), transparent 26%),
    linear-gradient(135deg, #0f1115 0%, #181d27 46%, #101010 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-panel::after,
.cta-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -60px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

.highlight-panel p,
.cta-panel p,
.hero-visual p {
  color: rgba(255, 255, 255, 0.82);
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.coverage-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(28, 120, 255, 0.08);
  color: var(--color-primary-deep);
  font-weight: 800;
}

.coverage-map {
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 196, 110, 0.25), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 243, 234, 0.82));
}

.coverage-map strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.testimonials-empty {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(6, 12, 24, 0.18);
}

.testimonial-meta {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(24, 72, 155, 0.08);
  color: var(--color-primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-quote {
  margin-bottom: 18px;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  display: inline-flex;
  color: var(--color-primary-deep);
  font-size: 1rem;
}

.highlight-panel .testimonial-card {
  background: rgba(255, 255, 255, 0.96);
}

.highlight-panel .testimonial-meta {
  color: var(--color-primary-deep);
}

.highlight-panel .testimonial-quote {
  color: var(--color-ink);
}

.highlight-panel .testimonial-author {
  color: var(--color-primary-deep);
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.product-page-hero {
  padding-bottom: 8px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #5e6673;
  font-size: 0.92rem;
}

.breadcrumb-link {
  color: var(--color-primary-deep);
  font-weight: 700;
}

.breadcrumb-separator {
  color: #9097a2;
}

.breadcrumb-current {
  color: var(--color-ink);
  font-weight: 800;
}

.product-hero-grid,
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 22px;
}

.product-gallery-shell,
.product-panel,
.product-copy-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: var(--shadow-card);
}

.product-main-media,
.product-thumb-media {
  margin: 0;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.96), rgba(239, 242, 247, 0.94));
}

.product-main-media {
  min-height: 520px;
}

.product-main-media img,
.product-thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}

.product-thumb-media {
  min-height: 210px;
  border-radius: 22px;
}

.product-summary {
  padding: 30px;
}

.product-price-wrap {
  display: inline-grid;
  gap: 4px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(39, 196, 106, 0.12), rgba(21, 141, 72, 0.08));
  border: 1px solid rgba(21, 141, 72, 0.16);
}

.product-price-label {
  color: #2b6b45;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-price-value {
  color: #0f7d40;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
}

.product-intro-copy {
  display: grid;
  gap: 10px;
}

.product-intro-copy p {
  margin-bottom: 0;
}

.product-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(24, 72, 155, 0.08);
  color: var(--color-primary-deep);
  font-weight: 800;
}

.product-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.product-stat {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.03), rgba(16, 16, 16, 0.015));
  border: 1px solid rgba(16, 16, 16, 0.05);
}

.product-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.35rem;
  color: var(--color-ink);
}

.product-stat span {
  color: var(--color-muted);
  font-weight: 700;
}

.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.product-delivery-note {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(24, 72, 155, 0.06);
  color: var(--color-primary-deep);
  font-weight: 700;
}

.product-benefit-card {
  min-height: 100%;
}

.product-panel,
.product-copy-card {
  padding: 28px;
}

.catalog-spotlight-grid {
  display: grid;
  gap: 18px;
}

.catalog-spotlight-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 16, 16, 0.06);
  box-shadow: var(--shadow-card);
}

.catalog-spotlight-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
  background: linear-gradient(180deg, rgba(247, 248, 250, 0.96), rgba(239, 242, 247, 0.94));
}

.catalog-spotlight-media img {
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
}

.catalog-spotlight-media.is-natural-shot {
  padding: 16px;
}

.catalog-spotlight-media.is-natural-shot img {
  width: 100%;
  max-width: none;
  height: 320px;
  object-fit: cover;
  object-position: center center;
  border-radius: 24px;
}

.catalog-spotlight-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
}

.catalog-spotlight-body h2,
.catalog-spotlight-body h3 {
  margin-bottom: 0;
}

.catalog-spotlight-copy {
  margin-bottom: 0;
}

.catalog-spotlight-price {
  margin-top: 0;
  justify-self: start;
}

.catalog-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-fact-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.product-fact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.product-fact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-fact-row dt {
  color: var(--color-muted);
  font-weight: 700;
}

.product-fact-row dd {
  margin: 0;
  color: var(--color-ink);
  font-weight: 800;
  text-align: right;
}

.product-inline-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.product-inline-list li {
  color: var(--color-ink);
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.product-table th,
.product-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.product-table th {
  color: var(--color-primary-deep);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.transition-card .step-index {
  width: auto;
  min-width: 110px;
  padding: 0 16px;
  font-size: 0.94rem;
}

.page-hero {
  padding: 44px 0 18px;
}

body[data-page="catalogo"] .page-hero {
  padding-bottom: 8px;
}

body[data-page="catalogo"] .section-tight {
  padding-top: 16px;
}

.footer-shell {
  margin-top: 26px;
  padding: 38px 0 130px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.98), rgba(22, 22, 22, 0.96));
  color: #f2f2f2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-title {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-link-button {
  color: #fff;
}

.footer-copy {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer-note {
  color: rgba(255, 255, 255, 0.52);
}

#floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 98px;
  z-index: 35;
}

.floating-whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 14px 10px 10px;
  border-radius: 24px;
  background: rgba(16, 16, 16, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 46px rgba(16, 16, 16, 0.24);
  backdrop-filter: blur(18px);
}

.floating-whatsapp-button:hover,
.floating-whatsapp-button:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

.floating-whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
}

.floating-whatsapp-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.floating-whatsapp-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-whatsapp-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.floating-whatsapp-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

#sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 34;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(16, 16, 16, 0.08);
}

#sticky-mobile-cta .button {
  min-height: 54px;
}

@media (max-width: 1240px) {
  .nav-desktop,
  .header-secondary {
    display: none;
  }

  .menu-toggle,
  #sticky-mobile-cta {
    display: block;
  }

  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .product-hero-grid,
  .product-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section,
  .hero {
    padding: 62px 0;
  }

  .header-inner {
    min-height: 54px;
  }

  .brand img {
    width: 58px;
  }

  .header-shell .brand-logo {
    width: 90px;
  }

  .brand-text span {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .home-visual-grid,
  .product-hero-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .visual-feature-large {
    grid-row: auto;
  }

  .product-main-media {
    min-height: 320px;
  }

  .product-thumb-grid,
  .product-stat-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .catalog-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .catalog-spotlight-card {
    grid-template-columns: 1fr;
  }

  .catalog-spotlight-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy,
  .hero-visual,
  .highlight-panel,
  .cta-panel,
  .coverage-panel,
  .coverage-map,
  .page-hero-card,
  .card,
  .step-card {
    padding: 24px;
  }

  .hero-actions,
  .card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-single-media {
    min-height: 260px;
  }

  .floating-whatsapp-button {
    min-height: 58px;
    padding: 8px 12px 8px 8px;
    border-radius: 20px;
  }

  .floating-whatsapp-copy span {
    display: none;
  }

  .floating-whatsapp-icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }

  #floating-whatsapp {
    right: 12px;
    bottom: 92px;
  }
}


























