:root {
  --bg: #edf1f6;
  --surface: #ffffff;
  --surface-strong: #dfe8f4;
  --ink: #091326;
  --ink-soft: #506178;
  --line: rgba(9, 19, 38, 0.12);
  --brand: #0c5dae;
  --brand-mid: #2f79c5;
  --brand-dark: #000e51;
  --brand-deep: #052c84;
  --accent: #f79b2f;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --success: #207a43;
  --shadow: 0 22px 60px rgba(9, 19, 38, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eef3f9 0%, #e8edf5 45%, #edf1f6 100%);
}

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

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

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

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.site-main {
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  overflow: hidden;
  backdrop-filter: blur(18px);
  background:
    radial-gradient(circle at 12% 10%, rgba(101, 170, 255, 0.28), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(3, 26, 74, 0.96), rgba(11, 79, 163, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 54px rgba(1, 8, 30, 0.24);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 24px);
  pointer-events: none;
}

.site-header .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--container));
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 84px;
  padding: 10px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 18px 40px rgba(1, 8, 30, 0.18);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
}

.brand img {
  width: 236px;
  max-width: 100%;
}

.brand__meta {
  font-size: 0.82rem;
  color: rgba(204, 225, 255, 0.82);
}

.site-nav .menu {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 0.9vw, 18px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.site-nav a {
  font-weight: 600;
  color: rgba(242, 247, 255, 0.86);
  white-space: nowrap;
  padding: 10px 8px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(115, 180, 255, 0.18));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switcher--header .language-switcher__caption {
  display: none;
}

.language-switcher--mobile {
  display: none;
}

.language-switcher__caption {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(219, 234, 255, 0.78);
}

.language-switcher__track {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  color: rgba(242, 247, 255, 0.78);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.language-switcher__button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.language-switcher__button.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 12px 26px rgba(9, 19, 38, 0.16);
}

.header-cta__phone {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 14px 0 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-toggle__label {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

#glt-translate-trigger,
#glt-toolbar,
.tool-container {
  display: none !important;
}

iframe.goog-te-banner-frame.skiptranslate,
iframe.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate,
iframe.VIpgJd-ZVi9od-xl07Ob-OEVmcd.skiptranslate,
.goog-te-banner-frame.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-yAWNEb-L7lbkb,
#goog-gt-tt,
#goog-gt-vt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-text-highlight {
  display: none !important;
}

body > .skiptranslate,
body > iframe.skiptranslate {
  display: none !important;
}

html,
body {
  margin-top: 0 !important;
  top: 0 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  box-shadow: 0 14px 24px rgba(12, 93, 174, 0.24);
}

.btn--secondary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-deep));
  color: #fff;
  box-shadow: 0 14px 24px rgba(5, 44, 132, 0.26);
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
}

.btn.btn--whatsapp {
  border-color: transparent;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #fff;
  box-shadow: 0 14px 24px rgba(37, 211, 102, 0.26);
}

.btn.btn--whatsapp:hover {
  box-shadow: 0 18px 30px rgba(18, 140, 126, 0.28);
}

.hero,
.catalog-hero,
.product-hero,
.page-hero {
  padding: 48px 0 24px;
}

.hero-grid,
.catalog-hero__grid,
.contact-layout,
.page-layout,
.product-layout,
.product-content-grid {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero h1,
.catalog-hero h1,
.product-hero h1,
.page-hero h1,
.section-head h2,
.request-card h2,
.feature-card h3,
.sync-band h2 {
  margin: 0 0 16px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero-lead,
.catalog-hero p,
.page-hero p,
.section-head p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero-actions,
.section-actions,
.product-card__actions,
.product-detail-card__actions,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-hero__grid,
.blog-layout,
.article-layout {
  display: grid;
  gap: 28px;
}

.blog-hero__grid {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
}

.blog-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}

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

.blog-sidebar,
.article-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
}

.blog-card,
.blog-sidebar-card,
.article-sidebar-card,
.article-cta,
.blog-empty {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 19, 38, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 93, 174, 0.18);
  box-shadow: 0 30px 80px rgba(9, 19, 38, 0.16);
}

.blog-card--featured {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
}

.blog-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--brand-dark);
}

.blog-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 47, 0.02) 0%, rgba(4, 14, 47, 0.36) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: saturate(1.04);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.025);
}

.blog-card--featured .blog-card__media img {
  min-height: 100%;
  aspect-ratio: auto;
}

.blog-card__format,
.blog-card__read {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card__format {
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-dark);
}

.blog-card__read {
  right: 18px;
  bottom: 18px;
  background: rgba(4, 14, 47, 0.68);
  color: #fff;
}

.blog-card__body,
.blog-sidebar-card,
.article-sidebar-card,
.article-cta,
.blog-empty {
  padding: 24px;
}

.blog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96)),
    rgba(255, 255, 255, 0.96);
}

.blog-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.blog-meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 93, 174, 0.12), rgba(5, 44, 132, 0.12));
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.blog-card__title,
.blog-sidebar-card h2,
.article-sidebar-card h2,
.article-cta h2 {
  margin: 0 0 12px;
  font-family: "Oswald", sans-serif;
  line-height: 1.04;
}

.blog-card__title {
  font-size: clamp(1.55rem, 1.25rem + 0.56vw, 2.08rem);
}

.blog-card__title a {
  color: var(--brand-dark);
}

.blog-card__title a:hover {
  color: var(--brand);
}

.blog-card__excerpt,
.blog-sidebar-card p,
.article-sidebar-card p,
.blog-empty p {
  color: var(--ink-soft);
}

.blog-card__excerpt {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(9, 19, 38, 0.08);
}

.blog-card--featured .blog-card__body {
  padding: 30px;
}

.blog-card--featured .blog-card__title {
  font-size: clamp(2rem, 1.78rem + 0.8vw, 2.7rem);
}

.blog-card--featured .blog-card__excerpt {
  -webkit-line-clamp: 4;
}

.blog-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-link-list li + li {
  border-top: 1px solid rgba(9, 19, 38, 0.08);
}

.blog-link-list a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--brand-dark);
}

.blog-sidebar-card--accent,
.article-cta {
  background:
    linear-gradient(135deg, rgba(12, 93, 174, 0.12), rgba(5, 44, 132, 0.14)),
    rgba(255, 255, 255, 0.96);
}

.article-body {
  padding: 34px;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3 {
  margin-top: 1.5em;
}

.article-body ul,
.article-body ol {
  padding-left: 1.2em;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(9, 19, 38, 0.08);
}

.article-body th,
.article-body td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(9, 19, 38, 0.08);
  vertical-align: top;
}

.article-body th {
  background: linear-gradient(135deg, rgba(12, 93, 174, 0.1), rgba(5, 44, 132, 0.1));
  color: var(--brand-deep);
  font-weight: 700;
}

.article-body tr:last-child td {
  border-bottom: 0;
}

.article-note,
.article-faq-item {
  margin: 22px 0;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(9, 19, 38, 0.08);
  box-shadow: var(--shadow);
}

.article-note {
  background:
    linear-gradient(135deg, rgba(12, 93, 174, 0.08), rgba(5, 44, 132, 0.08)),
    rgba(255, 255, 255, 0.94);
}

.article-note p:last-child,
.article-faq-item p:last-child {
  margin-bottom: 0;
}

.article-faq-item h3 {
  margin: 0 0 10px;
}

.hero-stats,
.feature-grid,
.category-grid,
.product-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.stat-card,
.feature-card,
.info-panel,
.contact-card,
.product-card,
.request-card,
.page-sidebar,
.hero-frame,
.product-gallery-card,
.product-detail-card,
.sync-band,
.empty-panel,
.page-layout .prose {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(9, 19, 38, 0.08);
  box-shadow: var(--shadow);
}

.stat-card,
.feature-card,
.contact-card,
.info-panel,
.sync-band,
.empty-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.hero-frame,
.product-gallery-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-frame img,
.catalog-hero__media img,
.product-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame {
  aspect-ratio: 16 / 11;
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(3, 26, 74, 0.1), rgba(11, 79, 163, 0.08));
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 47, 0.04) 0%, rgba(4, 14, 47, 0.2) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 32%);
  pointer-events: none;
}

.hero-frame img {
  position: absolute;
  inset: 0;
  object-position: center center;
}

.hero-frame__label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 40px rgba(9, 19, 38, 0.16);
  backdrop-filter: blur(12px);
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-section {
  padding: 28px 0;
}

.page-section--tight {
  padding-top: 12px;
}

.page-section--dark {
  background:
    linear-gradient(135deg, rgba(0, 14, 81, 0.96), rgba(8, 53, 110, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  color: #fff;
  margin-top: 18px;
}

.page-section--accent {
  background: linear-gradient(120deg, rgba(12, 93, 174, 0.12), rgba(247, 155, 47, 0.16));
}

.single-product .page-section--accent {
  background: transparent;
}

.page-section--subtle {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(9, 19, 38, 0.08);
}

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

.section-head--light p,
.section-head--light h2 {
  color: #fff;
}

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

.category-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 19, 38, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 93, 174, 0.18);
  box-shadow: 0 28px 72px rgba(9, 19, 38, 0.16);
}

.category-card__shell {
  display: block;
  height: 100%;
}

.category-card__media {
  position: relative;
  overflow: hidden;
  background: rgba(4, 14, 47, 0.9);
}

.category-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 47, 0.04) 0%, rgba(4, 14, 47, 0.18) 52%, rgba(4, 14, 47, 0.46) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 34%);
}

.category-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 0.38s ease;
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card__badge,
.category-card__count {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.category-card__badge {
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-dark);
}

.category-card__count {
  right: 16px;
  bottom: 16px;
  background: rgba(4, 14, 47, 0.7);
  color: #fff;
  backdrop-filter: blur(12px);
}

.category-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  padding: 24px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96)),
    rgba(255, 255, 255, 0.96);
}

.category-card__body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 1.15rem + 0.35vw, 1.95rem);
  font-family: "Oswald", sans-serif;
  line-height: 1.04;
  color: var(--brand-dark);
}

.category-card__body p {
  margin: 0;
  color: var(--ink-soft);
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(9, 19, 38, 0.08);
  font-weight: 700;
  color: var(--brand-dark);
}

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

.insight-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(9, 19, 38, 0.08);
  box-shadow: 0 18px 48px rgba(9, 19, 38, 0.09);
}

.insight-card__media {
  display: block;
  overflow: hidden;
  background: var(--brand-dark);
}

.insight-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insight-card__body {
  padding: 18px 18px 20px;
}

.insight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.insight-card h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  line-height: 1.06;
}

.insight-card h3 a {
  color: var(--brand-dark);
}

.insight-card p {
  margin: 0;
  color: var(--ink-soft);
}

.insight-card__link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 700;
  color: var(--brand);
}

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

.product-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card__body {
  padding: 22px;
  color: var(--ink);
}

.product-card__meta,
.product-detail-card__top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.status-pill,
.sku-pill,
.term-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.status-pill.is-active {
  background: rgba(32, 122, 67, 0.12);
  color: var(--success);
}

.status-pill.is-preorder {
  background: rgba(247, 155, 47, 0.18);
  color: #975700;
}

.sku-pill {
  background: linear-gradient(135deg, rgba(12, 93, 174, 0.12), rgba(5, 44, 132, 0.12));
  color: var(--brand-deep);
}

.product-card h3,
.product-detail-card h1 {
  margin: 0 0 12px;
}

.product-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.9rem, 1.45rem + 0.9vw, 2.35rem);
  line-height: 1.02;
  color: var(--brand-dark);
}

.product-card h3 a {
  color: var(--brand-dark);
}

.product-card__note,
.request-card__copy p,
.prose,
.product-card__specs,
.footer-brand p,
.footer-list {
  color: var(--ink-soft);
}

.product-card__specs,
.detail-specs,
.process-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.product-card__specs li,
.detail-specs li,
.process-list li,
.footer-list li {
  padding: 10px 0;
  border-top: 1px solid rgba(9, 19, 38, 0.08);
}

.detail-specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.price-block,
.woocommerce-Price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-dark);
}

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

.sync-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}

.request-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.request-card.is-compact {
  grid-template-columns: 1fr;
}

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

.request-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.request-feedback {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(247, 155, 47, 0.32);
  background: rgba(247, 155, 47, 0.16);
  color: #7a4900;
  font-weight: 600;
}

.request-form__full {
  grid-column: 1 / -1;
}

.request-form input,
.request-form textarea,
.woocommerce form .input-text,
.woocommerce textarea {
  width: 100%;
  border: 1px solid rgba(9, 19, 38, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.request-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.request-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.catalog-hero__grid,
.contact-layout,
.page-layout,
.product-layout,
.product-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catalog-hero__media,
.page-sidebar {
  align-self: start;
}

.catalog-hero__media img,
.contact-stack,
.page-sidebar,
.page-layout .prose {
  border-radius: var(--radius-xl);
}

.term-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.term-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 19, 38, 0.08);
  font-weight: 700;
}

.term-chip.is-current {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-deep));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 24px rgba(5, 44, 132, 0.22);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.product-detail-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.product-detail-card__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.prose,
.page-layout .prose {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.prose h2,
.prose h3 {
  font-family: "Oswald", sans-serif;
  margin-top: 0;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card__label,
.footer-title {
  margin: 0 0 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  font-weight: 700;
}

.contact-map-card {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.contact-map-card__intro p:last-child {
  margin-bottom: 0;
}

.contact-map-card__intro h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 1.4rem + 0.4vw, 2.1rem);
  line-height: 1.02;
  color: var(--brand-dark);
}

.contact-map-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  border: 1px solid rgba(9, 19, 38, 0.08);
  box-shadow: var(--shadow);
  background: rgba(214, 224, 239, 0.72);
}

.contact-map-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 47, 0.02) 0%, rgba(4, 14, 47, 0.1) 100%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 34%);
  pointer-events: none;
}

.contact-map-card__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.contact-map-card__media:hover img {
  transform: scale(1.02);
}

.contact-map-card__badge,
.contact-map-card__route {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-map-card__badge {
  left: 18px;
  top: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 14px 30px rgba(9, 19, 38, 0.14);
}

.contact-map-card__route {
  left: 18px;
  bottom: 18px;
  background: rgba(4, 14, 47, 0.56);
  color: #fff;
  backdrop-filter: blur(12px);
}

.contact-map-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pagination-shell {
  margin-top: 24px;
}

.pagination-shell .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pagination-shell .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 19, 38, 0.08);
}

.pagination-shell .current {
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 20px rgba(12, 93, 174, 0.2);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.7fr 0.9fr 1fr;
  gap: 18px;
  padding: 34px;
  border-radius: 34px 34px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 90px rgba(1, 8, 30, 0.34);
  backdrop-filter: blur(20px);
}

.site-footer {
  position: relative;
  margin-top: 42px;
  padding: 42px 0 20px;
  overflow: hidden;
  color: rgba(241, 246, 255, 0.92);
  background:
    radial-gradient(circle at 12% 8%, rgba(93, 157, 255, 0.24), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(247, 155, 47, 0.18), transparent 24%),
    linear-gradient(150deg, #021338 0%, #04285f 42%, #0a4b98 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.site-footer::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%, rgba(1, 8, 28, 0.24) 100%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 22px);
}

.site-footer::after {
  left: 50%;
  top: -140px;
  width: min(900px, 80vw);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 68%);
  filter: blur(18px);
  opacity: 0.85;
}

.site-footer .container,
.floating-whatsapp {
  position: relative;
  z-index: 1;
}

.footer-panel {
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-brand__mark {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 32px rgba(1, 8, 30, 0.26);
}

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

.footer-kicker {
  margin: 0 0 12px;
  color: rgba(160, 198, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer .footer-title {
  color: #9fc5ff;
}

.site-footer .menu {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.site-footer .menu li + li,
.site-footer .footer-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .menu a,
.site-footer .footer-list a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer .menu a:hover,
.site-footer .footer-list a:hover {
  color: #bdd7ff;
}

.site-footer .footer-brand p,
.site-footer .footer-list,
.site-footer .footer-bottom p {
  color: rgba(228, 237, 255, 0.78);
}

.site-footer .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 28px rgba(1, 8, 30, 0.18);
}

.site-footer .btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(135deg, rgba(12, 93, 174, 0.9), rgba(47, 121, 197, 0.76));
}

.site-footer .btn--ghost.btn--whatsapp {
  border-color: rgba(37, 211, 102, 0.28);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 8px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-bottom strong {
  color: #fff;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 30;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(180deg, var(--wa), var(--wa-dark));
  color: #fff;
  box-shadow: 0 20px 38px rgba(18, 140, 126, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(18, 140, 126, 0.4);
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.32);
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

.floating-whatsapp svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }

  70% {
    transform: scale(1.16);
    opacity: 0;
  }

  100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

.page-hero--small {
  padding-top: 36px;
}

.post-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(9, 19, 38, 0.08);
}

@media (max-width: 1080px) {
  .site-header .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-shell,
  .blog-hero__grid,
  .hero-grid,
  .catalog-hero__grid,
  .blog-card--featured,
  .blog-layout,
  .article-layout,
  .contact-layout,
  .page-layout,
  .product-layout,
  .product-content-grid,
  .request-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .feature-grid,
  .category-grid,
  .product-grid,
  .blog-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-shell {
    grid-template-columns: auto auto 1fr;
    gap: 16px;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
  }

  .site-nav.is-open {
    display: block;
    margin: 4px 14px 10px;
    padding: 10px 14px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
      rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
  }

  .language-switcher--header .language-switcher__button {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .language-switcher--mobile {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .footer-grid {
    padding: 26px;
  }

  .hero-frame {
    aspect-ratio: 16 / 9;
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-shell {
    padding: 8px 0;
    border-radius: 0 0 20px 20px;
  }

  .brand img {
    width: 198px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    gap: 10px;
    min-height: 44px;
    padding: 0 12px 0 14px;
  }

  .menu-toggle__label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .language-switcher--mobile {
    width: 100%;
    margin-top: 8px;
  }

  .language-switcher--mobile .language-switcher__track {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher--mobile .language-switcher__button {
    flex: 1 1 0;
    justify-content: center;
    min-height: 40px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .contact-map-card__media,
  .contact-map-card__media img {
    min-height: 220px;
  }

  .contact-map-card__badge,
  .contact-map-card__route {
    left: 14px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .contact-map-card__badge {
    top: 14px;
  }

  .contact-map-card__route {
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .hero-frame {
    aspect-ratio: 5 / 4;
    min-height: 280px;
  }

  .hero-frame__label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
    min-height: 38px;
    font-size: 0.84rem;
  }

  .hero-stats,
  .feature-grid,
  .category-grid,
  .product-grid,
  .blog-grid,
  .insight-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form__full,
  .request-form {
    grid-column: auto;
  }

  .sync-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .floating-whatsapp {
    bottom: calc(14px + env(safe-area-inset-bottom));
    right: 14px;
    width: 62px;
    height: 62px;
  }

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

  .site-footer {
    margin-top: 30px;
    padding-top: 28px;
  }

  .footer-grid {
    padding: 20px;
    border-radius: 26px 26px 16px 16px;
  }

  .footer-panel {
    padding: 18px;
  }

  .footer-brand__mark {
    padding: 12px 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 2px 0;
  }

  .blog-card__format,
  .blog-card__read {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .blog-card__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
