/* ============================================================
   WATTSAVER V14.1 — SET.SPACE ARCHITECTURE (CUSTOM ASSETS & ICONS)
   - Espaciado: Retícula Armónica 13px de Set.Space
   - Tono Verde Calibrado: Esmeralda Ejecutivo Templado y Satinado (#1A6B42 / #228452 / #3BA56D)
   - Redes Sociales: Iconos vectoriales SVG en Verde WattSaver con hover luminoso
   - WhatsApp Directo: Botón limpio solo con icono SVG
   - Logo Personalizado: Isotipo de rayo energético + wordmark WattSaver
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&family=DM+Mono:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* Set.Space Spacing Tokens (Base 13px) */
  --space-8: 3.3px;
  --space-5: 4.2px;
  --space-3: 6.5px;
  --space-1: 13px;
  --space-7: 16.3px;
  --space-4: 19.5px;
  --space-10: 23.4px;
  --space-2: 26px;
  --space-6: 39px;
  --space-9: 52px;

  /* Set.Space Radii */
  --radius-1: 3.3px;
  --radius-2: 6.5px;
  --radius-round: 999px;

  /* Paleta Verde Oficial Calibrada */
  --ws-emerald-deep: #164D31;
  --ws-emerald-core: #1A6B42;
  --ws-emerald-mid: #228452;
  --ws-emerald-accent: #3BA56D;
  --ws-emerald-light: #5DBE77;
  --ws-emerald-glow: #8AE4A8;
  --ws-amber: #F59E0B;
  --ws-gold: #C9A84C;

  /* Superficies Claras (Luminosidad) */
  --ws-white: #FFFFFF;
  --ws-pearl: #F6F9F7;
  --ws-tint-green: #E8F2EC;
  --ws-text-dark: #12281B;
  --ws-text-muted-dark: #456250;
  --ws-border-light: rgba(26, 107, 66, 0.15);

  /* Superficies Oscuras con Transparencia Calibrada */
  --ws-bg-base: #0C1711;
  --ws-bg-surface: rgba(20, 42, 30, 0.72);
  --ws-bg-surface-hover: rgba(28, 58, 42, 0.85);
  --ws-border-dark: rgba(59, 165, 109, 0.22);
  --ws-border-subtle: rgba(244, 246, 244, 0.08);

  /* Texto en Modo Oscuro */
  --ws-text-main: #F4F6F4;
  --ws-text-muted: #95B0A0;

  /* Tipografías */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--ws-bg-base);
  color: var(--ws-text-main);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 18.2px;
  letter-spacing: 0.65px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: var(--ws-bg-base);
  color: var(--ws-text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
}

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

i {
  font-style: italic;
  color: var(--ws-emerald-accent);
}

/* ============================================================
   LOGO PERSONALIZADO WATTSAVER (VECTORIAL OFICIAL)
   ============================================================ */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  height: 38px;
  max-width: 200px;
}

.brand-logo-img {
  height: 34px;
  width: auto;
  max-width: 195px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 0 10px rgba(93, 190, 119, 0.4));
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer-logo .brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
}

/* ============================================================
   JERARQUÍA TIPOGRÁFICA REFINADA
   ============================================================ */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 38px);
  line-height: 106%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: var(--ws-text-main);
}

.h1.xl {
  font-size: clamp(34px, 5.2vw, 54px);
  line-height: 102%;
  letter-spacing: -0.02em;
}

.h2 {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 110%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ws-text-main);
}

.h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 120%;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ws-text-main);
}

.h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 16px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--ws-text-muted);
}

.h4.white {
  color: var(--ws-text-main);
}

.h4.dark {
  color: var(--ws-emerald-core);
  font-weight: 600;
}

.h4.green {
  color: var(--ws-emerald-accent);
}

.h4.lime {
  color: var(--ws-emerald-accent);
}

.h4.amber {
  color: var(--ws-amber);
}

p,
.lexxy-editor__content {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ws-text-muted);
}

/* ============================================================
   FRANJAS BLANCAS CON DEGRADADO SUAVE
   ============================================================ */
.section-white-band {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAF8 55%, #E9F3ED 100%);
  color: var(--ws-text-dark);
  border-top: 1px solid var(--ws-border-light);
  border-bottom: 1px solid var(--ws-border-light);
  padding: var(--space-9) var(--space-6);
  width: 100%;
}

.section-white-band .h1 {
  color: var(--ws-text-dark);
}

.section-white-band .h2 {
  color: var(--ws-emerald-core);
}

.section-white-band .h3 {
  color: var(--ws-text-dark);
}

.section-white-band p {
  color: var(--ws-text-muted-dark);
}

.section-white-band .h4 {
  color: var(--ws-text-muted-dark);
}

.section-white-band .feature-section .h1.mid-grey {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 76px);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(26, 107, 66, 0.45);
  margin-bottom: 2px;
  display: block;
}

.section-white-band .feature-text .h4.white {
  color: var(--ws-emerald-core);
  font-weight: 700;
}

.section-white-band .feature-text .h4 {
  color: var(--ws-text-muted-dark);
}

/* Tarjeta Blanca Translúcida */
.card-white-luminous {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--ws-border-light);
  border-radius: 8px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(22, 77, 49, 0.06);
  transition: all 0.22s ease;
  min-height: 140px;
}

.card-white-luminous:hover {
  border-color: var(--ws-emerald-mid);
  box-shadow: 0 10px 30px rgba(22, 77, 49, 0.12);
  transform: translateY(-3px);
}

.card-white-luminous.featured {
  border-color: var(--ws-emerald-mid);
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF7F2 100%);
  box-shadow: 0 8px 28px rgba(34, 132, 82, 0.14);
}

.card-white-luminous .card-top .h6 {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: var(--ws-emerald-core);
  font-weight: 700;
}

.card-white-luminous .card-top .price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ws-emerald-mid);
}

.card-white-luminous p {
  font-size: 14.5px;
  color: var(--ws-text-muted-dark);
  line-height: 1.65;
  margin-top: 10px;
}

/* ============================================================
   BOTONES & ACCIONES
   ============================================================ */
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-height: 42px;
  border-radius: 6px;
  background-color: var(--ws-bg-surface);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--ws-border-dark);
  color: var(--ws-text-main);
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 14px;
  letter-spacing: 0.65px;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 0.18s ease;
}

.button:hover {
  border-color: var(--ws-emerald-accent);
  color: var(--ws-emerald-accent);
  transform: translateY(-1px);
}

.button.green-cta {
  background: linear-gradient(135deg, #2E9E60 0%, #46BF7C 100%);
  border: 1px solid #74D89A;
  color: #06140B !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(46, 158, 96, 0.42);
  text-shadow: none;
}

.button.green-cta:hover {
  background: linear-gradient(135deg, #38AF6E 0%, #56D08E 100%);
  border-color: #8AE4A8;
  color: #020804 !important;
  box-shadow: 0 6px 22px rgba(70, 191, 124, 0.55);
  transform: translateY(-1px);
}

/* ============================================================
   REDES SOCIALES Y WHATSAPP VECTORIALES EN FOOTER (TARJETA BLANCA + ICONO PROMINENTE)
   ============================================================ */
.social-links-grid {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-top: 14px !important;
}

footer .footer-details .social-links-grid a.social-icon-btn,
.social-icon-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  border-radius: 8px !important;
  background: #FFFFFF !important;
  border: 1px solid #FFFFFF !important;
  color: var(--ws-brand-deep) !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
  margin: 0 !important;
  padding: 0 !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

footer .footer-details .social-links-grid a.social-icon-btn svg,
.social-icon-btn svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  fill: var(--ws-brand-deep) !important;
  display: block !important;
  margin: auto !important;
  transition: transform 0.18s ease, fill 0.18s ease !important;
}

footer .footer-details .social-links-grid a.social-icon-btn:hover,
.social-icon-btn:hover {
  background: #FFFFFF !important;
  transform: translateY(-2px) scale(1.05) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22) !important;
}

footer .footer-details .social-links-grid a.social-icon-btn:hover svg,
.social-icon-btn:hover svg {
  fill: var(--ws-brand-alt) !important;
  transform: scale(1.08) !important;
}

/* Botón de WhatsApp Universal (Header & Footer) - WCAG 2.1 AAA Target Size (44x44px) */
.btn-whatsapp-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  border-radius: var(--radius-round) !important;
  background: linear-gradient(135deg, #1A6B42 0%, #25D366 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.28) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}

.btn-whatsapp-icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  fill: #FFFFFF !important;
  display: block !important;
  margin: auto !important;
  transition: transform 0.2s ease !important;
}

.btn-whatsapp-icon:hover {
  transform: translateY(-2px) scale(1.06) !important;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45) !important;
  background: linear-gradient(135deg, #208453 0%, #2be06e 100%) !important;
}

.btn-whatsapp-icon:hover svg {
  transform: scale(1.1) !important;
}

/* ============================================================
   CINTILLO DE ALIADOS ESTRATÉGICOS & RESPALDO TÉCNICO
   ============================================================ */
.trust-ribbon-allies {
  background: rgba(16, 36, 26, 0.90);
  border-top: 1px solid var(--ws-border-dark);
  border-bottom: 1px solid var(--ws-border-dark);
  padding: 36px var(--space-6);
  width: 100%;
}

.trust-ribbon-allies .ribbon-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-ribbon-allies .ribbon-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ws-emerald-glow);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-ribbon-allies .ribbon-items {
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr auto 1.2fr;
  align-items: center;
  gap: 36px;
}

.trust-ribbon-allies .ribbon-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-ribbon-allies .brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.trust-ribbon-allies .brand-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ws-text-muted);
  line-height: 1.55;
}

.trust-ribbon-allies .ribbon-divider {
  width: 1px;
  height: 42px;
  background: var(--ws-border-dark);
}

/* ============================================================
   CINTILLO DE CLIENTES CORPORATIVOS B2B (PROYECTOS PROTEGIDOS)
   ============================================================ */
.trust-ribbon-clients {
  background: #FFFFFF;
  color: var(--ws-text-dark);
  padding: 72px var(--space-6);
  border-top: 1px solid var(--ws-border-light);
  border-bottom: 1px solid var(--ws-border-light);
  width: 100%;
}

.trust-ribbon-clients .ribbon-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.trust-ribbon-clients .ribbon-header-text {
  text-align: center;
  margin-bottom: 44px;
}

.trust-ribbon-clients .ribbon-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ws-brand-deep);
  font-weight: 700;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 6px;
}

.trust-ribbon-clients .h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--ws-text-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.trust-ribbon-clients .clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.trust-ribbon-clients .client-card {
  background: var(--ws-pearl);
  border: 1px solid rgba(26, 107, 66, 0.12);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.22s ease;
  min-height: 130px;
  gap: 8px;
}

.trust-ribbon-clients .client-card:hover {
  background: #FFFFFF;
  border-color: var(--ws-brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 107, 66, 0.12);
}

.trust-ribbon-clients .client-sector {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ws-brand-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.trust-ribbon-clients .client-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--ws-text-dark);
  text-transform: uppercase;
  line-height: 1.25;
  margin: 4px 0;
}

.trust-ribbon-clients .client-meta {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ws-text-muted-dark);
  line-height: 1.45;
}

/* Footer Top Bar */
footer .footer-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
  width: 100%;
}

/* ============================================================
   HEADER CINEMATOGRÁFICO SET.SPACE
   ============================================================ */
header.landing {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-1) var(--space-2);
  z-index: 1000;
  background-color: rgba(12, 23, 17, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ws-border-subtle);
  min-height: 48px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header-nav-links {
  display: flex;
  gap: var(--space-1);
  margin-left: var(--space-2);
}

.header-nav-links a {
  color: var(--ws-text-muted);
  font-size: 12px;
  letter-spacing: 0.65px;
  text-transform: lowercase;
  transition: color 0.15s ease;
}

.header-nav-links a:hover {
  color: var(--ws-emerald-light);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.live-time {
  color: var(--ws-text-muted);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.65px;
}

.mobile-toggle {
  display: none;
  background: rgba(20, 42, 30, 0.6);
  border: 1px solid var(--ws-border-dark);
  color: var(--ws-text-main);
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-1);
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-toggle:hover {
  border-color: var(--ws-emerald-glow);
  color: var(--ws-emerald-glow);
}

.hero-media-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.hero-media-link:hover .editorial-image {
  filter: brightness(1.05);
}

.hero-media-link:focus-visible {
  outline: 2px solid var(--ws-emerald-glow);
  outline-offset: -2px;
}

/* ============================================================
   HERO LANDING (INMERSIÓN EDITORIAL CON TEXTO DENTRO DE LA FOTO)
   ============================================================ */
main.home {
  display: flex;
  flex-direction: column;
  width: 100%;
}

section.landing {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  padding: 0;
  margin: var(--space-3) var(--space-4) var(--space-6) var(--space-4);
  border-radius: var(--radius-2);
  overflow: hidden;
  border: 1px solid var(--ws-border-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: var(--ws-bg-surface);
}

section.landing .hero-media-wrap {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
  display: flex;
}

section.landing .hero-media-wrap figure.editorial-figure,
section.landing .hero-media-wrap .editorial-carousel {
  width: 100%;
  height: 100%;
  min-height: 620px;
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

section.landing .hero-media-wrap .carousel-viewport,
section.landing .hero-media-wrap .carousel-track,
section.landing .hero-media-wrap .carousel-slide {
  height: 100%;
}

section.landing .hero-media-wrap .editorial-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
  filter: brightness(0.55) contrast(1.08);
  transition: filter 0.3s ease;
}

/* Franja superior sutil para el caption de la foto (solo desktop/tablet) */
section.landing .figure-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(6, 12, 9, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  padding: 14px 20px;
}

/* Encabezado sin difuminado sobre foto oscurecida */
.landing-header {
  grid-area: 1 / 1;
  z-index: 4;
  align-self: end;
  width: 100%;
  max-width: 100%;
  padding: 60px var(--space-6) 36px var(--space-6);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: auto;
}

.landing-header .h4.lime {
  display: inline-flex;
  align-items: center;
  background: rgba(12, 28, 19, 0.9);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 4px;
  padding: 6px 14px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--ws-emerald-glow);
  letter-spacing: 0.8px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.landing-header .h1.xl {
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 104%;
}

.landing-header .h1.xl span i {
  color: var(--ws-emerald-glow);
  font-style: italic;
}

.landing-header p {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(14.5px, 1.25vw, 16.5px);
  line-height: 1.65;
  color: rgba(240, 248, 244, 0.94);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
}

.landing-header .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.landing-header .button.green-cta {
  background: linear-gradient(135deg, #2E9E60 0%, #46BF7C 100%);
  color: #06140B !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(46, 158, 96, 0.48);
  border: 1px solid #74D89A;
  text-shadow: none;
}

.landing-header .button.green-cta:hover {
  background: linear-gradient(135deg, #38AF6E 0%, #56D08E 100%);
  color: #020804 !important;
  box-shadow: 0 6px 26px rgba(70, 191, 124, 0.65);
  border-color: #8AE4A8;
}

.landing-header .button:not(.green-cta) {
  background: rgba(12, 23, 17, 0.85);
  border: 1px solid rgba(244, 246, 244, 0.28);
  color: #F4F6F4;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
}

.landing-header .button:not(.green-cta):hover {
  background: rgba(20, 42, 30, 0.95);
  border-color: var(--ws-emerald-glow);
  color: var(--ws-emerald-glow);
}

/* Carrusel Controles en Hero Inmersivo */
section.landing .carousel-nav-btn {
  top: 25%;
  z-index: 6;
}

section.landing .carousel-dots {
  top: 14px;
  right: 20px;
  bottom: auto;
  z-index: 6;
}

/* ============================================================
   CONTENIDO EDITORIAL & CAPÍTULOS
   ============================================================ */
section.content {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.section-dark-band {
  padding: 96px var(--space-6);
  background: var(--ws-bg-base);
}

.content-inner {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

/* Letra Gigante Statement en Franja Blanca */
section.large-text {
  padding: 60px 0;
}

section.large-text .h1 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 124%;
  max-width: 960px;
}

/* Capítulo */
.chapter {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.feature-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.feature-section .h1.mid-grey {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 76px);
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(93, 190, 119, 0.45);
  margin-bottom: 2px;
  display: block;
}

.feature-section .h1 {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 112%;
  letter-spacing: -0.015em;
}

.feature-section p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ws-text-muted);
}

/* Screenshot Frame con Cristal Translúcido */
.screenshot-container {
  width: 100%;
  border: 1px solid var(--ws-border-dark);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--ws-bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin: 24px 0 16px 0;
}

.screenshot-inner {
  padding: 32px 36px;
  background: linear-gradient(180deg, rgba(26, 56, 40, 0.4) 0%, rgba(12, 23, 17, 0.8) 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Matriz de 4 Columnas */
.column-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 24px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-text .h4.white,
.feature-text .feature-title {
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  line-height: 1.3 !important;
}

.feature-text .h4:not(.white),
.feature-text .feature-desc {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: var(--ws-text-muted) !important;
  font-weight: 400 !important;
}

.section-white-band .feature-text .h4.white,
.section-white-band .feature-text .feature-title {
  color: var(--ws-emerald-core) !important;
}

.section-white-band .feature-text .h4:not(.white),
.section-white-band .feature-text .feature-desc {
  color: var(--ws-text-muted-dark) !important;
}

/* Precios */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}

/* FAQs */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  border-top: 1px solid var(--ws-border-subtle);
  padding-top: 80px;
  padding-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.question {
  border-bottom: 1px solid var(--ws-border-subtle);
  padding: 24px 0;
}

.question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.question-header .h3 {
  font-size: 20px;
  line-height: 1.35;
}

.question-header .icon {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--ws-emerald-light);
}

.question-body {
  display: none;
  padding-top: 16px;
}

.question-body.open {
  display: block;
}

.question-body p {
  font-size: 15px;
  color: var(--ws-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER EN ESMERALDA NOBLE CON REDES SOCIALES
   ============================================================ */
footer {
  background: linear-gradient(145deg, #164D31 0%, #1A6B42 50%, #228452 100%);
  color: #FFFFFF;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px var(--space-6) 32px var(--space-6);
  min-height: auto;
  margin-top: 0;
  border-top: 1px solid rgba(93, 190, 119, 0.3);
}

footer .footer-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: var(--space-2);
}

footer .footer-logo .brand-logo-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

footer .footer-logo .brand-logo-footer svg {
  width: 48px;
  height: 48px;
}

footer .footer-logo .h1.xl {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 84%;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-transform: uppercase;
}

footer .footer-details {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: var(--space-6);
  padding-top: var(--space-2);
}

footer .footer-details .h3 {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: 700;
}

footer .footer-details .h4 {
  color: var(--ws-emerald-glow);
  font-size: 10.5px;
  letter-spacing: 0.65px;
  margin-bottom: var(--space-1);
  font-weight: 700;
}

footer .footer-details a:not(.social-icon-btn) {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 18px;
  color: #E6F4EC;
  display: block;
  margin-bottom: var(--space-8);
  transition: color 0.15s ease;
  font-weight: 400;
}

footer .footer-details a:not(.social-icon-btn):hover {
  color: #FFFFFF;
}

footer .footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-1);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #B4DEC5;
}

/* ============================================================
   DRAWER DE NAVEGACIÓN MÓVIL (SET.SPACE ACCESSIBLE)
   ============================================================ */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(12, 23, 17, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--ws-border-dark);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-2);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--ws-border-subtle);
  padding-bottom: var(--space-1);
}

.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--ws-border-subtle);
  color: var(--ws-text-main);
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ws-emerald-glow);
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--space-2);
  flex-grow: 1;
  overflow-y: auto;
}

.mobile-drawer-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ws-text-main);
  margin-bottom: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.mobile-drawer-links a:hover {
  background: rgba(26, 107, 66, 0.25);
  border-color: var(--ws-emerald-accent);
  color: var(--ws-emerald-glow);
  transform: translateX(4px);
}

.mobile-drawer-links a.active {
  background: rgba(26, 107, 66, 0.45);
  border-color: var(--ws-emerald-glow);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(93, 190, 119, 0.2);
}

.mobile-drawer-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.mobile-drawer-footer {
  border-top: 1px solid var(--ws-border-subtle);
  padding-top: var(--space-1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   CALCULADORA / SIMULADOR INTERACTIVO DE AHORRO TÉRMICO
   ============================================================ */
.thermal-calc-container {
  background: linear-gradient(180deg, rgba(20, 42, 30, 0.85) 0%, rgba(12, 23, 17, 0.95) 100%);
  border: 1px solid var(--ws-border-dark);
  border-radius: 12px;
  padding: 32px;
  margin-top: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-top: 1.5rem;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ws-text-muted);
}

.calc-val-badge {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ws-emerald-glow);
  background: rgba(26, 107, 66, 0.3);
  padding: 2px 10px;
  border-radius: var(--radius-round);
  border: 1px solid rgba(93, 190, 119, 0.3);
}

.calc-slider {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-round);
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--ws-emerald-light);
  cursor: pointer;
  transition: background 0.2s;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ws-emerald-glow);
  cursor: pointer;
  box-shadow: 0 0 10px var(--ws-emerald-accent);
  transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-select {
  width: 100%;
  background: rgba(12, 23, 17, 0.8);
  border: 1px solid var(--ws-border-dark);
  color: var(--ws-text-main);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-1);
  outline: none;
  cursor: pointer;
}

.calc-select:focus {
  border-color: var(--ws-emerald-accent);
}

.calc-results-box {
  background: rgba(16, 35, 25, 0.6);
  border: 1px solid rgba(93, 190, 119, 0.2);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.calc-metric-card {
  background: rgba(12, 23, 17, 0.7);
  border: 1px solid var(--ws-border-subtle);
  border-radius: var(--radius-2);
  padding: 14px;
}

.calc-metric-card.highlight {
  border-color: rgba(93, 190, 119, 0.4);
  background: rgba(26, 107, 66, 0.15);
}

.calc-metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ws-text-muted);
  text-transform: uppercase;
}

.calc-metric-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 4px;
}

.calc-metric-val.lime {
  color: var(--ws-emerald-glow);
}

.calc-metric-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ws-emerald-light);
  margin-top: 2px;
}

/* ============================================================
   TIENDA, CATÁLOGO DINÁMICO & CONVERSOR BCV
   ============================================================ */
.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 2rem;
  background: rgba(20, 42, 30, 0.5);
  border: 1px solid var(--ws-border-dark);
  border-radius: 10px;
  padding: 20px;
}

.catalog-search-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  align-items: center;
}

.catalog-search-wrap {
  position: relative;
  width: 100%;
}

.catalog-search-input {
  width: 100%;
  background: rgba(12, 23, 17, 0.85);
  border: 1px solid var(--ws-border-dark);
  border-radius: var(--radius-1);
  padding: 11px 16px 11px 40px;
  color: var(--ws-text-main);
  font-family: var(--font-mono);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}

.catalog-search-input:focus {
  border-color: var(--ws-emerald-accent);
}

.catalog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  fill: var(--ws-text-muted);
  pointer-events: none;
}

.bcv-rate-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.bcv-badge {
  background: rgba(26, 107, 66, 0.35);
  border: 1px solid var(--ws-emerald-accent);
  color: var(--ws-emerald-glow);
  padding: 4px 10px;
  border-radius: var(--radius-1);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bcv-rate-input {
  width: 90px;
  background: rgba(12, 23, 17, 0.9);
  border: 1px solid var(--ws-border-dark);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--radius-1);
  text-align: right;
  outline: none;
}

.bcv-rate-input:focus {
  border-color: var(--ws-emerald-glow);
}

.cat-tabs-row,
.catalog-cat-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
  border-top: 1px solid var(--ws-border-subtle);
  padding-top: 14px;
  padding-bottom: 6px;
}

.cat-tabs-row::-webkit-scrollbar,
.catalog-cat-tabs::-webkit-scrollbar {
  display: none;
}

.cat-tab-btn {
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(12, 23, 17, 0.7);
  border: 1px solid var(--ws-border-subtle);
  color: var(--ws-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: var(--radius-round);
  cursor: pointer;
  transition: all 0.15s ease;
}

.cat-tab-btn:hover {
  border-color: var(--ws-emerald-accent);
  color: var(--ws-text-main);
}

.cat-tab-btn.active {
  background: var(--ws-emerald-core);
  border-color: var(--ws-emerald-glow);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(93, 190, 119, 0.3);
}

.catalog-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--ws-white);
  color: var(--ws-text-dark);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: 1px solid rgba(26, 107, 66, 0.12);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border-color: var(--ws-emerald-core);
}

.product-card:focus-visible {
  outline: 2px solid var(--ws-emerald-accent);
  outline-offset: 2px;
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  border-radius: 6px;
  overflow: hidden;
  background: #F0F4F1;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-cat-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(12, 23, 17, 0.85);
  color: var(--ws-emerald-glow);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-1);
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(93, 190, 119, 0.3);
}

.product-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.sku-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ws-emerald-core);
  background: var(--ws-tint-green);
  padding: 3px 8px;
  border-radius: var(--radius-1);
  font-weight: 700;
}

.stock-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #1A6B42;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ws-text-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ws-text-muted-dark);
  margin-bottom: 16px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-section {
  border-top: 1px solid rgba(26, 107, 66, 0.12);
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-usd-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-usd-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ws-emerald-core);
}

.price-bcv-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ws-text-muted-dark);
}

.price-bcv-val {
  font-weight: 700;
  color: #164D31;
}

.product-buy-btn {
  margin-top: 12px;
  display: block;
  text-align: center;
  background: var(--ws-emerald-core);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: var(--radius-1);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.15s ease;
  position: relative;
  z-index: 2;
}

.product-buy-btn:hover {
  background: var(--ws-emerald-mid);
  color: #FFFFFF;
}

/* ============================================================
   MODAL LIGHTBOX DE FICHA TÉCNICA HD (SET.SPACE ACCESSIBLE)
   ============================================================ */
.ws-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 20, 11, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 32px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ws-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.ws-modal-card {
  background: #0E1F16;
  border: 1px solid var(--ws-border-dark);
  border-radius: 12px;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(26, 107, 66, 0.2);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.ws-modal-backdrop.open .ws-modal-card {
  transform: scale(1) translateY(0);
}

.ws-modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--ws-border-subtle);
  border-radius: 50%;
  color: var(--ws-text-main);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.ws-modal-close-btn:hover {
  background: var(--ws-emerald-core);
  color: #FFFFFF;
  border-color: var(--ws-emerald-glow);
  transform: rotate(90deg);
}

.ws-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  padding: clamp(20px, 3.5vw, 36px);
}

@media (max-width: 768px) {
  .ws-modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
  }
}

.ws-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-modal-main-img-wrap {
  width: 100%;
  height: 320px;
  background: #08120C;
  border: 1px solid var(--ws-border-dark);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.ws-modal-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.ws-modal-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ws-modal-thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background: #08120C;
  border: 1px solid var(--ws-border-subtle);
  cursor: pointer;
  object-fit: contain;
  padding: 4px;
  flex-shrink: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.ws-modal-thumb:hover {
  border-color: var(--ws-emerald-accent);
  transform: scale(1.05);
}

.ws-modal-thumb.active {
  border-color: var(--ws-emerald-glow);
  box-shadow: 0 0 8px rgba(93, 190, 119, 0.4);
}

.ws-modal-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ws-modal-header-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ws-modal-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ws-text-main);
  text-transform: uppercase;
}

.ws-modal-price-box {
  background: rgba(20, 42, 30, 0.7);
  border: 1px solid var(--ws-border-dark);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-price-usd {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.modal-price-usd-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ws-text-muted);
  text-transform: uppercase;
}

.modal-price-usd-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ws-emerald-glow);
}

.modal-price-usd-cur {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ws-emerald-accent);
  font-weight: 700;
}

.modal-price-bcv {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ws-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-price-bcv strong {
  color: #FFFFFF;
  font-weight: 700;
}

.ws-modal-section-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ws-emerald-accent);
  margin-bottom: 6px;
  border-bottom: 1px solid var(--ws-border-subtle);
  padding-bottom: 4px;
}

.ws-modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.ws-spec-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 6px 10px;
}

.ws-spec-key {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ws-text-muted);
  text-transform: uppercase;
  display: block;
}

.ws-spec-val {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-text-main);
  display: block;
}

.ws-modal-desc-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ws-text-muted);
  max-height: 180px;
  overflow-y: auto;
  padding-right: 6px;
  white-space: pre-line;
}

.ws-modal-actions {
  margin-top: 8px;
}

.ws-modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  font-size: 15px;
  text-align: center;
}

.no-products-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px var(--space-2);
  background: rgba(20, 42, 30, 0.4);
  border: 1px dashed var(--ws-border-subtle);
  border-radius: 8px;
  display: none;
}

.no-products-msg.visible {
  display: block;
}

/* ============================================================
   MAQUETACIÓN EDITORIAL DE IMÁGENES & ACTIVOS WEBP
   ============================================================ */
.editorial-figure {
  margin: var(--space-4) 0;
  border-radius: var(--radius-2);
  overflow: hidden;
  border: 1px solid var(--ws-border-dark);
  background: var(--ws-bg-surface);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.editorial-figure:hover {
  border-color: var(--ws-emerald-accent);
}

.section-white-band .editorial-figure {
  border: 1px solid var(--ws-border-light);
  background: var(--ws-white);
  box-shadow: 0 8px 28px rgba(18, 40, 27, 0.08);
}

.editorial-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.editorial-figure:hover .editorial-image {
  transform: scale(1.015);
}

.editorial-image.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.editorial-image.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.figure-caption {
  padding: 10px 16px;
  background: rgba(12, 23, 17, 0.92);
  border-top: 1px solid var(--ws-border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.4;
  color: var(--ws-text-muted);
}

.section-white-band .figure-caption {
  background: #F0F6F2;
  border-top: 1px solid var(--ws-border-light);
  color: var(--ws-text-muted-dark);
}

.figure-caption-tag {
  color: var(--ws-emerald-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.figure-caption-text {
  flex: 1;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-media-wrap {
  margin-top: var(--space-4);
  width: 100%;
  max-width: 100%;
}

.feature-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-4);
  margin: var(--space-4) 0;
}

.product-card-img-wrap {
  width: 100%;
  height: 190px;
  background: #0C1711;
  border-radius: var(--radius-1) var(--radius-1) 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(26, 107, 66, 0.15);
}

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

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

/* ============================================================
   CARRUSELES EDITORIALES INTERACTIVOS (HERO & SEGURIDAD)
   ============================================================ */
.editorial-carousel {
  position: relative;
  width: 100%;
  margin: var(--space-4) 0;
  border-radius: var(--radius-2);
  overflow: hidden;
  border: 1px solid var(--ws-border-dark);
  background: var(--ws-bg-surface);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  user-select: none;
}

.editorial-carousel:hover {
  border-color: var(--ws-emerald-accent);
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.carousel-slide figure.editorial-figure {
  margin: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.carousel-slide .editorial-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Controles de Navegación */
.carousel-nav-btn {
  position: absolute;
  top: calc(50% - 22px);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  background: rgba(12, 23, 17, 0.75);
  border: 1px solid var(--ws-border-dark);
  color: var(--ws-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.carousel-nav-btn:hover {
  background: rgba(26, 107, 66, 0.9);
  border-color: var(--ws-emerald-glow);
  color: #FFFFFF;
  transform: scale(1.08);
}

.carousel-nav-btn:focus-visible {
  outline: 2px solid var(--ws-emerald-glow);
  outline-offset: 2px;
}

.carousel-nav-btn.prev {
  left: 14px;
}

.carousel-nav-btn.next {
  right: 14px;
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Barra de Paginación / Indicadores (Dots) */
.carousel-dots-container {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(12, 23, 17, 0.65);
  border-radius: var(--radius-round);
  border: 1px solid rgba(244, 246, 244, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  background: rgba(244, 246, 244, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(244, 246, 244, 0.7);
}

.carousel-dot.active {
  width: 24px;
  background: var(--ws-emerald-glow);
  box-shadow: 0 0 8px rgba(138, 228, 168, 0.6);
}

@media (max-width: 768px) {
  .carousel-nav-btn {
    width: 36px;
    height: 36px;
    top: calc(50% - 30px);
  }
  .carousel-nav-btn.prev {
    left: 8px;
  }
  .carousel-nav-btn.next {
    right: 8px;
  }
  .carousel-dots-container {
    bottom: 54px;
    padding: 4px 8px;
    gap: 6px;
  }
  .carousel-dot.active {
    width: 18px;
  }
  .figure-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .figure-caption-text {
    text-align: left;
    white-space: normal;
  }
}

/* ============================================================
   RESPONSIVIDAD & ZERO OVERFLOW
   ============================================================ */
@media (max-width: 1024px) {
  header.landing {
    padding: var(--space-1);
  }

  section.landing {
    margin: var(--space-2);
    min-height: 540px;
    padding: 0;
  }

  section.landing .hero-media-wrap figure.editorial-figure,
  section.landing .hero-media-wrap .editorial-carousel,
  section.landing .hero-media-wrap .editorial-image {
    min-height: 540px;
  }

  .landing-header {
    padding: 60px var(--space-3) 30px var(--space-3);
  }

  .section-white-band,
  .section-dark-band {
    padding: var(--space-6) var(--space-2);
  }

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

  .trust-ribbon-allies .ribbon-items {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .trust-ribbon-allies .ribbon-divider {
    display: none;
  }

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

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

  .two-column {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

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

  .catalog-search-row {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }

  .bcv-rate-box {
    width: 100%;
    justify-content: space-between;
  }

  footer {
    padding: var(--space-2);
  }

  footer .footer-details {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
  }
}

@media (max-width: 640px) {

  .header-nav-links,
  .live-time {
    display: none;
  }

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

  .header-right {
    gap: 14px;
    margin-left: 8px;
  }

  section.landing {
    margin: var(--space-2);
    border-radius: var(--radius-2);
    border: 1px solid var(--ws-border-dark);
    min-height: 520px;
    height: auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    background: #060E0A;
  }

  section.landing .hero-media-wrap figure.editorial-figure,
  section.landing .hero-media-wrap .editorial-carousel,
  section.landing .hero-media-wrap .editorial-image {
    min-height: 520px;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 0;
    filter: brightness(0.72) contrast(1.06);
  }

  section.landing .figure-caption {
    display: none;
  }

  section.landing .carousel-nav-btn {
    display: none;
  }

  section.landing .carousel-dots {
    top: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 6px;
    border-radius: 12px;
  }

  .landing-header {
    padding: 24px 14px 18px 14px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(180deg, 
      transparent 0%, 
      rgba(6, 14, 10, 0.3) 20%, 
      rgba(6, 14, 10, 0.8) 60%, 
      rgba(6, 14, 10, 0.95) 100%
    );
  }

  .landing-header .h4.lime {
    font-size: 9.5px;
    line-height: 13px;
    padding: 3px 7px;
    letter-spacing: 0.4px;
    white-space: normal;
    margin-bottom: 8px;
  }

  .landing-header .h1.xl {
    font-size: clamp(20px, 5.8vw, 26px);
    margin-bottom: 8px;
    line-height: 106%;
  }

  .landing-header p {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 14px;
    color: rgba(240, 248, 244, 0.94);
  }

  .landing-header .buttons {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .landing-header .buttons .button {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 10px 14px;
    font-size: 13px;
  }

  .column-4 {
    grid-template-columns: 1fr;
  }

  .trust-ribbon-clients .clients-grid {
    grid-template-columns: 1fr;
  }

  .calc-metrics-grid {
    grid-template-columns: 1fr;
  }

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

  footer .footer-details {
    grid-template-columns: 1fr;
  }

  footer .footer-logo .h1.xl {
    font-size: 12vw;
  }
}

/* ============================================================
   BOTÓN FLOTANTE PERSISTENTE WHATSAPP (FAB)
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: var(--radius-round);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 0 0 3px rgba(37, 211, 102, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: #FFFFFF;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55), 0 0 0 5px rgba(37, 211, 102, 0.22);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.whatsapp-fab:focus-visible {
  outline: 2px solid var(--ws-emerald-glow);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .whatsapp-fab {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .whatsapp-fab svg {
    width: 25px;
    height: 25px;
  }
}

/* ============================================================
   FORMULARIO DE COTIZACIÓN FORMAL B2B (CONTACTO / RFQ)
   ============================================================ */
.quote-form-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 20px auto 0 auto;
}

.quote-form {
  display: grid;
  gap: 16px;
  width: 100%;
  background: var(--ws-bg-surface);
  border: 1px solid var(--ws-border-dark);
  border-radius: 12px;
  padding: clamp(20px, 3.5vw, 36px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quote-form-group.full-width {
  grid-column: span 2;
}

.quote-form label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ws-text-main);
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  background: rgba(12, 23, 17, 0.85);
  border: 1px solid var(--ws-border-dark);
  border-radius: 6px;
  color: var(--ws-text-main);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--ws-emerald-accent);
  box-shadow: 0 0 0 3px rgba(59, 165, 109, 0.25);
}

.quote-form textarea {
  min-height: 110px;
  resize: vertical;
}

@media (max-width: 640px) {
  .quote-form-grid {
    grid-template-columns: 1fr;
  }
  .quote-form-group.full-width {
    grid-column: span 1;
  }
}