
:root {
  --color-primary: #4aa4a0;
  --color-primary-dark: #16878b;
  --color-primary-soft: #e2f5f5;
  --color-dark: #071d2a;
  --color-dark-2: #0b2a3a;
  --color-text: #24333b;
  --color-muted: #64727a;
  --color-line: rgba(7, 29, 42, 0.12);
  --color-light: #f5f8f9;
  --color-white: #ffffff;
  --color-accent: #f5a623;
  --shadow-soft: 0 18px 45px rgba(7, 29, 42, 0.10);
  --shadow-card: 0 16px 34px rgba(7, 29, 42, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 10000;
  padding: 12px 16px;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
}

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

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7, 29, 42, 0.08);
  transition: box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 32px rgba(7, 29, 42, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  width: 154px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--color-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-active {
  color: var(--color-primary);
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.is-active::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  letter-spacing: 0.055em; /* Añadido para igualar el espaciado de las letras */
  text-transform: uppercase; /* Cambiado de 'none' a 'uppercase' para que coincida con la imagen */
  font-size: 13px; /* Ajustado para que combine con el menú principal */
  font-weight: 800; /* Asegura el grosor de la letra de la imagen */
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: var(--color-primary-soft);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(74, 164, 160, 0.30);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-white:hover {
  color: var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1px solid rgba(74, 164, 160, 0.45);
}

.btn-ghost:hover {
  background: var(--color-primary-soft);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 82px 0;
  color: var(--color-white);
  background: radial-gradient(circle at 75% 30%, rgba(74, 164, 160, 0.38), transparent 34%), linear-gradient(135deg, #051722 0%, #0b2a3a 58%, #0f464d 100%);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 90%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 42, 0.96) 0%, rgba(7, 29, 42, 0.82) 46%, rgba(7, 29, 42, 0.30) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 60px;
  align-items: center;
}

.hero-content h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.hero-text,
.page-hero p {
  max-width: 700px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.8vw, 21px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #d9ffff;
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-actions {
  margin-bottom: 26px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hero-card img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.hero-card-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  box-shadow: var(--shadow-soft);
}

.hero-card-panel strong,
.hero-card-panel span {
  display: block;
}

.hero-card-panel strong {
  font-size: 20px;
}

.hero-card-panel span {
  color: var(--color-muted);
}

.benefit-card {
    text-align: center;
}

.benefit-card .icon-box {
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-card .icon-box svg {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    text-align: center;
}

.benefit-card p {
    text-align: center;
} 


.contact-strip {
  padding: 22px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

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

.strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--color-dark);
  text-decoration: none;
  background: var(--color-light);
}

.strip-item svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

.section {
  padding: 94px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-copy h2,
.cta-grid h2 {
  margin: 0 0 16px;
  color: var(--color-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-heading p,
.about-content p,
.contact-copy p,
.cta-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
}

.problems,
.values,
.services,
.catalog-preview,
.product-list-section {
  background: var(--color-light);
}

.benefit-grid,
.value-grid,
.service-grid,
.project-grid,
.catalog-card-grid,
.brand-grid,
.product-grid,
.category-grid,
.quick-grid {
  display: grid;
  gap: 26px;
}

.benefit-grid,
.value-grid,
.service-grid,
.project-grid,
.catalog-card-grid,
.brand-grid,
.product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefit-card,
.value-card,
.service-card,
.process-step,
.contact-form,
.catalog-tile,
.brand-card,
.product-card,
.category-card,
.quick-card,
.stat-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.benefit-card,
.value-card,
.service-card,
.process-step,
.catalog-tile,
.brand-card,
.product-card,
.category-card,
.quick-card,
.stat-card {
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover,
.value-card:hover,
.service-card:hover,
.process-step:hover,
.catalog-tile:hover,
.brand-card:hover,
.product-card:hover,
.category-card:hover,
.quick-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 164, 160, 0.38);
  box-shadow: 0 24px 55px rgba(7, 29, 42, 0.12);
}

.benefit-number,
.process-step span,
.stat-card strong {
  color: var(--color-primary);
  font-weight: 900;
}

.benefit-card h3,
.value-card h3,
.service-card h3,
.process-step h3,
.project-info h3,
.catalog-tile h3,
.brand-card h3,
.product-card h3,
.category-card h3,
.quick-card h3 {
  margin: 10px 0 10px;
  color: var(--color-dark);
  font-size: 22px;
  line-height: 1.25;
}

.benefit-card p,
.value-card p,
.service-card p,
.process-step p,
.project-info p,
.catalog-tile p,
.brand-card p,
.product-card p,
.category-card p,
.quick-card p {
  margin: 0;
  color: var(--color-muted);
}

.about-grid,
.contact-grid,
.cta-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.about-badge {
  position: absolute;
  right: -16px;
  bottom: 28px;
  max-width: 260px;
  padding: 20px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.about-badge strong {
  color: var(--color-dark);
}

.about-badge span {
  color: var(--color-muted);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 30px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 5px;
  height: 9px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.icon-box,
.service-icon,
.catalog-icon,
.category-icon,
.product-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(74, 164, 160, 0.12);
  color: var(--color-primary-dark);
  font-weight: 900;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(22, 158, 168, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-primary);
}

.icon-box svg,
.service-icon svg,
.catalog-icon svg,
.category-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.service-card {
  min-height: 280px;
}

.process {
  background: linear-gradient(135deg, #071d2a 0%, #0d3e48 100%);
}

.process .section-heading h2,
.process .section-heading p,
.process-step h3 {
  color: var(--color-white);
}

.process .section-heading p,
.process-step p {
  color: rgba(255, 255, 255, 0.74);
}

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

.process-step {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.projects {
  background: var(--color-white);
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(7, 29, 42, 0.12);
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--color-light);
}

.project-info {
  padding: 24px;
}

.project-info span,
.product-meta,
.brand-meta {
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band {
  padding: 70px 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.cta-grid {
  grid-template-columns: 1fr auto;
}

.cta-grid h2,
.cta-grid p,
.cta-grid .section-kicker {
  color: var(--color-white);
}

.contact {
  background: var(--color-white);
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-card {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: var(--color-light);
  text-decoration: none;
}

.mini-card strong {
  color: var(--color-dark);
}

.mini-card span {
  color: var(--color-muted);
}

.contact-form {
  padding: 34px;
}

.form-row {
  display: grid;
  gap: 18px;
}

.form-row.two-cols {
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.catalog-search input,
.catalog-search select {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #fbfcfc;
  color: var(--color-text);
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.catalog-search input:focus,
.catalog-search select:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(74, 164, 160, 0.12);
}

.privacy-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  margin: 20px 0;
  font-weight: 500 !important;
  color: var(--color-muted) !important;
}

.privacy-check input {
  width: auto;
  margin-top: 5px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.form-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  text-align: center;
}

.form-note.is-success {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.form-note.is-error {
  color: #b00020;
  font-weight: 800;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: var(--color-white);
  background: radial-gradient(circle at 80% 20%, rgba(74, 164, 160, 0.42), transparent 30%), linear-gradient(135deg, #061824, #0d3e48 68%, #114d55);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumbs a {
  color: #d9ffff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

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

.page-hero-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.20);
}

.page-hero-card img {
  width: 150%;
  max-width: 500px;
  margin: 0 auto 10px;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.18));
}

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

.stat-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.stat-card strong {
  display: block;
  color: var(--color-white);
  font-size: 28px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.catalog-tile {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-tile .btn {
  margin-top: auto;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.brand-pill,
.product-badge,
.category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.catalog-search {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 30px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.catalog-search label {
  display: grid;
  gap: 8px;
  color: var(--color-dark);
  font-weight: 800;
}

.catalog-count {
  color: var(--color-muted);
  margin: -12px 0 26px;
}

.brand-card,
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.brand-logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  width: 100%;
  margin-bottom: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #eef7f8);
  border: 1px solid var(--color-line);
  color: var(--color-dark);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-align: center;
}

.brand-card h3,
.product-card h3 {
  margin-top: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-light);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.product-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.product-icon {
  flex: 0 0 62px;
  font-size: 18px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 24px;
}

.no-results {
  display: none;
  padding: 30px;
  border: 1px dashed rgba(74, 164, 160, 0.45);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-muted);
  text-align: center;
}

.no-results.is-visible {
  display: block;
}

.note-box {
  margin-top: 34px;
  padding: 22px;
  border-left: 4px solid var(--color-primary);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  color: var(--color-muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 68px 0 42px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--color-white);
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  max-width: 340px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: var(--color-white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1140px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 16px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .page-hero-card {
    max-width: 620px;
  }

  .service-grid,
  .project-grid,
  .brand-grid,
  .product-grid,
  .catalog-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

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

  .brand-logo {
    width: 124px;
    max-height: 60px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 0;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a,
  .nav-dropdown-toggle {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 12px;
  }

  .main-nav > a::after,
  .nav-dropdown-toggle::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.is-active,
  .nav-dropdown-toggle:hover,
  .nav-dropdown-toggle.is-active {
    background: var(--color-primary-soft);
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 4px 0 8px;
    padding: 6px;
    box-shadow: none;
    border-radius: 14px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .hero {
    padding: 68px 0;
  }

  .hero-card img {
    min-height: 320px;
  }

  .strip-grid,
  .benefit-grid,
  .value-grid,
  .about-grid,
  .contact-grid,
  .cta-grid,
  .catalog-search,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .section {
    padding: 76px 0;
  }
}

@media (max-width: 640px) {
  .hero-content h1,
  .page-hero h1 {
    font-size: 38px;
  }

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

  .service-grid,
  .project-grid,
  .process-grid,
  .form-row.two-cols,
  .footer-grid,
  .brand-grid,
  .product-grid,
  .catalog-card-grid,
  .quick-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .value-card,
  .benefit-card,
  .process-step,
  .contact-form,
  .catalog-tile,
  .brand-card,
  .product-card,
  .category-card,
  .quick-card {
    padding: 26px;
  }

  .project-card img {
    height: 220px;
  }

  .about-badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .cta-band,
  .page-hero {
    padding: 56px 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    padding: 0 16px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Catalogo dinamico y fichas individuales */
.catalog-loading,
.product-detail-loading {
  padding: 28px;
  border: 1px dashed rgba(18, 156, 163, 0.36);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-muted);
  text-align: center;
  font-weight: 800;
}

.catalog-loading.is-error {
  color: #b00020;
  border-color: rgba(176, 0, 32, 0.35);
}

.catalog-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 72px;
}

.summary-card {
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.summary-card strong {
  display: block;
  color: var(--color-primary);
  font-size: 44px;
  line-height: 1;
}

.summary-card span {
  color: var(--color-muted);
  font-weight: 800;
}

.catalog-heading-space {
  margin-top: 78px;
}

.category-card {
  display: block;
  padding: 30px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover,
.dynamic-card:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 156, 163, 0.34);
  box-shadow: 0 24px 52px rgba(7, 29, 42, 0.12);
}

.category-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 0 0 12px;
  color: var(--color-dark);
  font-size: 23px;
  line-height: 1.18;
}

.category-card p {
  margin: 0;
  color: var(--color-muted);
}

.catalog-search.two-controls {
  grid-template-columns: 1.4fr 0.8fr;
}

.dynamic-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dynamic-product-grid .product-card {
  min-height: 100%;
}

.product-image-link {
  display: block;
  background: var(--color-light);
  text-decoration: none;
}

.product-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover {
  color: var(--color-primary);
}

.product-meta {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.product-info-line span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color-light);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
}

.btn-ghost {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1px solid var(--color-line);
}

.btn-ghost:hover {
  color: var(--color-primary);
  border-color: rgba(18, 156, 163, 0.35);
}

.product-detail-hero {
  padding: 88px 0;
  color: var(--color-white);
  background: radial-gradient(circle at 80% 16%, rgba(18, 156, 163, 0.42), transparent 30%), linear-gradient(135deg, #061824, #0d3e48 68%, #114d55);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 58px;
  align-items: center;
}

.product-detail-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.product-detail-copy p {
  max-width: 740px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.detail-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.product-detail-media {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.20);
}

.product-detail-media img {
  width: 100%;
  border-radius: 20px;
  background: var(--color-white);
}

.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-detail-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.product-detail-section,
.related-section {
  background: var(--color-light);
}

.product-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.detail-panel {
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.detail-panel h2 {
  margin: 0 0 18px;
  color: var(--color-dark);
  font-size: 24px;
}

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

.detail-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-line);
}

.detail-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list strong {
  color: var(--color-dark);
}

.detail-list span,
.detail-panel li,
.spec-table td {
  color: var(--color-muted);
}

.detail-checks {
  margin: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 42%;
  color: var(--color-dark);
}

@media (max-width: 1080px) {
  .product-detail-grid,
  .product-detail-info-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    max-width: 640px;
  }
}

@media (max-width: 860px) {
  .catalog-summary-grid,
  .catalog-search.two-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-image {
    height: 190px;
  }

  .product-card-body,
  .detail-panel,
  .summary-card,
  .category-card {
    padding: 24px;
  }

  .product-detail-actions .btn {
    width: 100%;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.dynamic-product-grid .product-card {
  padding: 0;
}


/* =========================================================
   CATALOGO HOME - TARJETAS CON IMAGEN
   ========================================================= */

.catalog-home-section {
  background: #ffffff;
}

.catalog-main-heading {
  margin-bottom: 34px;
}

.catalog-main-heading p,
.catalog-category-heading p {
  max-width: 760px;
  margin: 0 auto;
}

.catalog-summary-fixed {
  max-width: 980px;
  margin: 0 auto 86px;
}

.catalog-summary-fixed .summary-card {
  text-align: center;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-summary-fixed .summary-card strong {
  font-size: 46px;
}

.catalog-summary-fixed .summary-card span {
  max-width: 230px;
  margin: 0 auto;
  line-height: 1.35;
}

.catalog-category-heading {
  max-width: 900px;
  margin-bottom: 46px;
}

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

.catalog-image-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(7, 29, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 164, 160, 0.42);
  box-shadow: 0 28px 60px rgba(7, 29, 42, 0.14);
}

.catalog-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--color-light);
}

.catalog-image-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 48px 26px 28px;
}

.catalog-image-icon {
  position: absolute;
  top: -34px;
  left: 26px;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 12px 28px rgba(7, 29, 42, 0.14);
}

.catalog-image-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.catalog-image-content span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-image-content h3 {
  margin: 0 0 12px;
  color: var(--color-dark);
  font-size: 24px;
  line-height: 1.18;
}

.catalog-image-content p {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-size: 16px;
}

.catalog-image-content strong {
  margin-top: auto;
  display: inline-flex;
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 900;
}

.catalog-image-card:hover .catalog-image-content strong {
  color: var(--color-primary);
}

@media (max-width: 1080px) {
  .catalog-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .catalog-summary-fixed {
    margin-bottom: 58px;
  }

  .catalog-image-grid {
    grid-template-columns: 1fr;
  }

  .catalog-image-card {
    min-height: auto;
  }

  .catalog-image-card img {
    height: 180px;
  }
}

.brand-logo-box{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    padding:10px;
    background:#fff;
    border:1px solid var(--color-line);
    border-radius:16px;
}

.brand-logo-box img{
    max-width:180px;
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;
}
/* =========================================================
   MOBILE - CATALOGO HERO
   Solo afecta catalogo.html si agregas catalog-mobile-hero
   ========================================================= */

@media (max-width: 768px) {

  .catalog-mobile-hero {
    padding: 46px 0 54px;
    text-align: left;
  }

  .catalog-mobile-hero .page-hero-grid {
    display: block;
  }

  .catalog-mobile-hero .breadcrumbs {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .catalog-mobile-hero .eyebrow {
    font-size: 11px;
    padding: 7px 11px;
    margin-bottom: 14px;
  }

  .catalog-mobile-hero h1 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
  }

  .catalog-mobile-hero p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
  }

  .catalog-mobile-hero .page-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-mobile-hero .page-hero-actions .btn {
    width: 100%;
  }

  /* Oculta la tarjeta grande del logo solo en movil */
  .catalog-mobile-hero .page-hero-card {
    display: none;
  }
}

/* ===================================
   INDEX - OCULTAR IMAGEN HERO EN MOVIL
   =================================== */

@media (max-width: 768px) {
  .hero .hero-card {
    display: none !important;
  }

  .hero .hero-grid {
    grid-template-columns: 1fr !important;
  }

  .hero {
    min-height: auto !important;
    padding: 54px 0 58px !important;
  }
}
/* ================================
   PRODUCTO - GALERIA Y DATASHEET
   ================================ */
.product-gallery {
  display: grid;
  gap: 14px;
}

.product-gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
}

.product-gallery-main img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border-radius: 16px;
}

.product-gallery-main {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 8px;
}

.product-gallery-main {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-gallery-main::-webkit-scrollbar {
  display: none;
}


.gallery-thumb {
  flex: 0 0 82px;
  width: 82px;
  height: 72px;
  padding: 5px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 29, 42, 0.10);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumb.is-active {
  border-color: var(--color-primary);
}

.brand-logo-box {
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: #ffffff;
}

.brand-logo-box img {
  max-width: 190px;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-box span {
  color: var(--color-dark);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 768px) {
  .product-gallery-main {
    min-height: 260px;
  }

  .gallery-thumb {
    flex-basis: 76px;
    width: 76px;
    height: 66px;
  }
}

/* =========================================================
   PRODUCTO - COMPLEMENTOS / SOFTWARE
   ========================================================= */

.product-complements-section {
  background: var(--color-white);
}

.product-complement-card {
  max-width: 760px;
}

.product-complement-card p {
  margin: 0 0 22px;
  color: var(--color-muted);
}

@media (max-width: 640px) {
  .product-complement-card .btn {
    width: 100%;
  }
}

/* ================================
   PRODUCTO - GALERIA CON LIGHTBOX
   ================================ */

.product-gallery-main {
  position: relative;
  cursor: zoom-in;
}

.product-gallery-main::after {
  content: "Ver imagen";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 29, 42, 0.76);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-gallery-main:hover::after {
  opacity: 1;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 26px rgba(7, 29, 42, 0.18);
}

.product-gallery-arrow:hover {
  background: var(--color-primary);
  color: #fff;
}

.product-gallery-arrow.prev {
  left: 16px;
}

.product-gallery-arrow.next {
  right: 16px;
}

.product-gallery-counter {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 5;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(7, 29, 42, 0.76);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(4, 14, 20, 0.92);
}

.product-lightbox.is-open {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.product-lightbox-top {
  display: flex;
  justify-content: flex-end;
  padding: 18px;
}

.product-lightbox-close {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--color-dark);
  font-size: 28px;
  font-weight: 900;
}

.product-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px 70px;
}

.product-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.product-lightbox.is-zoomed .product-lightbox-img {
  transform: scale(2);
  cursor: zoom-out;
}

.product-lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--color-dark);
  font-size: 34px;
  font-weight: 900;
  transform: translateY(-50%);
}

.product-lightbox-arrow.prev {
  left: 18px;
}

.product-lightbox-arrow.next {
  right: 18px;
}

.product-lightbox-bottom {
  padding: 14px 18px 24px;
  color: #fff;
  text-align: center;
  font-weight: 800;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .product-gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .product-lightbox-stage {
    padding: 10px 52px;
  }

  .product-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}
.product-gallery-main{
    position:relative;
}

.gallery-prev,
.gallery-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#ffffffee;
    cursor:pointer;
    z-index:10;
    font-size:20px;
    font-weight:bold;
}

.gallery-prev{
    left:15px;
}

.gallery-next{
    right:15px;
}

.product-gallery-counter{
    position:absolute;
    bottom:15px;
    left:15px;
    background:#000000aa;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
}
.product-gallery-main img {
  cursor: zoom-in;
}

.amazon-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  background: rgba(3, 10, 15, 0.92);
}

.amazon-lightbox.is-open {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.amazon-lightbox-top {
  display: flex;
  justify-content: flex-end;
  padding: 18px;
}

.amazon-lightbox-close {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #071d2a;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}

.amazon-lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 12px 76px;
}

.amazon-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.18s ease;
  transform-origin: center center;
}

.amazon-lightbox.is-zoomed .amazon-lightbox-img {
  transform: scale(2);
  cursor: zoom-out;
}

.amazon-lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #071d2a;
  font-size: 36px;
  font-weight: 900;
  transform: translateY(-50%);
  cursor: pointer;
}

.amazon-lightbox-arrow.prev {
  left: 20px;
}

.amazon-lightbox-arrow.next {
  right: 20px;
}

.amazon-lightbox-bottom {
  padding: 16px 18px 26px;
  color: #fff;
  text-align: center;
  font-weight: 800;
}

body.amazon-lightbox-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .amazon-lightbox-stage {
    padding: 12px 52px;
  }

  .amazon-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}

/* ================================
   PROMO SLIDER INDEX
   ================================ */

.promo-slider {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: var(--color-dark);
}

.promo-slider-track,
.promo-slide {
  position: absolute;
  inset: 0;
}

.promo-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,29,42,0.88), rgba(7,29,42,0.45), rgba(7,29,42,0.15));
}

.promo-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.promo-slide-content {
  max-width: 620px;
  color: var(--color-white);
}

.promo-slide-content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #d9ffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-slide-content h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.promo-slide-content p {
  margin: 0 0 26px;
  max-width: 560px;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
}

.promo-slider-btn{

position:absolute;
top:50%;
transform:translateY(-30%);

width:64px;
height:64px;

border:none;
border-radius:50%;

background:rgba(255,255,255,.92);

backdrop-filter:blur(2px);

cursor:pointer;

font-size:30px;

font-weight:bold;

color:#0f2433;

transition:.25s;

display:flex;
justify-content:center;
align-items:center;

z-index:80;

box-shadow:0 12px 30px rgba(0,0,0,.18);

}

.promo-slider-btn:hover{

background:#36B8BE;

color:#fff;

transform:translateY(-20%) scale(1.08);

}

.promo-slider-btn.prev{

left:25px;

}

.promo-slider-btn.next{

right:25px;

}

.promo-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 5;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.promo-slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}

.promo-slider-dots button.is-active {
  width: 28px;
  background: var(--color-primary);
}

@media (max-width: 760px) {
  .promo-slider {
    height: 360px;
  }

  .promo-slide-content h2 {
    font-size: 34px;
  }

  .promo-slide-content p {
    font-size: 15px;
  }

  .promo-slider-btn {
    display: none;
  }
}
