/* ==========================================================================
   SOE — Servicios de Optometría Empresarial
   Hoja de estilos base (según Mini Manual de Marca V1 LOCKED)
   Azul profundo:  #0A1D4D
   Teal médico:    #06A6A6
   Gris claro:     #E6E9ED
   Blanco:         #FFFFFF
   Tipografía principal: Manrope (títulos)
   Tipografía secundaria: Inter (texto corrido)
   ========================================================================== */

:root {
  --azul: #0A1D4D;
  --teal: #06A6A6;
  --gris: #E6E9ED;
  --blanco: #FFFFFF;
  --texto: #1c2530;
  --radius: 14px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--azul);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.6rem; font-weight: 800; }
h2 { font-size: 1.9rem; font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

p { margin: 0 0 1em; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--blanco);
  border-bottom: 1px solid var(--gris);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav .logo { display: block; }
.nav .logo img { height: 46px; margin: 0 auto; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--azul);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--teal); text-decoration: none; }

.nav-links > li > a.active {
  color: var(--teal);
  position: relative;
}

.nav-links > li > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 24px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--azul);
  border-radius: 2px;
}

/* ---------- Dropdown del menú (Productos) ---------- */

.nav-links li.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(10,29,77,0.14);
  list-style: none;
  padding: 14px 0 8px; /* padding-top extra: da espacio visual sin dejar un hueco transparente que corte el hover */
  min-width: 200px;
  z-index: 60;
}

.has-dropdown:hover .dropdown-menu,
.dropdown-menu:hover { display: block; }

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--azul);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--gris);
  color: var(--teal);
  text-decoration: none;
}

/* ---------- Submenú anidado (Hombre / Mujer / Ver todo) ---------- */

.dropdown-menu li.has-submenu {
  position: relative;
}

.dropdown-menu li.has-submenu > a::after {
  content: "\203A";
  float: right;
  margin-left: 14px;
  color: #9aa4b2;
}

.submenu {
  display: none;
  position: absolute;
  top: -8px;
  left: 100%;
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(10,29,77,0.14);
  list-style: none;
  padding: 8px 0;
  min-width: 150px;
  z-index: 70;
}

.has-submenu:hover .submenu,
.submenu:hover { display: block; }

.submenu a {
  display: block;
  padding: 9px 18px;
  color: var(--azul);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}

.submenu a:hover {
  background: var(--gris);
  color: var(--teal);
  text-decoration: none;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--azul) 0%, #123166 100%);
  color: var(--blanco);
  padding: 90px 24px;
  box-shadow: 0 14px 34px rgba(10,29,77,0.28);
  position: relative;
  z-index: 2;
}

.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--azul);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,29,77,0.86) 0%, rgba(10,29,77,0.72) 100%);
}

.hero-photo .container { position: relative; z-index: 1; }

.hero-photo-tall {
  min-height: 460px;
  display: flex;
  align-items: center;
  background-position: center 35%;
  padding: 64px 24px;
}

.hero-photo-tall .lead-text.lead-text-hero {
  color: var(--blanco) !important;
  margin: 0 auto;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-text { flex: 1.1; }
.hero-visual { flex: 0.9; text-align: center; }

.hero h1 { color: var(--blanco); }

.hero .claim {
  font-size: 1.15rem;
  color: var(--gris);
  max-width: 520px;
}

/* ---------- Hero centrado (Home) ---------- */

.hero-stack {
  display: block;
  text-align: center;
}

.hero-text-center {
  max-width: 680px;
  margin: 0 auto;
}

.hero-text-center h1 { color: var(--blanco); }

/* ---------- Carrusel de fotos (Home) ---------- */

.carousel-section { padding: 0; }

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 0.9;
  min-height: 342px;
  max-height: 585px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(10,29,77,0.28);
  z-index: 2;
  background: var(--gris);
  cursor: grab;
}

.carousel.is-dragging { cursor: grabbing; }

.carousel-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.carousel-slide.active { opacity: 1; z-index: 2; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.carousel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--gris);
  color: var(--azul);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px;
}

.carousel-placeholder span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #6b7686;
  margin-top: 6px;
}

@media (max-width: 640px) {
  .carousel { min-height: 198px; max-height: 360px; }
}

/* ---------- Bolitas (dots) del carrusel ---------- */

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.25);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot:hover { transform: scale(1.15); }

.carousel-dot.active {
  background: var(--teal);
  border-color: var(--teal);
}

/* ---------- Indicador de scroll ---------- */

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  z-index: 10;
  width: 30px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  cursor: pointer;
}

.scroll-indicator span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

@media (max-width: 640px) {
  .scroll-indicator { bottom: 54px; width: 24px; height: 38px; }
  .carousel-dots { bottom: 16px; }
}

/* ---------- Sección azul con círculos decorativos ---------- */

.section-navy-dots {
  position: relative;
  background: linear-gradient(135deg, var(--azul) 0%, #123166 100%);
  overflow: hidden;
  padding: 88px 24px;
}

.section-navy-dots .section-header {
  position: relative;
  z-index: 1;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.deco-1 { width: 420px; height: 420px; top: -160px; left: -120px; background: rgba(255,255,255,0.06); }
.deco-2 { width: 300px; height: 300px; bottom: -140px; right: -80px; background: rgba(6,166,166,0.14); }
.deco-3 { width: 90px;  height: 90px;  top: 30px;   right: 8%;  background: rgba(255,255,255,0.08); }
.deco-4 { width: 46px;  height: 46px;  bottom: 18%; left: 10%;  background: rgba(95,214,214,0.16); }
.deco-5 { width: 130px; height: 130px; top: 55%;    right: 22%; background: rgba(255,255,255,0.05); }

@media (max-width: 640px) {
  .deco-3, .deco-4, .deco-5 { display: none; }
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  border: none;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--teal);
  color: var(--blanco);
}
.btn-primary:hover { background: #058c8c; text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--blanco);
  border: 2px solid var(--blanco);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); text-decoration: none; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Secciones genéricas ---------- */

section { padding: 48px 24px; }

.section-alt { background: var(--gris); }

.section-tight-top { padding-top: 24px; }
.section-tight-bottom { padding-bottom: 24px; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 32px; }

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

/* ---------- Banner de marcas aliadas ---------- */

.brands-banner {
  padding: 16px 24px;
  background: var(--blanco);
  border-bottom: 1px solid var(--gris);
}

.brands-banner-label {
  text-align: center;
  color: var(--texto);
  opacity: 0.6;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  margin: 0 0 12px;
}

.brands-hint {
  text-align: center;
  color: #7c8794;
  font-size: 0.85rem;
  margin: 0 0 18px;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.brand-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-item {
  background: none;
  border: none;
  padding: 6px;
  margin: 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.brand-item:hover,
.brand-item.is-active {
  background: var(--gris);
}

.brand-item:hover .brand-logo,
.brand-item.is-active .brand-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-info-panel {
  position: relative;
  max-height: 0;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.3s ease;
}

.brand-info-panel.is-open {
  max-height: 680px;
  opacity: 1;
  margin-top: 24px;
}

.brand-info-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.brand-info-photo {
  flex: 0 0 480px;
}

.brand-info-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.brand-info-photo-crop img {
  height: 300px;
  object-fit: cover;
}

.brand-info-text {
  flex: 0 1 420px;
  min-width: 0;
  padding: 12px 4px;
  text-align: center;
}

.brand-info-text ul {
  display: inline-block;
  text-align: left;
}

.brand-info-panel h4 {
  color: var(--azul);
  font-size: 1.1rem;
  margin: 0 0 6px;
}

.brand-reg {
  font-size: 0.65em;
  vertical-align: super;
}

.brand-popover-subtitle {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 10px;
}

.brand-popover-desc {
  color: #55606e;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0 0 14px;
  text-align: justify;
}

.brand-popover-label {
  color: var(--azul);
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0 0 6px;
}

.brand-info-panel ul {
  margin: 0;
  padding-left: 18px;
}

.brand-info-panel li {
  color: #55606e;
  font-size: 0.85rem;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .brand-info-inner { flex-direction: column; align-items: stretch; }
  .brand-info-photo { flex: none; }
}

/* ---------- Cards / audiencias ---------- */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.audience-card {
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 6px 20px rgba(10,29,77,0.06);
}

.audience-card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gris);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: var(--teal);
}

.audience-card ul { margin: 0; padding-left: 18px; color: #55606e; }
.audience-card li { margin-bottom: 8px; }
.audience-card li:last-child { margin-bottom: 0; }

/* ---------- Tarjetas de categoría (Home) ---------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(10,29,77,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(10,29,77,0.22);
  text-decoration: none;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.category-card-contain {
  background: var(--blanco);
}

.category-card-contain img {
  object-fit: contain;
  padding: 32px;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(10,29,77,0) 40%, rgba(10,29,77,0.75) 100%);
}

.category-card-overlay h3 {
  color: var(--blanco);
  margin: 0;
  font-size: 1.3rem;
}

@media (max-width: 860px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* ---------- Slider comparación de lentes (transparente / oscuro) ---------- */

.compare-feature {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.compare-feature-text h3 {
  margin: 6px 0 20px;
  font-size: 1.7rem;
}

.compare-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #55606e;
  font-size: 1rem;
}

.compare-feature-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.compare-feature-icon svg { width: 18px; height: 18px; }

.compare-feature-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 860px) {
  .compare-feature { grid-template-columns: 1fr; gap: 28px; }
}

.compare-slider {
  position: relative;
  width: 100%;
  max-width: none;
  height: 427px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(10,29,77,0.15);
}

@media (max-width: 640px) {
  .compare-slider { height: 320px; }
}

.compare-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.compare-img-top {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.compare-label {
  position: absolute;
  bottom: 14px;
  z-index: 3;
  color: var(--blanco);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: rgba(10,29,77,0.55);
  padding: 5px 12px;
  border-radius: 20px;
  pointer-events: none;
}

.compare-label-left { left: 14px; }
.compare-label-right { right: 14px; }

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--blanco);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(0,0,0,0.35);
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blanco);
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 10px rgba(10,29,77,0.35);
}

.compare-handle::after {
  content: "\276E\276F";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: var(--azul);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 6;
  -webkit-appearance: none;
  appearance: none;
}

.compare-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 44px;
  height: 44px;
  cursor: ew-resize;
}

.compare-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: ew-resize;
}

.compare-caption {
  text-align: center;
  color: #55606e;
  font-size: 0.92rem;
  margin: 14px auto 0;
  max-width: 480px;
}

/* ---------- Carrusel infinito (lentes / novedades) ---------- */
/* El script (index.html) triplica el contenido del track y controla el
   scroll para que el loop sea infinito solo cuando el usuario arrastra,
   usa la rueda del mouse, o desliza con el dedo. No se mueve solo. */

.marquee-carousel {
  position: relative;
}

.marquee-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.marquee-wrap::-webkit-scrollbar { display: none; }

.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.lens-card {
  flex: 0 0 auto;
  width: 250px;
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(10,29,77,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lens-card:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(10,29,77,0.16);
  z-index: 2;
}

.lens-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 640px) {
  .lens-card { width: 200px; }
}

/* ---------- Tarjetas simples "Novedades" ---------- */

.novedad-card {
  flex: 0 0 auto;
  width: 220px;
  display: block;
  text-align: center;
  color: var(--texto);
}

.novedad-card:hover { text-decoration: none; }

.novedad-card .product-photo-wrap {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.novedad-card:hover .product-photo-wrap {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 22px rgba(10,29,77,0.12);
}

.novedad-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: var(--azul);
  margin: 14px 0 0;
}

.novedad-image {
  aspect-ratio: 1 / 1;
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa4b2;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.novedad-card:hover .novedad-image {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 22px rgba(10,29,77,0.12);
}

.novedad-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.novedad-sub {
  color: #8b95a3;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.novedad-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--teal);
  margin: 0;
}

@media (max-width: 640px) {
  .novedad-card { width: 170px; }
}

/* ---------- Grid de productos ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.bestseller-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--teal);
  color: var(--blanco);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 20px;
}

.bestseller-badge-new { background: var(--azul); }

.product-card:hover {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 14px 28px rgba(10,29,77,0.14);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: var(--gris);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.product-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }

.product-info h3 { margin-bottom: 4px; }

.product-desc { color: #55606e; font-size: 0.92rem; flex: 1; }
.product-desc strong { color: var(--azul); }
.product-desc + .product-desc { margin-top: 10px; }

.lens-card-image { aspect-ratio: 23 / 12; }

.section-tight-top .container > h2 { margin-top: 2rem; }
.section-tight-top .container > h2:first-child { margin-top: 0; }
.section-tight-top .container > ul { margin: 0 0 1.2em; padding-left: 20px; }
.section-tight-top .container > ul li { margin-bottom: 6px; color: var(--texto); }
.section-tight-top .container > p { color: var(--texto); line-height: 1.7; }

.lens-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lens-showcase-card {
  flex: 1 1 260px;
  max-width: 260px;
}

.lens-showcase-card {
  position: relative;
  z-index: 1;
}

.lens-showcase-card:hover {
  z-index: 5;
}

.lens-showcase-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
}

.lens-showcase-card:hover img {
  transform: scale(1.35);
  box-shadow: 0 16px 34px rgba(10, 29, 77, 0.3);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  display: block;
}

.gallery-thumbs {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-thumb {
  width: 44px;
  height: 36px;
  padding: 2px;
  border-radius: 6px;
  border: 2px solid var(--blanco);
  background: var(--blanco);
  opacity: 0.65;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

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

.gallery-thumb:hover { opacity: 0.9; }

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--teal);
}

/* ---------- Tarjeta de producto minimalista ---------- */

.product-card-minimal {
  border: none;
  box-shadow: none;
  background: var(--blanco);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-minimal:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10,29,77,0.12);
}

.product-photo-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--blanco);
  overflow: hidden;
}

.product-photo-wrap.is-placeholder {
  background: var(--gris);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  box-sizing: border-box;
  display: block;
}

.product-plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blanco);
  border: 1px solid #d8dee5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--azul);
  box-shadow: 0 2px 6px rgba(10,29,77,0.08);
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  z-index: 2;
}

.product-plus:hover {
  background: var(--azul);
  color: var(--blanco);
  text-decoration: none;
}

.gallery-thumbs-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 0;
}

.product-info-minimal {
  text-align: center;
  padding: 14px 12px 26px;
}

.product-info-minimal h3 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--azul);
}

.product-info-minimal .product-price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8b95a1;
}

/* ---------- Carrusel de productos ---------- */

.product-carousel {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.product-carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 14px;
  -webkit-overflow-scrolling: touch;
}

.product-carousel-track::-webkit-scrollbar { height: 6px; }
.product-carousel-track::-webkit-scrollbar-track { background: transparent; }
.product-carousel-track::-webkit-scrollbar-thumb {
  background: var(--gris);
  border-radius: 4px;
}

.product-carousel-track .product-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.carousel-arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blanco);
  border: 1px solid var(--gris);
  box-shadow: 0 4px 12px rgba(10,29,77,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: var(--azul);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
}

.carousel-arrow:hover { background: var(--azul); color: var(--blanco); }

.carousel-arrow-prev { left: 0; }
.carousel-arrow-next { right: 0; }

@media (max-width: 640px) {
  .product-carousel { padding: 0; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 1.1rem; opacity: 0.9; }
  .product-carousel-track .product-card { flex-basis: 220px; }
}

.product-price {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--azul);
  font-size: 1.2rem;
  margin: 10px 0;
}

.wompi-button-container { margin-top: 8px; }

/* ---------- Formularios ---------- */

.form-card {
  background: var(--blanco);
  border: 1px solid var(--gris);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(10,29,77,0.06);
}

label {
  display: block;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 6px;
  margin-top: 18px;
  font-size: 0.92rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9d1db;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: var(--blanco);
  color: var(--texto);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

.form-submit { margin-top: 26px; width: 100%; }

.form-note {
  font-size: 0.82rem;
  color: #6b7686;
  margin-top: 14px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
}

.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--teal);
}

.form-checkbox label {
  font-size: 0.82rem;
  color: #6b7686;
  font-weight: 400;
  margin: 0;
}

/* ---------- Mensaje emergente de formulario enviado ---------- */

.form-success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 29, 77, 0.55);
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 24px;
}

.form-success-modal.is-visible { display: flex; }

.form-success-box {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(10,29,77,0.28);
}

.form-success-box h3 {
  margin: 0 0 10px;
  color: var(--azul);
}

.form-success-box p {
  margin: 0 0 22px;
  color: #55606e;
}

.form-checkbox label a {
  color: var(--teal);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--azul);
  color: #fff;
  padding: 18px 120px 18px 28px;
  box-shadow: 0 -8px 24px rgba(10, 29, 77, 0.18);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: #d7ddea;
  flex: 1 1 380px;
}

.cookie-banner p a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.cookie-banner-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.cookie-banner-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .cookie-banner { padding: 16px 20px 90px; }
  .cookie-banner p { flex-basis: 100%; }
}

/* ---------- Sobre nosotros / valores ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-item {
  padding: 24px;
  border-left: 3px solid var(--teal);
  background: var(--blanco);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-item:hover {
  transform: scale(1.035);
  box-shadow: 0 10px 24px rgba(10,29,77,0.12);
  z-index: 2;
  position: relative;
}

.value-item h3 { margin-bottom: 8px; }
.value-item p { margin: 0; color: #55606e; }

.value-photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-photo-visual {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(10,29,77,0.10);
}

.value-photo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-grid-stack {
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
}

@media (max-width: 860px) {
  .value-photo-split { grid-template-columns: 1fr; }
  .value-photo-visual { aspect-ratio: 4 / 3; }
}

/* ---------- Lentes ocupacionales (foto + texto, Productos) ---------- */

.lentes-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lentes-feature-text {
  text-align: center;
}

.lentes-feature-text h2 {
  margin: 6px 0 16px;
}

.lentes-feature-text p {
  font-size: 1.1rem;
  color: #55606e;
  margin: 0 auto;
}

.lentes-feature-cta {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gris);
}

.lentes-feature-cta h3 {
  margin-bottom: 10px;
}

.lentes-feature-cta .claim {
  font-size: 1rem;
  color: #55606e;
  margin: 0 auto 20px;
}

.lentes-feature-visual {
  display: flex;
  justify-content: center;
}

.lentes-feature-visual img {
  width: 70%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(10,29,77,0.10);
  display: block;
}

@media (max-width: 860px) {
  .lentes-feature { grid-template-columns: 1fr; }
  .lentes-feature-visual img { width: 60%; }
}

/* Tarjetas con foto (Nosotros) */

.value-item-photo {
  padding: 0;
  border-left: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(10,29,77,0.06);
  border: 1px solid var(--gris);
}

.value-item-photo:hover {
  transform: scale(1.035);
  box-shadow: 0 14px 28px rgba(10,29,77,0.16);
}

.value-item-photo img,
.value-item-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.value-item-photo-placeholder {
  background: var(--gris);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa4b2;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.value-item-photo-body { padding: 22px; }
.value-item-photo-body h3 { margin-bottom: 8px; }
.value-item-photo-body p { margin: 0; color: #55606e; text-align: justify; text-justify: inter-word; }

/* ---------- Texto destacado (lead) y cita ---------- */

.lead-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1.4;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.pull-quote {
  max-width: 640px;
  margin: 8px auto 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--teal);
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--azul);
  line-height: 1.5;
}

/* ---------- Flujo de proceso (pasos con íconos) ---------- */

.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-step {
  flex: 1 1 170px;
  max-width: 200px;
  text-align: center;
}

.process-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 18px rgba(6,166,166,0.28);
  transition: transform 0.2s ease;
}

.process-step:hover .process-step-icon { transform: scale(1.08); }

.process-step-icon svg { width: 28px; height: 28px; }

.process-step .eyebrow { margin-bottom: 6px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: #55606e; margin: 0; }

.process-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  padding-top: 20px;
  opacity: 0.7;
}

.process-arrow svg { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .process-flow { flex-direction: column; align-items: center; gap: 4px; }
  .process-step { max-width: 280px; }
  .process-arrow { transform: rotate(90deg); padding: 2px 0; }
}

/* ---------- Grid de necesidades (tarjetas con ícono suave) ---------- */

.needs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.needs-card {
  flex: 1 1 190px;
  max-width: 220px;
  background: var(--blanco);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(10,29,77,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.needs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(10,29,77,0.14);
}

.needs-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(6,166,166,0.12);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.needs-icon svg { width: 26px; height: 26px; }

.needs-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.needs-card p { font-size: 0.88rem; color: #55606e; margin: 0; }

/* ---------- Fila de valores (ícono con anillo, sin tarjeta) ---------- */

.values-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-badge {
  flex: 1 1 170px;
  max-width: 200px;
  text-align: center;
}

.value-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal);
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.value-badge:hover .value-badge-icon {
  background: var(--teal);
  color: var(--blanco);
}

.value-badge-icon svg { width: 26px; height: 26px; }

.value-badge h3 { font-size: 1rem; margin: 0 0 4px; }
.value-badge p { font-size: 0.88rem; color: #55606e; margin: 0; }

/* ---------- Lista editorial numerada ---------- */

.numbered-list {
  max-width: 820px;
  margin: 0 auto;
}

.numbered-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gris);
}

.numbered-item:last-child { border-bottom: none; }

.numbered-item .num {
  font-family: 'Manrope', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(10,29,77,0.15);
  line-height: 1;
  min-width: 52px;
}

.numbered-item h3 { margin-bottom: 4px; }
.numbered-item p { margin: 0; color: #55606e; }

/* ---------- Cifras / stats ---------- */

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  min-width: 160px;
}

.stat-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: #55606e;
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Franja institucional ---------- */

.strip {
  background: var(--azul);
  color: var(--blanco);
  text-align: center;
  padding: 20px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--azul);
  color: var(--gris);
  padding: 56px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 32px;
}

.footer-grid img { height: 30px; margin-bottom: 14px; }

.footer-grid h4 {
  color: var(--blanco);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--gris); }
.footer-grid a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #9fabc2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Botón flotante de WhatsApp ---------- */
/* Para cambiar el número: edita el href="https://wa.me/..." en cada archivo .html
   (busca el bloque "BOTÓN FLOTANTE DE WHATSAPP"). El número va sin "+" ni espacios,
   con el código de país incluido, ej: 573001234567 */

.whatsapp-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-bubble {
  background: var(--blanco);
  color: var(--azul);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-bubble.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.whatsapp-float {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
}

.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 640px) {
  .whatsapp-wrap { bottom: 18px; right: 18px; gap: 8px; }
  .whatsapp-bubble { font-size: 12px; padding: 8px 12px; }
  .whatsapp-float { width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero .container { flex-direction: column; text-align: center; }
  .btn-row { justify-content: center; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding-top: 10px;
  }
  .nav-links.is-open { display: flex; }
  .brands-row { gap: 24px; }
  .brand-logo { height: 18px; }
}
