/* ============================================================
   GBOMEDICAL — styles.css
   Foco: Navbar pill + Hero Slide 1 exacto al maquetado
   ============================================================ */

/* ============================================================
   1. VARIABLES
   ============================================================ */
:root {

    --color-navy: #00465a;
  --color-navy-dark: #003746;
  --color-navy-deep: #002f3f;

  --color-cyan: #25c6dc;
  --color-cyan-soft: #35c6d6;
  --color-cyan-light: #42d4e5;

  --color-hero-bg: #005b73;
  --color-hero-light: #39c4d6;


  --font-titulo:  'Merriweather', serif;
  --font-cuerpo:  'Inter', sans-serif;

  --fs-xs:   0.72rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.2rem;
  --fs-lg:   1.6rem;
  --fs-xl:   2rem;
  --fs-xxl:  2.8rem;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-pill: 999px;

  --sombra-sm:   0 2px 10px rgba(0,0,0,0.15);
  --sombra-md:   0 6px 24px rgba(0,0,0,0.3);
  --sombra-cyan: 0 4px 20px rgba(0,200,232,0.45);

  --transicion: 0.3s ease;
  --max-width: 1200px;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



body{
    font-family: var(--font-cuerpo);
    color: var(--color-blanco);
    line-height:1.6;

    background:
      radial-gradient(
        circle at 22% 78%,
        rgba(37,199,230,.32) 0%,
        rgb(0,123,148) 22%,
        transparent 48%
      ),

      radial-gradient(
        circle at 78% 22%,
        rgba(37,199,230,.26) 0%,
        rgba(37,199,230,.08) 24%,
        transparent 46%
      ),

      radial-gradient(
        circle at 55% 48%,
        rgba(0,70,90,.22) 0%,
        transparent 58%
      ),

      linear-gradient(
        180deg,
        #00384b 0%,
        #003c4f 35%,
        #003140 70%,
        #002b39 100%
      );

    -webkit-font-smoothing: antialiased;
}



body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:9999;
  pointer-events:none;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.55'/%3E%3C/svg%3E");

  background-size:180px 180px;
  opacity:.055;
  mix-blend-mode:soft-light;
}


body.precontacto-locked {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}


h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transicion);
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,800&display=swap');

/* ============================================================
   3. NAVBAR
   — pill oscuro flotante centrado, "Contactanos" sub-pill cyan
   ============================================================ */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem var(--sp-md);
  display: flex;
  justify-content: center;
  overflow: visible;
}

.navbar {
  display: inline-flex;
  align-items: center;
  background-color: rgba(15, 35, 60, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.35rem 0.35rem 1.6rem;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

/* LOGO oculto (no aparece en el maquetado) */
.navbar__logo {
  display: none;
}

/* LINKS del menú */
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__menu li {
  display: flex;
}

.navbar__menu a {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-cuerpo);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  transition: var(--transicion);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.navbar__menu a:hover {
  color: var(--color-blanco);
  background-color: rgba(255,255,255,0.09);
}

.navbar__menu a.active {
  color: var(--color-blanco);
}

/* BOTÓN CTA — sub-pill cyan adosado a la derecha */
.navbar__cta {
  margin-left: 0.5rem;
}

.navbar__cta .btn--primary {
  background-color: var(--color-cyan);
  color: var(--color-navy);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-cuerpo);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 1.5rem;
  cursor: pointer;
  transition: var(--transicion);
  box-shadow: var(--sombra-cyan);
  display: inline-block;
  letter-spacing: 0.01em;
}

.navbar__cta .btn--primary:hover {
  background-color: var(--color-cyan-light);
  box-shadow: 0 6px 28px rgba(0,200,232,0.6);
  transform: translateY(-1px);
}

/* HAMBURGUESA */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xs);
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-blanco);
  transition: var(--transicion);
}


/* ============================================================
   4. HERO & ESTRUCTURA GENERAL
   ============================================================ */

:root {
  --hero-height: calc(115vh + 220px);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  overflow: visible;
  background: none;
  margin-bottom: 0;
  padding-bottom: 0;
}


.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent,
    #004156
  );
}


/* SLIDER */
.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  background: #071320;
}

/* VIDEO GLOBAL */
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.50;
}

/* GRADIENTE GLOBAL */
.hero__slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    135deg,
    #0d2137,
    #1a3a56,
    #00d4e8,
    #00d4e8,
    #368dd9,
    #00caf7
  );

  background-size: 300% 300%;
  animation: gradienteAnimado 6s ease infinite;
  opacity: 0.60;
}

/* TEXTURA GLOBAL */
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;

  background-image: url('../imagenes/productos/textura.png');
  background-size: cover;
  background-position: center;
  opacity: .12;
  mix-blend-mode: soft-light;
}


/* Quitamos fondos propios del slide 1 */
.hero__slide--1 {
background:
radial-gradient(
circle at 62% 35%,
rgba(255,255,255,.18) 0%,
rgba(37,199,230,.18) 18%,
transparent 48%
),

radial-gradient(
circle at 18% 72%,
rgba(37,199,230,.20) 0%,
transparent 42%
),

linear-gradient(
145deg,
#0A5F72 0%,
#0A4E63 35%,
#08465A 68%,
#043749 100%
);

}

.hero__slide--1::before,
.hero__slide--1::after {
  display: none;
}

/* Quitamos fondo propio del slide 2 porque ahora es global */
.hero__slide--s2 {
  background: transparent !important;
}

.hero__slide--s2::before {
  display: none;
}

/* Quitamos fondos propios de slides 3, 4 y 5 */
.hero-product {
  background: transparent !important;
}

.hero-product__texture {
  display: none;
}


/* LYERS */
.hero__dark-core {
  position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* ← sigue al slide completo */
  min-height: var(--hero-height);
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 60%,
      rgba(1, 23, 45, 0.75) 0%,
      rgba(0, 56, 77, 0.70) 45%,
      rgba(0, 55, 85, 0.65) 100%
    ),
    radial-gradient(ellipse at 20% 40%,
      rgba(0, 31, 46, 0.70) 0%,
      transparent 80%
    );
  /* FIX: multiply deja pasar el video y el gradiente */
  mix-blend-mode: multiply;
}

/* ── VIGNETTE ── */
.hero__vignette {
  position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* ← sigue al slide completo */
  min-height: var(--hero-height);
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0, 69, 90, 0.85) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(0, 85, 82, 0.75) 0%, transparent 40%),
    radial-gradient(ellipse at 0% 100%, rgba(0, 14, 43, 0.8) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(0, 37, 72, 0.7) 0%, transparent 40%);
}

/* ── GRADIENTE METÁLICO ── */
.hero__metal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* ← sigue al slide completo */
  min-height: var(--hero-height);
  z-index: 3;
  pointer-events: none;
  opacity: 0.6;
  background:
    radial-gradient(ellipse at 20% 50%, #00e1ff 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #003352 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, #269dc6 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, #26b4e8 0%, transparent 40%);
  mix-blend-mode: screen;
}

/* ── NOISE ── */
.hero__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* ← sigue al slide completo */
  min-height: var(--hero-height);
  z-index: 6;
  pointer-events: none;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* ── MESH ── */
.hero__mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* ← sigue al slide completo */
  min-height: var(--hero-height);
  z-index: 5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Cpolygon points='14,2 26,9 26,15 14,22 2,15 2,9' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 28px 24px;
  background-repeat: repeat;
  mix-blend-mode: soft-light;
  animation: meshFlow 8s ease-in-out infinite;
  opacity: 0.01;
}

@keyframes meshFlow {
  0%   { background-position: 0px 0px;   opacity: 0.08; }
  25%  { background-position: 10px 5px;  opacity: 0.12; }
  50%  { background-position: 20px 10px; opacity: 0.08; }
  75%  { background-position: 10px 15px; opacity: 0.11; }
  100% { background-position: 0px 0px;   opacity: 0.08; }
}


/* ============================================================
   TRANSICIÓN HERO — PROFUNDIDAD POR CAPAS
   ============================================================ */

.hero__slider {
  perspective: 1600px;
  transform-style: preserve-3d;
}

/* SLIDE BASE */
.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: transparent !important;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(4%) scale(.985);

  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    opacity .22s ease,
    visibility 0s linear .55s;

  will-change: transform, opacity;
}

/* SLIDE ACTIVO */
.hero__slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 12;

  transform: translateX(0) scale(1);

  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    opacity .22s ease,
    visibility 0s;
}

/* SLIDE SALIENTE */
.hero__slide.is-leaving {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 11;

  transform: translateX(-4%) scale(.985);
}


/* ============================================================
   SLIDE 1 — 3D SOLO AL SALIR
   ============================================================ */
/* ============================================================
   FIX SLIDE 1 — ENTRADA ORIGINAL + ROTACIÓN SOLO AL SALIR
============================================================ */

/* Slide 1 no usa el movimiento general al entrar */
.hero__slide--1 {
  transform: none;
}

/* Cuando está activo, queda fijo para que sus animaciones internas originales funcionen */
.hero__slide--1.active {
  transform: none;
  opacity: 1;
  visibility: visible;
}

/* Recién cuando sale, rota/desplaza el slide completo */
.hero__slide--1.is-leaving {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 11;

  transform:
    translateX(-4%)
    translateZ(-80px)
    rotateY(-10deg)
    scale(.98);

  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    opacity .22s ease;
}

/* Elementos internos: no tocar entrada */
.hero__slide--1.active .hero__personaje,
.hero__slide--1.active .hero__texto-cyan,
.hero__slide--1.active .hero__texto-titulo,
.hero__slide--1.active .hero__texto-fondo,
.hero__slide--1.active .hero__forma--cyan,
.hero__slide--1.active .hero__forma--oscura,
.hero__slide--1.active .hero__forma--cyan-titulo {
  /* NO poner transform acá */
}

/* Elementos internos rotan/desfasan solo al salir */
.hero__slide--1.is-leaving .hero__personaje {
  transform:
    translateX(-50px)
    translateZ(40px)
    rotateY(-13deg);
}

.hero__slide--1.is-leaving .hero__forma--cyan {
  transform:
    translateX(-30px)
    translateZ(10px)
    rotateY(-9deg);
}

.hero__slide--1.is-leaving .hero__forma--oscura {
  transform:
    translateX(-18px)
    translateZ(-10px)
    rotateY(-6deg);
}

.hero__slide--1.is-leaving .hero__forma--cyan-titulo {
  transform:
    translateX(330px)
    translateY(65px)
    scaleX(1.2)
    translateZ(20px)
    rotateY(-8deg);
}

.hero__slide--1.is-leaving .hero__texto-fondo {
  transform:
    translate(-38%, -48%)
    translateX(-18px)
    translateZ(-120px)
    rotateY(-4deg);
}

.hero__slide--1.is-leaving .hero__texto-cyan,
.hero__slide--1.is-leaving .hero__texto-titulo {
  transform:
    translateX(-20px)
    translateZ(45px)
    rotateY(-3deg);
}


/* ============================================================
   SLIDE 2 — PROFUNDIDAD POR BLOQUE
   ============================================================ */

.hero__slide--s2 .s2__visual,
.hero__slide--s2 .s2__content {
  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    opacity .25s ease;

  transform-style: preserve-3d;
  will-change: transform, opacity;
}

/* Slide 2 activo */
.hero__slide--s2.active .s2__visual {
  transform:
    scale(0.85)
    translateY(-130px)
    translateZ(75px)
    rotateY(0deg);
}

.hero__slide--s2.active .s2__content {
  transform:
    translateY(-50%)
    translateZ(80px);
}

/* Slide 2 saliendo */
.hero__slide--s2.is-leaving .s2__visual {
  transform:
    scale(0.85)
    translateY(-130px)
    translateX(-50px)
    translateZ(25px)
    rotateY(-12deg);
}

.hero__slide--s2.is-leaving .s2__content {
  transform:
    translateY(-50%)
    translateX(-24px)
    translateZ(55px)
    rotateY(-4deg);
}


/* ============================================================
   SLIDES 3, 4 Y 5 — PROFUNDIDAD POR PRODUCTO
   ============================================================ */

.hero-product__producto,
.hero-product__persona,
.hero-product__glow {
  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    opacity .25s ease;

  transform-style: preserve-3d;
  will-change: transform, opacity;
}

/* Activo */
.hero-product.active .hero-product__producto {
  transform:
    translate(-50%, -50%)
    translateZ(90px)
    rotateY(0deg);
}

.hero-product.active .hero-product__persona {
  transform:
    translateZ(30px)
    rotateY(0deg);
}

.hero-product.active .hero-product__glow {
  transform:
    translate(-50%, -50%)
    translateZ(-60px);
}

/* Saliendo */
.hero-product.is-leaving .hero-product__producto {
  transform:
    translate(-50%, -50%)
    translateX(-45px)
    translateZ(40px)
    rotateY(-12deg);
}

.hero-product.is-leaving .hero-product__persona {
  transform:
    translateX(-25px)
    translateZ(10px)
    rotateY(-7deg);
}

.hero-product.is-leaving .hero-product__glow {
  transform:
    translate(-50%, -50%)
    translateX(-20px)
    translateZ(-90px);
}






/* ============================================================
   SLIDE 1 — Rediseño con formas geométricas
   ============================================================ */


.hero__slide--1 {
  position: absolute;
  top: 0;        /* ← anclado arriba */
  left: 0;
  width: 100%;
  height: 115vh; /* ahora crece hacia abajo únicamente */
  overflow: visible;
  background: transparent;
  opacity:  1;
    background:
    radial-gradient(circle at 58% 35%,
      rgba(75, 210, 220, 0.55) 0%,
      rgba(36, 165, 190, 0.35) 24%,
      transparent 48%
    ),
    radial-gradient(circle at 35% 42%,
      rgba(35, 190, 215, 0.38) 0%,
      transparent 42%
    ),
    radial-gradient(circle at 82% 40%,
      rgba(60, 200, 215, 0.28) 0%,
      transparent 35%
    ),
    linear-gradient(180deg,
      #0b5f73 0%,
      #075368 48%,
      #03485d 100%
    );
  background-color: #005267;

}
.hero__slide--1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 82, 103, 0) 0%,
      rgba(0, 82, 103, 0.25) 65%,
      #005267 100%
    );
}


.hero__slide--1::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background-image: url('../imagenes/productos/textura.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.3;
  mix-blend-mode: soft-light;

  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    black 12%,
    black 75%,
    transparent 100%
  );

  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    black 12%,
    black 75%,
    transparent 100%
  );
}


/* ============================================================
   TEXTOS — SIN CAMBIOS DE POSICIÓN
   ============================================================ */

.hero__texto-cyan {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  left: 30%;
  width: 25%;
  top: 55%;
  padding: 1.5% 5%;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(14px);
  will-change: transform, opacity, filter;
    backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  color: var(--color-navy)
  
}

.hero__texto-cyan p {
  margin: 0;
  font-size: clamp(1rem, 1.3vw, 1.8rem);
  line-height: 1.3;
  color: white;
  font-family: inherit;
  letter-spacing: 0.08em;
   text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

  }


.hero__texto-cyan strong { font-weight: 700; }

.hero__texto-titulo {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  left: 32.3%;
  top: 71.5%;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1% 3%;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(14px);
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero__texto-titulo p {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  font-weight: 900;
  font-style: italic;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', sans-serif;
}

.hero__forma--cyan-titulo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 105%;
  pointer-events: none;
  z-index: 10;

  clip-path: polygon(
    16.15% 61.39%,
    42.34% 61.20%,
    39.27% 70.09%,
    16.09% 70.46%
  );

 background:
radial-gradient(
circle at 20% 15%,
rgba(255,255,255,.18),
transparent 45%
),

linear-gradient(
145deg,
#46d7e9 0%,
#2399b8 58%,
#08526b 100%
);

border:1px solid rgba(255,255,255,.15);

box-shadow:
0 20px 40px rgba(0,0,0,.30),
0 0 28px rgba(37,199,230,.18);

  transform: translateX(346.5px) translateY(65px) scaleX(1.2);
}


.hero__texto-fondo {
  position: absolute;
  top: 18%;
  left: 30%;
  transform: translate(-38%, -48%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 0.92;
  pointer-events: none;
  user-select: none;
}

.hero__texto-fondo span {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(5rem, 13vw, 14rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0.4;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.12);
  letter-spacing: -0.02em;
  line-height: 0.8;
  filter: blur(2px);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 25%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.35) 72%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 30%,
    rgba(0,0,0,0.75) 50%,
    rgba(0,0,0,0.35) 72%,
    transparent 100%
  );
}

.hero__texto-fondo span::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

@keyframes textRevealPro {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
    filter: blur(14px);
  }

  55% {
    opacity: 1;
    filter: blur(3px);
    transform: translateY(5px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
    filter: blur(0);
  }
}

.hero__slide--1.active .hero__texto-cyan {
  animation: textRevealPro 0.7s cubic-bezier(.19,1,.22,1) 0.25s both;
}

.hero__slide--1.active .hero__texto-titulo {
  animation: textRevealPro 0.7s cubic-bezier(.19,1,.22,1) 0.35s both;
}


/* ============================================================
   FIGURAS GEOMÉTRICAS — SIN CAMBIOS DE POSICIÓN
   ============================================================ */

.hero__forma--cyan {
  position: absolute;
  inset: 0;
  width: 90%;
  height: 100%;
  z-index: 6;
  left: 80px;
  top: -20px;
  pointer-events: none;
  clip-path: polygon(
    30% 55.7%,  /*superior izquierdo*/
    50.0% 56.1%,  /*superior derecho*/
    50.0% 99.3%,  /*inferior derecho*/
    30% 85.9%   /*inferior izquierdo*/
  );

    background: linear-gradient(
    180deg,
    #45D6E8 0%,
    #297D9C 45%,
    #004A65 100%
  );
box-shadow:non;
border: none;
}


.hero__forma--oscura {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  top: -30px;
  pointer-events: none;
  left: -1px;
  clip-path: polygon(
    32.3% 56.7%,
    27.6% 79.5%,
    32.3% 81.4%
  );
  background: #29c5e3;
  opacity: 0.3;
}


/* ============================================================
   PERSONAJE — SIN CAMBIOS DE POSICIÓN
   FIX: wrapper con opacity:1 visible por defecto
   ============================================================ */

/* FIX: visible por defecto en desktop */
.hero__wrapper-personaje {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 115vh;
  pointer-events: none;
  overflow: visible;  /* importante para que la niebla no se corte */
}

.hero__personaje {
  position: absolute;
  left: 38%;
  bottom: 15%;
  height: 70%;
  width: auto;
  object-fit: contain;
  z-index: 5;
  pointer-events: none;
filter:
drop-shadow(0 0 18px rgba(37,199,230,.20))
drop-shadow(0 0 40px rgba(37,199,230,.16))
drop-shadow(0 20px 45px rgba(0,0,0,.28));

}


.hero__personaje-glow {
  position: absolute;
  left: 50%;
  top: 52%;

  width: 850px;
  height: 850px;

  transform: translate(-50%, -50%);
  background:
radial-gradient(
ellipse,

rgba(255,255,255,.65) 0%,

rgba(170,245,255,.48) 16%,

rgba(37,199,230,.30) 42%,

rgba(37,199,230,.10) 62%,

transparent 82%
);

filter:blur(70px);

  z-index: 3;
  pointer-events: none;
}

/* ============================================================
   ANIMACIONES
   ============================================================ */

.hero__slide--1.active .hero__content {
  animation: cardSlideIn 0.9s cubic-bezier(.19,1,.22,1) 0.1s both;
}

.hero__slide--1.active .hero__card-oscura {
  animation: cardSlideIn 0.9s cubic-bezier(.19,1,.22,1) 0.25s both;
}

.hero__slide--1.active .hero__titulo {
  animation: titleInPremium 1s cubic-bezier(.19,1,.22,1) 0.7s both;
}

.hero__slide--1.active .hero__personaje {
  animation: characterIn 1s cubic-bezier(.19,1,.22,1) 0.4s both;
}

.hero__slide--1.active .hero__texto-fondo {
  animation: fadeInFondo 1.5s ease 0.2s both;
}

.hero__slide--1.active .hero__forma {
  animation: formaIn 1s cubic-bezier(.19,1,.22,1) 0.3s both;
}

@keyframes cardSlideIn {
  0%   { opacity: 0; transform: translateX(-60px) translateY(20px); filter: blur(10px); }
  60%  { opacity: 1; filter: blur(1px); }
  100% { opacity: 1; transform: translateX(0) translateY(0); filter: blur(0); }
}

@keyframes titleInPremium {
  0%   { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  60%  { opacity: 1; filter: blur(1px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* FIX: estado final de characterIn sin transform: none que pisaba la animación */
@keyframes characterIn {
  0%   { opacity: 0; transform: translateY(120px) scale(0.9); filter: blur(12px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeInFondo {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes formaIn {
  0%   { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .hero__wrapper-personaje { opacity: 0; visibility: hidden; }
  .hero__forma { display: none; }
  .hero__texto-fondo { display: none; }
  .hero__slide--1 .hero__content {
    left: 5%;
    bottom: 180px;
    width: 85%;
    max-width: 400px;
  }
  .hero__card-oscura {
    left: 5%;
    bottom: 40px;
    width: 85%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero__titulo { font-size: 1.6rem; }
  .hero__subtitulo { font-size: 0.9rem; }
}


/* ============================================================
   ESTADO FINAL GARANTIZADO
   FIX: se quitó transform: none del personaje para no pisar characterIn
   ============================================================ */
.hero__slide--1.active .hero__content,
.hero__slide--1.active .hero__card-oscura,
.hero__slide--1.active .hero__titulo,
.hero__slide--1.active .hero__texto-fondo,
.hero__slide--1.active .hero__forma--triangulo-derecha,
.hero__slide--1.active .hero__forma--triangulo-izquierda {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}

/* FIX: personaje separado para no forzar transform:none que rompía la animación */
.hero__slide--1.active .hero__personaje {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============================================================
   SLIDE 2
   ============================================================ */

.hero__slide--s2 {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #071320;
}

/* GRADIENTE DE FONDO ANIMADO */
.hero__slide--s2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    #0d2137,
    #1a3a56,
    #00d4e8,
    #00d4e8,
    #368dd9,
    #00caf7
  );
  background-size: 300% 300%;
  animation: gradienteAnimadoS2 6s ease infinite;
  opacity: 0.60;
}

@keyframes gradienteAnimadoS2 {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* VIDEO */
.s2__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.10;
}

/* FORMA 2 — atrás */
.s2__forma2 {
  position: absolute;
  inset: 0;
  z-index: 3;
  clip-path: polygon(
    47.71% 15.83%,   /* superior izquierdo */
    61.15% 35.83%,   /* superior derecho   */
    60.73% 79.17%,   /* inferior derecho   */
    47.86% 79.54%    /* inferior izquierdo */
  );
  background:
linear-gradient(
145deg,
#46d7e9 0%,
#2399b8 58%,
#08526b 100%
);
  opacity: 1;
}


/* FORMA 1 — adelante */
.s2__forma1 {
  position: absolute;
  inset: 0;
  z-index: 4;
  clip-path: polygon(
    30.47% 28.61%,
    47.66% 58.98%,
    47.55% 88.06%,
    30.26% 87.96%
  );
  background:
linear-gradient(
145deg,
rgba(82,224,237,.92) 0%,
rgba(9,112,132,.86) 100%
);

  opacity: 1;
}

/* TEXTO "CATÁLOGO" de fondo */
.s2__catalogo-text {
  position: absolute;
  z-index: 6;
  left: 29%;
  top: 30%;
  font-size: 9.5vw;
  font-weight: 900;
  color: #ffffff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  opacity: 1;
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

/* FOTO */
/* PERSONAJE 2 — grande, atrás */
.s2__foto2 {
  position: absolute;
  z-index: 3;
  top: 15.46%;     /* arranca en Y=167px de tu canvas */
  left: 35%;
  height: 60%;
  width: auto;
}


/* PERSONAJE 1 — chico, adelante */
.s2__foto1 {
  position: absolute;
  z-index: 3;
  top: 36.30%;
  left: 43%;        /* sobre la forma 1 */
  height: 50%;   /* ocupa hasta el fondo */
  width: auto;
}


/* CONTENIDO TEXTO */
.s2__content {
  position: absolute;
  z-index: 7;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 22%;
}

.s2__content p {
  color: #e0f4ff;
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.s2__content p strong {
  color: #ffffff;
  font-weight: 700;
}

/* BOTÓN */
.s2__btn {
  display: inline-block;
  background:
linear-gradient(
145deg,
#46d7e9 0%,
#2399b8 58%,
#08526b 100%
);

color:#fff;

border:1px solid rgba(255,255,255,.15);

box-shadow:
0 18px 40px rgba(0,0,0,.28),
0 0 24px rgba(37,199,230,.22);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow:
    0 0 8px rgba(0,212,232,0.6),
    0 0 20px rgba(0,212,232,0.4);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.s2__btn:hover {
  filter:brightness(1.06);

transform:
translateY(-2px)
scale(1.02);

box-shadow:
0 24px 55px rgba(0,0,0,.35),
0 0 35px rgba(37,199,230,.30);

}

.s2__visual {
  position: absolute;
  inset: 0;
  z-index: 3;

  transform: scale(0.85) translateY(-130px);

  transform-origin: center center;
  pointer-events: none;
}



/* ============================================================
   SLIDE 2 — Animaciones de aparición
   ============================================================ */

@keyframes s2Reveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(.96);
    filter: blur(10px);
    letter-spacing: .15em;
  }

  60% {
    opacity: .8;
    transform: translateY(-6px) scale(1.015);
    filter: blur(1px);
    letter-spacing: .04em;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    letter-spacing: 0;
  }
}

@keyframes s2Glow {
  0%,100% {
    text-shadow:
      0 0 8px rgba(255,255,255,.15),
      0 0 18px rgba(0,212,232,.15),
      0 2px 12px rgba(0,0,0,.45);
  }

  50% {
    text-shadow:
      0 0 14px rgba(255,255,255,.35),
      0 0 35px rgba(0,212,232,.35),
      0 2px 16px rgba(0,0,0,.55);
  }
}

@keyframes aparecerAbajo {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse{

0%,100%{

box-shadow:
0 20px 45px rgba(0,0,0,.30),
0 0 22px rgba(37,199,230,.20);

}

50%{

box-shadow:
0 22px 48px rgba(0,0,0,.32),
0 0 42px rgba(37,199,230,.34);

}

}


/* ============================================================
   SLIDE 2 — Animación de gradiente de fondo
   ============================================================ */

@keyframes gradienteAnimado {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__slide--s2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    #0d2137,
    #1a3a56,
    #00d4e8,
    #00d4e8,
    #368dd9,
    #00caf7
  );
  background-size: 300% 300%;
  animation: gradienteAnimado 6s ease infinite;
  opacity: 0.60;
}



/* ============================================================
   SLIDES 3, 4, 5 — PRODUCTOS DESTACADOS
============================================================ */

.hero-product {
  position: absolute;
  inset: 0;
  overflow: hidden;
    background:
    radial-gradient(
      circle at 50% 55%,
      rgba(255,255,255,.35) 0%,
      rgba(37,199,230,.22) 22%,
      transparent 50%
    ),

    radial-gradient(
      circle at 12% 35%,
      rgba(37,199,230,.18) 0%,
      transparent 42%
    ),

    radial-gradient(
      circle at 88% 70%,
      rgba(37,199,230,.14) 0%,
      transparent 46%
    ),

    linear-gradient(
      145deg,
      #0A5F72 0%,
      #0A4E63 35%,
      #08465A 68%,
      #043749 100%
    );

}

.hero-product__texture {
  position: absolute;
  inset: 0;
  background-image: url('../imagenes/productos/textura.png');
  background-size: cover;
  background-position: center;
  opacity: .28;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.hero-product__glow {
  position: absolute;
  left: 48%;
  top: 58%;
  transform: translate(-50%, -50%);

  width: 620px;
  height: 620px;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.62) 0%,
      rgba(170,245,255,.42) 20%,
      rgba(37,199,230,.26) 46%,
      transparent 78%
    );

  filter: blur(40px);
  opacity: .95;
  z-index: 4;
}

.hero-product__persona {
  position: absolute;
  top: 15%;
  left: 43%;
  height: 43%;
  z-index: 3;
  opacity: .45;
  filter: grayscale(1);
  pointer-events: none;
}

.hero-product__producto {
  position: absolute;
  left: 42%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 45%;
  z-index: 5;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,.35));
}

.hero-product__content {
  position: absolute;
  left: 48%;
  top: 51%;
  transform: translateY(-50%);
  z-index: 6;
  width: 390px;
}

.hero-product__content h2 {
  font-family: var(--font-cuerpo);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 1000;
  line-height: .82;
  letter-spacing: -0.06em;
  color:#ffffff;

text-shadow:
0 0 22px rgba(37,199,230,.18),
0 10px 24px rgba(0,0,0,.25);
  margin: 0 0 1.8rem;
}

.hero-product__content p {
  font-size: clamp(.9rem, 1vw, 1.05rem);
  line-height: 1.05;
  color:rgba(255,255,255,.92);
  font-weight: 600;
  max-width: 390px;
  margin: 0 0 1rem;
}

.hero-product__content p strong {
  font-weight: 900;
}

.hero-product__btn{

display:inline-block;

padding:.7rem 2rem;

border-radius:999px;

font-size:.85rem;

font-weight:800;

letter-spacing:.03em;

color:#fff;

background:
radial-gradient(
circle at 20% 15%,
rgba(255,255,255,.18),
transparent 45%
),

linear-gradient(
145deg,
#46d7e9 0%,
#2399b8 58%,
#08526b 100%
);

border:1px solid rgba(255,255,255,.15);

box-shadow:
0 18px 40px rgba(0,0,0,.28),
0 0 24px rgba(37,199,230,.22);

transition:.35s;
}

.hero-product__btn:hover{

transform:
translateY(-2px)
scale(1.03);

filter:brightness(1.06);

box-shadow:
0 24px 55px rgba(0,0,0,.35),
0 0 35px rgba(37,199,230,.30);

}



/* CONTROL INDIVIDUAL — SLIDE 4 ERLENMEYER */
.hero-product--erlenmeyer .hero-product__producto {
  left: 40%;
  top: 50%;
  height: 55%;
}

/* CONTROL INDIVIDUAL — SLIDE 5 GRIMPADORA */
.hero-product--grimpadora .hero-product__producto {
  left: 40%;
  top: 50%;
  height: 48%;
}

/* CONTROL INDIVIDUAL — SLIDE 5 suero */
.hero-product--suero .hero-product__producto {
  left: 38%;
  top: 50%;
  height: 48%;
}

/* PERSONA — ERLENMEYER */
.hero-product--erlenmeyer .hero-product__persona {
  left: 41%;
  top: 13%;
  height: 45%;
}

/* PERSONA — GRIMPADORA */
.hero-product--grimpadora .hero-product__persona {
  left: 43%;
  top: 12%;
  height: 43%;
}


/* FLECHAS DEL SLIDER */
.hero__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-blanco);
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transicion);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__btn:hover {
  background-color: var(--color-cyan);
  border-color: var(--color-cyan);
  color: var(--color-navy);
}

.hero__btn--prev { left: var(--sp-md); }
.hero__btn--next { right: var(--sp-md); }

/* DOTS */
.hero__dots {
  position: absolute;
  bottom: var(--sp-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-xs);
  z-index: 10;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transicion);
}

.hero__dot.active {
  background-color: var(--color-cyan);
  transform: scale(1.4);
}

/* FIX: unificar transición inferior de slides 2, 3, 4 y 5 */
.hero__slide--s2::after,
.hero-product::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 28%;
  z-index: 8;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(0, 82, 103, 0) 0%,
    rgba(0, 82, 103, 0.65) 55%,
    #005267 100%
  );
}


/* ============================================================
   5. BOTONES GENERALES
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-cuerpo);
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transicion);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn--primary {
  background-color: var(--color-cyan);
  color: var(--color-navy);
  border-color: var(--color-cyan);
}
.btn--primary:hover {
  background-color: var(--color-cyan-light);
  transform: translateY(-2px);
}

.btn--secondary {
  background-color: var(--color-cyan);
  color: var(--color-navy);
  border-color: var(--color-cyan);
}
.btn--secondary:hover {
  background-color: var(--color-cyan-light);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: var(--color-cyan);
  color: var(--color-navy);
  border-color: var(--color-cyan);
  font-size: var(--fs-xs);
  padding: 0.4rem 1.1rem;
}
.btn--outline:hover {
  background-color: var(--color-cyan-light);
  transform: translateY(-1px);
}

/* ============================================================
   6. MARCAS — galería interactiva
============================================================ */

.marcas {
  width: 100%;
  height: 200px;
  position: relative;
  z-index: 50;
  margin-top: 0;
  background: #f4f7f8;
  overflow: visible;
}

.marcas .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.marcas__galeria {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  position: relative;
  z-index: 999;
  overflow: visible;
      --scrollY: -200px;
    transform: translateY(var(--scrollY));
    will-change: transform;
}

.marcas__viewport {
  width: min(2500px, 92vw);
  overflow: hidden;
  padding: 115px 40px 35px;
}


.marcas__grid {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.8rem;
  position: relative;
  z-index: 999;

  --marcas-scroll-y: 0px;
  --marcas-slide-x: 0px;
 transform:
    translateX(var(--marcas-slide-x))
    translateY(calc(var(--startY, 0px) + var(--marcas-scroll-y)))
    scale(1.05);

  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;

}

.marcas__item {
  flex: 0 0 155px;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background:
radial-gradient(
    circle at 30% 25%,
    rgba(255,255,255,.22),
    transparent 40%
),
linear-gradient(
    145deg,
    rgba(78,221,236,.95) 0%,
    rgba(18,145,170,.90) 58%,
    rgba(4,78,104,.95) 100%
);

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(12px);

box-shadow:
0 18px 40px rgba(0,0,0,.28),
0 0 22px rgba(37,199,230,.30);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  opacity: 1;
  visibility: visible;
  text-decoration: none;
  cursor: pointer;

  animation: marcasFloat 4.8s ease-in-out infinite;
  transition: box-shadow .35s ease, filter .35s ease;
}

.marcas__item:nth-child(2) { animation-delay: .3s; }
.marcas__item:nth-child(3) { animation-delay: .6s; }
.marcas__item:nth-child(4) { animation-delay: .9s; }
.marcas__item:nth-child(5) { animation-delay: 1.2s; }

.marcas__item img {
  max-width: 80%;
  max-height: 66%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform .35s ease;
  filter:
brightness(0)
invert(1)
drop-shadow(0 0 8px rgba(255,255,255,.12));

}

.marcas__item::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 199, 230, .85) 0%,
    rgba(37, 199, 230, .35) 35%,
    transparent 70%
  );
  filter: blur(18px);
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
}

.marcas__item:hover {
  box-shadow:
    0 0 35px rgba(37, 199, 230, .75),
    0 18px 45px rgba(0, 70, 90, .35);
  filter: brightness(1.08);
}

.marcas__item:hover::before {
  opacity: 1;
}

.marcas__item:hover img {
  transform: scale(1.06);
}

/* Info hacia arriba */
.marcas__info {
  position: absolute;
  left: 50%;
  top: -108px;
  width: 210px;
  padding: .85rem 1rem;
  border-radius: 16px;

  background: rgba(0, 70, 90, .92);
  color: #ffffff;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;

  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px) scale(.96);
  transition: all .3s ease;
  pointer-events: none;

  box-shadow: 0 16px 35px rgba(0,0,0,.25);
  z-index: 20;
}

.marcas__info::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(0, 70, 90, .92);
  transform: translateX(-50%) rotate(45deg);
}

.marcas__item:hover .marcas__info {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

/* Flechas */
.marcas__arrow {
  width: 58px;
  height: 58px;
  border: none;
  background: transparent;
  color: #00465a;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  transition: transform .25s ease, color .25s ease, text-shadow .25s ease;
}

.marcas__arrow:hover {
  color: #25c7e6;
  transform: scale(1.12);
  text-shadow: 0 0 22px rgba(37,199,230,.75);
}

/* Título */
.marcas .section__titulo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  order: 2;

  background:
radial-gradient(
circle at 20% 15%,
rgba(255,255,255,.18),
transparent 45%
),

linear-gradient(
145deg,
#46d7e9 0%,
#2399b8 58%,
#08526b 100%
);


box-shadow:
0 22px 55px rgba(0,0,0,.35),
0 0 30px rgba(37,199,230,.18);

  color: #ffffff;

  font-family: var(--font-cuerpo);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;

  padding: 1.5rem 7rem;
  border-radius: 20px;

  margin-top: -1.2rem;
  margin-bottom: 0;

  box-shadow: 0 0 35px rgba(0, 0, 0, 0.28);
  position: relative;
  z-index: 21;
  transform: translateY(-118px);
  overflow: hidden;

  animation: marcasTitlePulse 3.2s ease-in-out infinite;
}

.marcas .section__titulo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.38) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: marcasTitleShine 3.8s ease-in-out infinite;
}

@keyframes marcasFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes marcasTitlePulse {
  0%, 100% {
    box-shadow: 0 0 35px rgba(0,0,0,.28);
  }
  50% {
    box-shadow:
      0 0 35px rgba(0,0,0,.28),
      0 0 32px rgba(37,199,230,.65);
  }
}

@keyframes marcasTitleShine {
  0% { transform: translateX(-120%); }
  45%, 100% { transform: translateX(120%); }
}

@media (max-width: 900px) {
  .marcas {
    height: auto;
    padding-bottom: 5rem;
  }

  .marcas__galeria {
    transform: translateY(-20px);
  }

  .marcas__viewport {
    width: 74vw;
    padding-top: 110px;
  }

  .marcas__grid {
    gap: 1.8rem;
    transform: translateX(var(--marcas-slide-x)) translateY(0) scale(1);
  }

  .marcas .section__titulo {
    font-size: 1.2rem;
    padding: 1rem 2rem;
  }

  .marcas__arrow {
    font-size: 3.2rem;
    width: 42px;
  }
}



/* ============================================================
   ACERCA DE NOSOTROS — CARD GALERÍA
============================================================ */

.acerca {
  position: relative;
  background: transparent !important;
  padding: 25rem 0 18rem;
  overflow: visible;
}

.acerca__container {
  width: min(1200px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 3rem;
}

/* TEXTO IZQUIERDA */

.acerca__info {
  position: relative;
  z-index: 5;
}

.acerca__info h2 {
  font-family: var(--font-cuerpo);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* CONTROLES */

.acerca__controles {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transform: translateX(160px);
}

.acerca__dot,
.acerca__arrow {
  border: none;
  
    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,.28),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(82,224,237,.95) 0%,
            rgba(16,142,168,.92) 58%,
            rgba(4,78,104,.95) 100%
        );
  cursor: pointer;
}

/* ============================================================
   DOTS PREMIUM
============================================================ */

.acerca__dot{
    position:relative;

    width:34px;
    height:34px;

    border:none;
    border-radius:50%;
    cursor:pointer;

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,.28),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            rgba(82,224,237,.95) 0%,
            rgba(16,142,168,.92) 58%,
            rgba(4,78,104,.95) 100%
        );

    border:1px solid rgba(255,255,255,.18);

    box-shadow:
        0 12px 28px rgba(0,0,0,.22),
        0 0 14px rgba(37,199,230,.20);

    opacity:.45;

    transition:
        all .45s cubic-bezier(.22,1,.36,1);
}

.acerca__dot::before{
    content:"";
    position:absolute;
    inset:-12px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(37,199,230,.65),
            transparent 70%
        );

    filter:blur(12px);

    opacity:0;

    transition:.45s;
}

.acerca__dot:first-child{
    width:24px;
    height:24px;
}

.acerca__dot.active{
    width:42px;
    height:42px;
    
    opacity:1;

    
    transform:scale(1.02);

    box-shadow:
        0 18px 36px rgba(0,0,0,.28),
        0 0 24px rgba(37,199,230,.45);
}

.acerca__dot.active::before{
    opacity:1;
}

.acerca__dot:hover{
    opacity:.8;

    transform:translateY(-2px);

    box-shadow:
        0 18px 36px rgba(0,0,0,.28),
        0 0 28px rgba(37,199,230,.38);
}

.acerca__arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
}

/* GALERÍA */

.acerca__galeria {
  position: relative;
  height: 430px;
  display: flex;
  align-items: center;
  overflow: visible;
}

/* CARD BASE */

.acerca__card {
  position: absolute;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
  opacity: 1;
  cursor: pointer;
  overflow: visible;

  transition:
    left 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

/* CAPA INTERNA DE CARD ACTIVA */

.acerca__body {
  overflow: hidden;
  border-radius: inherit;
    background:
        radial-gradient(
            circle at 68% 8%,
            rgba(255,255,255,.22) 0%,
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(82,224,237,.92) 0%,
            rgba(9,112,132,.86) 100%
        );
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}


/* LETRA DECORATIVA SOLO EN ACTIVA */

.card-activa .acerca__body::before {
  content: "¿Quiénes\A Somos?";
  white-space: pre;
  position: absolute;
  top: 8rem;
  left: 4rem;
  z-index: 1;

  font-family: var(--font-cuerpo);
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.95);
  pointer-events: none;

  transform: translateY(-100px);
}

/* IMAGEN BASE */

.acerca__img {
  position: relative;
  z-index: 30;
  pointer-events: none;
}

.acerca__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 30;

  transition:
    transform 0.85s cubic-bezier(.22, 1, .36, 1),
    filter 0.85s cubic-bezier(.22, 1, .36, 1),
    opacity 0.45s ease,
    box-shadow 0.85s cubic-bezier(.22, 1, .36, 1);
}

/* CARD ACTIVA — DISEÑO COMPLETO */

.card-activa {
  width: 350px;
  height: 550px;
  left: 3%;
  top: 50%;
  border-radius: 140px 22px 22px 22px;
  transform: translateY(-50%);
  z-index: 5;
  overflow: visible;
  border:1px solid rgba(255,255,255,.18);

  filter:
    drop-shadow(0 0 20px rgba(37,199,230,0.8))
    drop-shadow(0 0 50px rgba(37,199,230,0.7))
    drop-shadow(0 0 90px rgba(37,199,230,0.5));
}

.card-activa::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -1;

  background: radial-gradient(
    circle,
    rgba(37, 199, 230, 0.55) 0%,
    rgba(37, 199, 230, 0.25) 40%,
    transparent 75%
  );

  filter: blur(50px);
}

.card-activa .acerca__body {
  display: block;
}

.card-activa .acerca__img {
  width: calc(100% - 3rem);
  height: 38%;
  margin: 7rem auto 0;
  border-radius: 18px;
  overflow: visible;
}

.card-activa .acerca__img img {
  border-radius: 18px;
  filter: none;
  opacity: 1;
  transform-origin: center bottom;
}

.card-activa:hover .acerca__img img {
  transform: translate(-30px, -10px) scale(1.24);
  filter: brightness(1.08) contrast(1.06) saturate(1.05);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.35);
}

/* CONTENIDO ACTIVO */

.acerca__contenido {
  height: auto;
  padding: 22rem 1.6rem 1.6rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.acerca__contenido h3 {
  font-family: var(--font-cuerpo);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.acerca__contenido p {
  font-size: 0.88rem;
  line-height: 1.25;
  max-width: 220px;
  position: relative;
  top: -10px;
}

/* CARDS INACTIVAS — PREVIEW IMAGEN B/N */

.card-derecha,
.card-extra {
  border-radius: 50px;
  background: transparent;
  overflow: hidden;
}

.card-derecha .acerca__body,
.card-extra .acerca__body {
  display: none;
}

.card-derecha .acerca__img,
.card-extra .acerca__img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: 3;
}

.card-derecha .acerca__img img,
.card-extra .acerca__img img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  filter: grayscale(1) brightness(0.55) contrast(1.15);
  opacity: 0.75;
  transform: scale(1);
}

.card-derecha::after,
.card-extra::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 70, 90, 0.55),
    rgba(37, 199, 230, 0.18)
  );
  z-index: 5;
  pointer-events: none;
}

/* POSICIONES INACTIVAS */

.card-derecha {
  width: 300px;
  height: 450px;
  left: 48%;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%) scale(0.92);
  opacity: 0.95;
}

.card-extra {
  width: 300px;
  height: 400px;
  left: 80%;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%) scale(0.82);
  opacity: 0.95;
}

/* HOVER GENERAL */

.acerca__galeria:hover .card-activa {
  transform: translateY(-50%) scale(1.02);
}

.acerca__galeria:hover .card-derecha {
  transform: translateY(-50%) scale(0.96);
}

.acerca__galeria:hover .card-extra {
  transform: translateY(-50%) scale(0.86);
}

.acerca {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.acerca__container {
  position: relative;
  z-index: 5;
}

.acerca__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter:

drop-shadow(0 0 18px rgba(55,219,234,.45))

drop-shadow(0 0 42px rgba(55,219,234,.32))

drop-shadow(0 0 85px rgba(55,219,234,.18));
  mix-blend-mode: screen;
  will-change: transform;
}

.acerca__glow--cyan {
  width: 520px;
  height: 520px;
  top: 15%;
  right: 20%;
  opacity: .95;
  background: radial-gradient(
    circle,
    rgba(37,199,230,1) 0%,
    rgba(37,199,230,.55) 38%,
    transparent 72%
  );
  animation: acercaCyanMove 4s ease-in-out infinite alternate;
}

.acerca__glow--navy {
  width: 650px;
  height: 650px;
  left: -28%;
  bottom: 70%;
  opacity: .85;
  background: radial-gradient(
    circle,
    rgba(0, 30, 40, 0.95) 0%,
    rgba(0,55,85,.65) 40%,
    transparent 75%
  );
  animation: acercaNavyMove 5s ease-in-out infinite alternate;
}

@keyframes acercaCyanMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(-180px, 120px, 0) scale(1.18);
  }
}

@keyframes acercaNavyMove {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(190px, -100px, 0) scale(1.14);
  }
}


/* ── BAG (textura png) ── */

.s2__bag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 115vh;
  z-index: 2;
  pointer-events: none;
  opacity: 0.3;
  background-image: url('../imagenes/productos/textura.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: soft-light;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .acerca__container {
    grid-template-columns: 1fr;
  }

  .acerca__galeria {
    height: 460px;
  }

  .card-activa {
    left: 0;
  }

  .card-derecha {
    left: 45%;
  }

  .card-extra {
    display: none;
  }
}

@media (max-width: 600px) {
  .acerca {
    padding: 5rem 0;
  }

  .acerca__galeria {
    height: auto;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
  }

  .acerca__card {
    position: relative;
    overflow: hidden;
    border-radius: 120px 22px 22px 22px;
    background: transparent;
  }

  .card-activa,
  .card-derecha,
  .card-extra {
    width: 280px;
    height: 380px;
    opacity: 1;
    left: auto;
    top: auto;
    transform: none;
  }

  .card-activa .acerca__img {
    height: 36%;
    margin: 5.5rem auto 0;
  }

  .acerca__contenido {
    padding: 15rem 1.4rem 1.4rem;
  }

  .card-activa .acerca__body::before {
    top: -5rem;
    left: 2rem;
    font-size: 4.5rem;
  }
}


/* ============================================================
   ACERCA — animación dots decorativos
============================================================ */

.acerca__dot,
.acerca__arrow {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(18px) scale(.55);
  transition:
    opacity .7s ease,
    filter .8s ease,
    transform .8s cubic-bezier(.22, 1, .36, 1);
}

.acerca.is-visible .acerca__dot,
.acerca.is-visible .acerca__arrow {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.acerca.is-visible .acerca__dot:nth-child(1) {
  transition-delay: .05s;
}

.acerca.is-visible .acerca__dot:nth-child(2) {
  transition-delay: .16s;
}

.acerca.is-visible .acerca__dot:nth-child(3) {
  transition-delay: .27s;
}

.acerca.is-visible .acerca__arrow {
  transition-delay: .38s;
}


/* ============================================================
   DIVISIONES — NAVY / CYAN PREMIUM
============================================================ */

.divisiones {
  position: relative;
  z-index: 4;
  min-height: 130vh;
  padding: 3rem 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 72%, rgba(80,225,238,.38) 0%, rgba(80,225,238,.16) 28%, transparent 52%),
    radial-gradient(circle at 76% 26%, rgba(80,225,238,.26) 0%, rgba(80,225,238,.10) 32%, transparent 58%),
    linear-gradient(180deg, #0b5364 0%, #18798a 48%, #73c9d0 100%);
}

.divisiones * {
  font-family: var(--font-cuerpo);
}

.divisiones::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .28;
}

.divisiones::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 52%, transparent 0%, rgba(0,18,24,.12) 58%, rgba(0,12,18,.34) 100%);
}

.divisiones__wrap {
  position: relative;
  z-index: 2;
  width: min(1720px, 94vw);
  height: 1100px;
  margin: 0 auto;
  isolation: isolate;
}

/* HEADER */

.divisiones__header {
  position: absolute;
  top: 30px;
  left: 0;
  right: 5%;
  z-index: 30;
  display: flex;
  justify-content: flex-start;
  gap: 8rem;
  align-items: flex-start;
  gap: 3rem;
}

.divisiones__header h2 {
  margin: 0;
  font-size: clamp(4.2rem, 5.6vw, 6.7rem);
  font-weight: 1000;
  line-height: .94;
  letter-spacing: -.07em;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0,0,0,.16);
}

.divisiones__header h2 span {
  color: #35d9e9;
  text-shadow:
    0 0 22px rgba(53,217,233,.30),
    0 10px 26px rgba(0,0,0,.16);
}

.divisiones__header p {
  margin: .6rem 0 0;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow: 0 7px 18px rgba(0,0,0,.16);
}

.divisiones__header p span {
  color: #31d7e8;
}

/* TEXTO GIGANTE */

.divisiones__bg-text {
  position: absolute;
  top: 82px;
  right: 1%;
  z-index: 3;
  font-size: clamp(9rem, 13vw, 15rem);
  font-weight: 1000;
  line-height: .7;
  letter-spacing: -.075em;
  text-transform: lowercase;
  color: rgba(11, 88, 108, .48);
  user-select: none;
  pointer-events: none;
  text-shadow: 0 0 58px rgba(72,230,242,.14);
  opacity: 0.5;
}

/* Glow cyan detrás del texto */

.divisiones__bg-text::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:-1;

    width:1200px;
    height:850px;

    border-radius:50%;

    background:
        radial-gradient(
            ellipse,
            rgba(37,198,220,.85) 0%,
            rgba(37,198,220,.60) 20%,
            rgba(37,198,220,.35) 40%,
            rgba(37,198,220,.18) 60%,
            rgba(37,198,220,.08) 75%,
            transparent 90%
        );

    filter:blur(140px);
    opacity:1;
    pointer-events:none;
}

.divisiones__bg-text::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:-1;

    width:1200px;
    height:850px;

    border-radius:50%;

    background:
        radial-gradient(circle,
            rgba(255,255,255,.22) 0%,
            rgba(160,245,255,.60) 12%,
            rgba(37,198,220,.70) 26%,
            rgba(37,198,220,.45) 45%,
            rgba(37,198,220,.20) 65%,
            transparent 90%
        );

    filter:blur(120px);

    box-shadow:
        0 0 180px rgba(37,198,220,.70),
        0 0 320px rgba(37,198,220,.45),
        0 0 480px rgba(37,198,220,.25);

    pointer-events:none;
}


/* IMAGEN CENTRAL */

.divisiones__scene {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 10;
  width: min(1250px, 86vw);
  transform: translateX(-50%) translateY(-15%);
  pointer-events: none;
}

.divisiones__equipos {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 44px rgba(0,24,32,.28))
    drop-shadow(0 0 22px rgba(61,223,236,.16));
}

/* CARDS */

.division-card {
  position: absolute;
  z-index: 20;
  width: 300px;
  height: 185px;
  padding: 1.7rem 2rem;
  border-radius: 34px;
  overflow: hidden;
  color: #fff;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 24px 48px rgba(0,20,28,.22);
  transition:
    transform .38s cubic-bezier(.22,1,.36,1),
    box-shadow .38s ease,
    filter .38s ease;
}

.division-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 62% 8%, rgba(255,255,255,.46) 0%, rgba(255,255,255,.16) 18%, transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.10), transparent 55%);
}

.division-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.10), transparent 55%);
  opacity: .6;
}

.division-card--cyan {
  background:
    radial-gradient(circle at 62% 4%, rgba(255,255,255,.35), transparent 32%),
    linear-gradient(135deg, rgba(82,224,237,.92) 0%, rgba(9,112,132,.86) 100%);
}

.division-card--dark {
  background:
    radial-gradient(circle at 68% 8%, rgba(79,220,235,.20), transparent 34%),
    linear-gradient(135deg, rgba(0,39,50,.74), rgba(0,14,21,.58));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.division-card__num {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 2rem;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
}

.division-card--dark .division-card__num {
  color: #36d9e9;
}

.division-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 1.72rem;
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.055em;
  color: #fff;
  text-shadow: 0 5px 13px rgba(0,0,0,.18);
  transform: translateY(-12px);
}

.division-card:hover {
  transform: translateY(-8px) scale(1.025);
  z-index: 50;
  filter: brightness(1.06);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.25),
    0 34px 65px rgba(0,20,28,.32),
    0 0 30px rgba(55,219,234,.18);
}

/* POSICIONES DESKTOP */

.division-card--01 {
  top: 275px;
  left: 30%;
  width: 350px;
  height: 190px;
}

.division-card--02 {
  top: 275px;
  right: 24%;
  width: 290px;
  height: 190px;
  opacity: 0.9;
}

.division-card--03 {
  left: 50px;
  bottom: 200px;
  width: 245px;
  height: 220px;
}

.division-card--04 {
  right: 28%;
  bottom: 180px;
  width: 250px;
  height: 170px;
}

.division-card--05 {
  left: 23%;
  bottom: 130px;
  width: 300px;
  height: 165px;
}

/* REVEAL BLUR — TÍTULO DIVISIONES */

.divisiones__header h2,
.divisiones__header p {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(18px);
}

.divisiones.is-visible .divisiones__header h2 {
  animation: divisionesRevealBlur .9s cubic-bezier(.19,1,.22,1) forwards;
}

.divisiones.is-visible .divisiones__header p {
  animation: divisionesRevealBlur .9s cubic-bezier(.19,1,.22,1) .18s forwards;
}

@keyframes divisionesRevealBlur {
  from {
    opacity: 0;
    transform: translateY(38px);
    filter: blur(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}


/* RESPONSIVE */

@media (max-width: 1200px) {
  .divisiones__wrap {
    height: 760px;
  }

  .division-card--01 {
    left: 30%;
  }

  .division-card--02 {
    right: 14%;
  }

  .division-card--04 {
    right: 13%;
  }

  .division-card--05 {
    left: 24%;
  }
}

@media (max-width: 980px) {
  .divisiones {
    padding: 4rem 0;
  }

  .divisiones__wrap {
    width: min(92vw, 620px);
    height: auto;
  }

  .divisiones__header {
    position: relative;
    display: block;
    right: auto;
    margin-bottom: 2rem;
  }

  .divisiones__header h2 {
    font-size: clamp(3.1rem, 11vw, 4.5rem);
  }

  .divisiones__header p {
    margin-top: 1rem;
    font-size: 1.35rem;
  }

  .divisiones__bg-text,
  .divisiones__scene {
    display: none;
  }

  .division-card,
  .division-card--01,
  .division-card--02,
  .division-card--03,
  .division-card--04,
  .division-card--05 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    min-height: 165px;
    margin-bottom: 1rem;
  }

  .division-card__num {
    margin-bottom: 2rem;
  }
}


/* ============================================================
   BENEFICIOS — CANVAS NUEVO
============================================================ */

.beneficios-new {
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 2rem 0 7rem;
  overflow: hidden;
}

.beneficios-new__wrap {
  width: min(1100px, 88%);
  margin: 0 auto;
  text-align: center;
}

.beneficios-new__pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25c7e6;
  color: #fff;
  padding: .35rem 1.4rem .35rem .45rem;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.beneficios-new__pill span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #06465a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beneficios-new__title {
  min-height: 130px;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  color: #fff;
  font-family: var(--font-cuerpo);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -0.04em;
}

.beneficios-new__title strong {
  font-weight: 1000;
}

.beneficios-new__title::after {
  content: "|";
  animation: cursorBlink .8s infinite;
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.beneficios-new__cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  height: 290px;
}

/* CARD BASE */
.beneficio-slide {
  position: relative;

  width: 95px;
  height: 290px;
  border-radius: 42px;

  background:
    radial-gradient(
      circle at 68% 8%,
      rgba(255,255,255,.20) 0%,
      transparent 28%
    ),
    linear-gradient(
      135deg,
      rgba(82,224,237,.92) 0%,
      rgba(9,112,132,.86) 100%
    );

  border: 1px solid rgba(255,255,255,.16);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 22px 45px rgba(0,18,25,.22);

  color: #fff;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  padding: 2rem 1.1rem;

  opacity: 0;
  transform: translateX(90px) scale(.92);

  transition:
    width .65s cubic-bezier(.22,1,.36,1),
    transform .65s cubic-bezier(.22,1,.36,1),
    opacity .45s ease,
    background .3s ease;
}

.beneficio-slide::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;

    background:
        radial-gradient(
            circle at 62% 8%,
            rgba(255,255,255,.42),
            rgba(255,255,255,.12) 20%,
            transparent 36%
        ),
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            transparent 55%
        );

    pointer-events:none;
}



/* Opacidades descendentes cuando están cerradas */
.beneficio-slide:nth-child(1) {
  background: rgba(37, 199, 230, 1);
}

.beneficio-slide:nth-child(2) {
  background: rgba(37, 199, 230, .70);
}

.beneficio-slide:nth-child(3) {
  background: rgba(37, 199, 230, .48);
}

.beneficio-slide:nth-child(4) {
  background: rgba(37, 199, 230, .30);
}

/* Cualquier card activa vuelve a color sólido */
.beneficio-slide.active {
  background:
    radial-gradient(circle at 70% 10%,
        rgba(255,255,255,.38),
        transparent 28%),
    linear-gradient(
        135deg,
        #58deee 0%,
        #0a7d96 100%
    );

box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 28px 65px rgba(0,25,35,.30),
    0 0 32px rgba(70,225,238,.22);
}


/* ENTRADA AL SCROLL */
.beneficios-new.is-visible .beneficio-slide {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.beneficios-new.is-visible .beneficio-slide:nth-child(1) { transition-delay: .05s; }
.beneficios-new.is-visible .beneficio-slide:nth-child(2) { transition-delay: .12s; }
.beneficios-new.is-visible .beneficio-slide:nth-child(3) { transition-delay: .18s; }
.beneficios-new.is-visible .beneficio-slide:nth-child(4) { transition-delay: .24s; }

/* CARD ABIERTA */
.beneficio-slide.active {
  width: 690px;
  border-radius: 42px;
  padding: 2.1rem 2.2rem;
  text-align: left;
}

.beneficio-slide__num {
  font-size: 4.6rem;
  font-weight: 900;
  line-height: .8;
  flex-shrink: 0;
}

.beneficio-slide__content {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transform: translateX(20px);
  transition: opacity .3s ease, transform .4s ease;
}

.beneficio-slide.active .beneficio-slide__content {
  opacity: 1;
  width: auto;
  margin-left: 1.5rem;
  transform: translateX(0);
  transition-delay: .25s;
}

.beneficio-slide__content h3 {
  font-family: var(--font-cuerpo);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 1000;
  line-height: .9;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.beneficio-slide__content p {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.12;
  font-weight: 600;
}

.beneficio-slide__content p strong {
  font-weight: 1000;
}

/* MOBILE */
@media (max-width: 768px) {
  .beneficios-new__cards {
    height: auto;
    flex-direction: column;
  }

  .beneficio-slide,
  .beneficio-slide.active {
    width: 100%;
    height: auto;
    min-height: 120px;
    border-radius: 28px;
  }

  .beneficio-slide__content,
  .beneficio-slide.active .beneficio-slide__content {
    width: auto;
    opacity: 1;
    margin-left: 1rem;
  }

  .beneficio-slide__num {
    font-size: 3rem;
  }

  .beneficio-slide__content h3 {
    font-size: 2.2rem;
  }
}

/* ===================== PRODUCTOS DESTACADOS ===================== */

.destacados {
  position: relative;
  min-height: 100vh;
  padding: 8rem 4vw;
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 3rem;
  overflow: hidden;
  background: transparent;
}

.destacados > * {
  position: relative;
  z-index: 2;
}

.destacados__intro {
  align-self: center;
  max-width: 420px;
}

.destacados__intro span {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--color-cyan);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.destacados__intro span::after {
  content: "";
  width: 150px;
  height: 1px;
  background: var(--color-cyan);
  opacity: .8;
}

.destacados__intro h2 {
  font-family: var(--font-cuerpo);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  line-height: .85;
  color: #fff;
  font-weight: 900;
  letter-spacing: -.06em;
  margin-bottom: 1.4rem;
}

.destacados__intro p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.8rem;
}

.destacados__btn {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .06em;
  box-shadow: 0 0 22px rgba(37,198,220,.18);
}

.destacados__btn:hover {
  background: rgba(37,198,220,.12);
  transform: translateY(-2px);
}

.destacados__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.4rem;
  align-content: center;
}

.destacado-card {
  position: relative;
  min-height: 245px;
  padding: 2rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(37,198,220,.16), transparent 44%),
    rgba(2,18,30,.72);
  border: 1px solid rgba(37,198,220,.18);
  box-shadow:
    0 22px 50px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.03);
}

.destacado-card--light {
  background:
    radial-gradient(circle at 80% 20%, rgba(37,198,220,.10), transparent 45%),
    linear-gradient(145deg, #ffffff 0%, #edf5f7 100%);
}

.destacado-card__num {
  position: absolute;
  top: 1.5rem;
  left: 1.7rem;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 500;
  color: var(--color-cyan);
  letter-spacing: -.05em;
}

.destacado-card img {
  position: absolute;
  right: 1.6rem;
  top: 1.2rem;
  width: 48%;
  height: 58%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.22));
}

.destacado-card div {
  position: absolute;
  left: 1.7rem;
  bottom: 2rem;
  max-width: 52%;
}

.destacado-card h3 {
  font-family: var(--font-cuerpo);
  font-size: 1.45rem;
  line-height: .95;
  font-weight: 900;
  color: #fff;
  margin-bottom: .65rem;
}

.destacado-card p {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  line-height: 1.35;
}

.destacado-card--light h3 {
  color: #071320;
}

.destacado-card--light p {
  color: rgba(7,19,32,.68);
}

.destacado-card__arrow {
  position: absolute;
  right: 1.4rem;
  bottom: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  font-size: 1.3rem;
  font-weight: 800;
}

.destacado-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(0,0,0,.35),
    0 0 28px rgba(37,198,220,.18);
}

.destacados__bg {
  position: absolute;
  z-index: 1;
  font-family: var(--font-cuerpo);
  font-weight: 1000;
  font-size: clamp(6rem, 12vw, 15rem);
  line-height: .78;
  letter-spacing: -.08em;
  text-transform: lowercase;
  color: rgba(37,198,220,.12);
  pointer-events: none;
  user-select: none;
  -webkit-text-stroke: 1px rgba(37,198,220,.10);
  filter: blur(.4px);
}

.destacados__bg--left {
  left: 2vw;
  bottom: 4vh;
}

.destacados__bg--right {
  right: 2vw;
  top: 3vh;
}

/* Responsive */
@media (max-width: 1100px) {
  .destacados {
    grid-template-columns: 1fr;
    padding: 6rem 5vw;
  }

  .destacados__intro {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .destacados__grid {
    grid-template-columns: 1fr;
  }

  .destacado-card {
    min-height: 230px;
  }

  .destacados__bg {
    opacity: .45;
  }
}


.main-bg {
  position: relative;
  overflow: visible;
  isolation: isolate;
  perspective: 1200px;

  background:
    radial-gradient(circle at 50% 35%, rgba(37,199,230,.45), transparent 38%),
    linear-gradient(135deg,#004a65 0%,#005d78 45%,#003f56 100%);
}

/* glows animados */
.bg-glow {
  position: absolute;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: 2; /* antes 0 */
}


.bg-glow--cyan {
  top: 22%;
  left: -35%;
  background: radial-gradient(
    circle,
    rgba(40, 202, 233, .95) 0%,
    rgba(40, 202, 233, .55) 35%,
    transparent 50%
  );
  animation: glowCyanMove 8s ease-in-out infinite alternate;
}

.bg-glow--navy {
  top: 48%;
  right: -35%;
  background: radial-gradient(
    circle,
    rgba(0, 25, 38, .95) 0%,
    rgba(0, 55, 70, .65) 35%,
    transparent 70%
  );
  animation: glowNavyMove 10s ease-in-out infinite alternate;
}

.main-bg > section {
  position: relative;
  z-index: 5; /* antes 10 */
}



.acerca,
.divisiones,
.beneficios {
  background: transparent !important;
  position: relative;
  z-index: 5;
}



@keyframes glowCyanMove {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(180vw, 500px) scale(1.5);
  }
}

@keyframes glowNavyMove {
  from {
    transform: translate(0, 0) scale(1.1);
  }

  to {
     transform: translate(-180vw, -400px) scale(1.6);
  }
}

/* ============================================================
   PARTÍCULAS CIENTÍFICAS SUTILES
============================================================ */

.particles-bg {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
  opacity: .75;
}

.particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(235, 253, 255, var(--opacity));
  box-shadow:
    0 0 18px rgba(37, 199, 230, .75),
    0 0 42px rgba(37, 199, 230, .45),
    0 0 70px rgba(255, 255, 255, .22);
  filter: blur(var(--blur));
  animation: particleFloat var(--duration) linear infinite;
}


@keyframes particleFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(.8);
  }

  50% {
    transform: translate3d(var(--move-x), var(--move-y), 0) scale(1.15);
  }

  100% {
    transform: translate3d(calc(var(--move-x) * 1.8), calc(var(--move-y) * 1.8), 0) scale(.85);
  }
}



/* ============================================================
   LLUVIA DE MOLÉCULAS POR SCROLL
============================================================ */

.molecule-rain {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.scroll-molecule {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(235, 253, 255, .85);
  box-shadow:
    0 0 12px rgba(37, 199, 230, .85),
    0 0 28px rgba(37, 199, 230, .45);
  opacity: 0;
  filter: blur(.3px);
}

.scroll-molecule.down {
  animation: moleculeFall var(--duration) ease-out forwards;
}

.scroll-molecule.up {
  animation: moleculeRise var(--duration) ease-out forwards;
}

@keyframes moleculeFall {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(.6);
  }

  15% {
    opacity: .75;
  }

  100% {
    opacity: 0;
    transform: translateY(180px) scale(1.2);
  }
}

@keyframes moleculeRise {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(.6);
  }

  15% {
    opacity: .75;
  }

  100% {
    opacity: 0;
    transform: translateY(-180px) scale(1.2);
  }
}


/* ============================================================
   FIX UNIÓN DIVISIONES + BENEFICIOS
============================================================ */

/* ambas secciones transparentes sobre el mismo fondo padre */
.divisiones,
.beneficios-new {
  background: transparent !important;
  margin-top: 0;
  margin-bottom: 0;
}

/* quitamos overlays propios de divisiones que generan el corte */
.divisiones::before,
.divisiones::after {
  display: none;
}

/* textura unificada para todo el bloque azul */
.main-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .22;
}

/* velo unificado para que no haya salto de color */
.main-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(0,18,24,.10) 58%, rgba(0,12,18,.26) 100%);
}

/* las secciones quedan por encima de la textura */
.main-bg > section {
  position: relative;
  z-index: 5;
}

/* pequeño solape para evitar línea subpixel */
.beneficios-new {
  margin-top: -1px;
}

/* ============================================================
   PRECONTACTO
============================================================ */
.precontacto {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 30;
  padding: 0;
}

.precontacto__trigger {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}


.precontacto__stage {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.precontacto__circles {
  position: relative;
  width: min(600px, 74vw, 74vh);
  height: min(600px, 74vw, 74vh);
  opacity: 0;
  margin: 0 auto;

  /*
    Compensa el peso visual del círculo trasero.
    Así el conjunto completo queda centrado en pantalla.
  */
  transform: translateX(90px);
}


.precontacto.in-view .precontacto__circles {
  animation: precontactoCardsIn 1s cubic-bezier(.2, 1.35, .35, 1) both;
}

@keyframes precontactoCardsIn {
  0% {
    opacity: 0;
    transform: translateX(280px) scale(.92);
  }

  65% {
    opacity: 1;
    transform: translateX(55px) scale(1.03);
  }

  82% {
    transform: translateX(105px) scale(.98);
  }

  100% {
    opacity: 1;
    transform: translateX(90px) scale(1);
  }
}



.precontacto__circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  transition:
    transform .75s cubic-bezier(.19, 1, .22, 1),
    opacity .45s ease,
    background .45s ease,
    filter .45s ease,
    box-shadow .45s ease;
  will-change: transform, opacity, filter;
}

.precontacto__circle::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 28%,
      rgba(255,255,255,.35),
      rgba(255,255,255,.08) 28%,
      transparent 58%
    );
  opacity: 0;
  transform: scale(.8);
  transition: .55s ease;
  pointer-events: none;
}

.precontacto__circle--active {
  z-index: 3;
  background: #25c7e6;
  transform: translateX(-10%) scale(1);
  box-shadow:
    0 28px 70px rgba(0,0,0,.22),
    inset 0 0 30px rgba(255,255,255,.08);
}

.precontacto__circle--back {
  z-index: 2;
  opacity: .62;
  background: #1f9db2;
  transform: translateX(35%) scale(.78);
  filter: blur(.2px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.16),
    inset 0 0 24px rgba(255,255,255,.05);
}


.precontacto__circles::after{
  content:"";

  position:absolute;

  left:50%;
  top:50%;

  width:100px;
  height:100px;

  transform:translate(-50%,-50%);

  border-radius:50%;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.95) 0%,
      rgba(195,245,255,.85) 14%,
      rgba(37,199,230,.65) 32%,
      rgba(37,199,230,.35) 52%,
      rgba(37,199,230,.12) 68%,
      transparent 82%
    );

  filter:blur(65px);

  z-index:0;
  pointer-events:none;
}


.precontacto__circle {
  z-index: 2;
}

.precontacto__circle--active {
  z-index: 4;
}

.precontacto__circle--back {
  z-index: 3;
}

@keyframes orbitSilhouette {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(.96);
    opacity: .35;
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.04);
    opacity: .65;
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(.96);
    opacity: .35;
  }
}

@keyframes orbitSilhouetteReverse {
  0% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1.02);
    opacity: .28;
  }

  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(.94);
    opacity: .55;
  }

  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
    opacity: .28;
  }
}


/* Breath premium */
.precontacto__circles.is-hovering .precontacto__circle--active {
  animation: circleBreathPremium 1.25s cubic-bezier(.22, 1, .36, 1) forwards;
  box-shadow:
    0 40px 90px rgba(0,0,0,.28),
    0 0 55px rgba(37,199,230,.55),
    inset 0 0 45px rgba(255,255,255,.18);
}

.precontacto__circles.is-hovering .precontacto__circle--active::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes circleBreathPremium {
  0% {
    transform: translateX(-10%) translateY(0) scale(1);
  }
  42% {
    transform: translateX(-10%) translateY(-6px) scale(1.08);
  }
  68% {
    transform: translateX(-10%) translateY(-3px) scale(1.04);
  }
  100% {
    transform: translateX(-10%) translateY(-8px) scale(1.1);
  }
}

/* Texto base */
.precontacto__text {
  position: relative;
  z-index: 2;
  width: 72%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 4vw, 2.7rem);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.04em;
}

.precontacto__text strong {
  font-weight: 900;
}

/* Texto premium por línea */
.precontacto__text span {
  display: block;
  opacity: 0;
  transform: translateY(18px) scale(.96);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

.precontacto.in-view .precontacto__circle--active .precontacto__text span {
  animation: precontactoTextIn .75s cubic-bezier(.19, 1, .22, 1) both;
}

.precontacto.in-view .precontacto__circle--active .precontacto__text span:nth-child(1) {
  animation-delay: .35s;
}

.precontacto.in-view .precontacto__circle--active .precontacto__text span:nth-child(2) {
  animation-delay: .48s;
}

.precontacto.in-view .precontacto__circle--active .precontacto__text span:nth-child(3) {
  animation-delay: .61s;
}

/* Texto del segundo círculo cuando aparece */
.precontacto__circles.is-swapped .precontacto__circle--back .precontacto__text span {
  animation: precontactoTextIn .75s cubic-bezier(.19, 1, .22, 1) both;
}

.precontacto__circles.is-swapped .precontacto__circle--back .precontacto__text span:nth-child(1) {
  animation-delay: .25s;
}

.precontacto__circles.is-swapped .precontacto__circle--back .precontacto__text span:nth-child(2) {
  animation-delay: .38s;
}

.precontacto__circles.is-swapped .precontacto__circle--back .precontacto__text span:nth-child(3) {
  animation-delay: .51s;
}

@keyframes precontactoTextIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(.96);
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Cambio al siguiente con profundidad */
.precontacto__circles.is-swapped .precontacto__circle {
  animation: none;
}

/* NUEVO: zoom final antes del scroll */

.precontacto__circles.is-swapped .precontacto__circle--active {
  transform: translateX(-40%) translateY(8px) scale(.76) rotate(-2deg);
  opacity: .42;
  background: #1f9db2;
  filter: blur(2px);
  z-index: 2;
  box-shadow:
    0 14px 36px rgba(0,0,0,.12),
    inset 0 0 22px rgba(255,255,255,.04);
}

.precontacto__circles.is-final-zoom .precontacto__circle--back {
  transition:
    transform .8s cubic-bezier(.19,1,.22,1),
    box-shadow .8s ease;

  transform: translateX(-26%) translateY(-12px) scale(1.12);

  box-shadow:
    0 48px 110px rgba(0,0,0,.32),
    0 0 75px rgba(37,199,230,.62),
    inset 0 0 55px rgba(255,255,255,.22);
}


.precontacto__circles.is-swapped .precontacto__circle--back {
    transform: translateX(-26%) translateY(-8px) scale(1.06);
  opacity: 1;
  background: #25c7e6;
  filter: blur(0);
  z-index: 4;
  box-shadow:
    0 42px 95px rgba(0,0,0,.30),
    0 0 60px rgba(37,199,230,.50),
    inset 0 0 48px rgba(255,255,255,.18);
}

.precontacto__circles.is-swapped .precontacto__circle--back::before {
  opacity: 1;
  transform: scale(1);
}

.precontacto__arrow {
  position: absolute;
  left: calc(50% + 175px);
  top: calc(50% + 160px);
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: #9ee8f5;
  color: #005267;
  font-size: 2.4rem;
  font-weight: 900;
  z-index: 6;
  pointer-events: none;
}



/* Salida premium hacia formulario */
.precontacto.is-exiting .precontacto__stage {
  animation: precontactoExitDown 1s cubic-bezier(.19, 1, .22, 1) both;
}

@keyframes precontactoExitDown {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }

  45% {
    transform: translateY(35px) scale(.98);
    opacity: .85;
    filter: blur(3px);
  }

  100% {
    transform: translateY(130px) scale(.94);
    opacity: 0;
    filter: blur(14px);
  }
}

/* Cuando el usuario vuelve hacia arriba */
.precontacto.in-view:not(.is-exiting) .precontacto__stage {
  animation: precontactoReturnSoft .8s cubic-bezier(.19,1,.22,1) both;
}

@keyframes precontactoReturnSoft {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(40px) scale(.96);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

/* Volver desde formulario hacia precontacto con blur */
.precontacto.is-returning .precontacto__stage {
  animation: precontactoReturnSoft .85s cubic-bezier(.19,1,.22,1) both;
}

@keyframes precontactoReturnSoft {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(45px) scale(.96);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}


/* HALOS PREMIUM CON MÁS MOVIMIENTO */
.precontacto__circles {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.precontacto__stage {
  overflow: visible;
}

.precontacto__circles::before,
.precontacto__circles::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Halo interno */
.precontacto__circles::before {
  width: 80%;
  height: 80%;
  border: 16px solid rgba(255,255,255,.72);
  box-shadow:
    0 0 22px rgba(255,255,255,.75),
    0 0 58px rgba(37,199,230,.65),
    inset 0 0 36px rgba(255,255,255,.38);
  animation: haloInnerMove 3.2s cubic-bezier(.45,0,.25,1) infinite;
}

/* Halo externo */
.precontacto__circles::after {
  width: 100%;
  height: 100%;
  border: 5px solid rgba(180,245,255,.46);
  box-shadow:
    0 0 45px rgba(255,255,255,.38),
    0 0 110px rgba(37,199,230,.62),
    inset 0 0 55px rgba(37,199,230,.22);
  animation: haloOuterMove 5.6s cubic-bezier(.45,0,.25,1) infinite reverse;
}

.precontacto__circle--active {
  z-index: 5;
}

.precontacto__circle--back {
  z-index: 4;
}

@keyframes haloInnerMove {
  0% {
    opacity: .35;
    transform: translate(-50%, -50%) scale(.86) rotate(0deg);
    filter: blur(4px);
  }

  35% {
    opacity: .95;
    transform: translate(-53%, -48%) scale(1.04) rotate(130deg);
    filter: blur(.5px);
  }

  65% {
    opacity: .62;
    transform: translate(-47%, -53%) scale(.96) rotate(245deg);
    filter: blur(2px);
  }

  100% {
    opacity: .35;
    transform: translate(-50%, -50%) scale(.86) rotate(360deg);
    filter: blur(4px);
  }
}

@keyframes haloOuterMove {
  0% {
    opacity: .18;
    transform: translate(-50%, -50%) scale(.94) rotate(360deg);
    filter: blur(8px);
  }

  40% {
    opacity: .70;
    transform: translate(-46%, -52%) scale(1.12) rotate(190deg);
    filter: blur(2px);
  }

  70% {
    opacity: .42;
    transform: translate(-54%, -47%) scale(1.02) rotate(80deg);
    filter: blur(5px);
  }

  100% {
    opacity: .18;
    transform: translate(-50%, -50%) scale(.94) rotate(0deg);
    filter: blur(8px);
  }
}


/* ============================================================
   CONTACTO — CANVAS PREMIUM NAVY / CYAN
============================================================ */

.contacto-premium {
  position: relative;
  min-height: 100vh;
  padding: 7rem 0 8rem;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}


.contacto-premium * {
  font-family: var(--font-cuerpo);
}

.contacto-premium__wrap {
  position: relative;
  z-index: 5;
  width: min(1500px, 92vw);
  margin: 0 auto;
  min-height: 760px;
  display: grid;
  grid-template-columns: 38% 46%;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  transform: translateX(50px);
}

/* Texto gigante fondo */

.contacto-premium__bg-text {
  position: absolute;
  left: 2.5%;
  top: 1rem;
  z-index: 2;
  font-size: clamp(8rem, 15vw, 16rem);
  font-weight: 1000;
  line-height: .72;
  letter-spacing: -.08em;
  color: rgba(210,255,255,.09);
  text-transform: lowercase;
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
}

/* Decoraciones laterales */

.contacto-premium__decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.contacto-premium__decor img {
  width: 100%;
  height: auto;
  display: block;
  filter:
    drop-shadow(0 30px 45px rgba(0,0,0,.45))
    drop-shadow(0 0 22px rgba(37,199,230,.22));
}

.contacto-premium__decor--left {
  left: -3%;
  bottom: -1rem;
  width: 550px;
}

.contacto-premium__decor--left::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:200px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0,75,95,.55),
    rgba(0,75,95,.95)
  );
  pointer-events:none;
}

.contacto-premium__decor--right {
  right: -2%;
  bottom: -1rem;
  width: min(410px, 29vw);
}

/* Columna izquierda */

.contacto-premium__info {
  position: relative;
  z-index: 8;
  color: #fff;
  padding-left: 2rem;
}

.contacto-premium__info h2 {
  margin: 0 0 1.9rem;
  font-size: clamp(4.2rem, 6.2vw, 7rem);
  font-weight: 1000;
  line-height: .9;
  letter-spacing: -.07em;
  color: #fff;
  text-shadow: 0 12px 25px rgba(0,0,0,.25);
  transform: translateY(-80px);
}

.contacto-premium__info h2 span {
  color: #25c7e6;
}

.contacto-premium__info h3 {
  margin: 0 0 .5rem;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.contacto-premium__info > p {
  margin: 0 0 2.6rem;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.22;
  color: rgba(255,255,255,.92);
}

.contacto-premium__datos {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(150px) translateY(-80px);
}

.contacto-premium__datos li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.contacto-premium__datos span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25c7e6;
  color: #fff;
  font-size: 1.15rem;
  box-shadow:
    0 0 22px rgba(37,199,230,.55),
    inset 0 0 0 1px rgba(255,255,255,.25);
}

.contacto-premium__datos a,
.contacto-premium__datos p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 1.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}


/* Formulario */

.contacto-premium__form {
  position: relative;
  z-index: 10;
  min-height: 630px;
  padding: 3.2rem 3.4rem 2.4rem;
  border-radius: 34px;
  color: #fff;

  background:
    radial-gradient(circle at 18% 0%, rgba(255,255,255,.20), transparent 28%),
    linear-gradient(135deg, rgba(37,199,230,.42), rgba(0,43,58,.58));

  border: 1px solid rgba(135,238,255,.38);

  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    inset 0 28px 75px rgba(255,255,255,.08),
    0 35px 90px rgba(0,0,0,.34),
    0 0 55px rgba(37,199,230,.22);
}

.contacto-premium__form::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(118,244,255,.55), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(37,199,230,.32), transparent 42%);
  filter: blur(18px);
  opacity: .65;
}

.contacto-premium__form-head {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2.2rem;
}

.contacto-premium__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.25), transparent 32%),
    linear-gradient(135deg, #35d9e9, #08778f);

  box-shadow:
    0 0 28px rgba(37,199,230,.55),
    inset 0 0 0 1px rgba(255,255,255,.22);

  font-size: 2rem;
}

.contacto-premium__form-head h3 {
  margin: 0 0 .35rem;
  font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  font-weight: 900;
  line-height: 1;
}

.contacto-premium__form-head p {
  margin: 0;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,.88);
}

.contacto-premium__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contacto-premium__form label {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.15rem;

  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255,255,255,.9);
}

.contacto-premium__form input,
.contacto-premium__form textarea {
  width: 100%;
  outline: none;
  border: 1px solid rgba(150,240,255,.25);
  border-radius: 10px;
  background: rgba(0, 75, 95, .34);
  color: #fff;

  font-size: 1rem;
  font-weight: 700;
  padding: .95rem 1rem;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    inset 0 0 24px rgba(0,0,0,.12);

  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.contacto-premium__form input {
  height: 52px;
}

.contacto-premium__form textarea {
  height: 100px;
  resize: none;
  border-radius: 12px;
}

.contacto-premium__form input::placeholder,
.contacto-premium__form textarea::placeholder {
  color: rgba(255,255,255,.86);
}

.contacto-premium__form input:focus,
.contacto-premium__form textarea:focus {
  border-color: rgba(80,225,238,.75);
  background: rgba(0, 90, 110, .42);
  box-shadow:
    0 0 24px rgba(37,199,230,.25),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

.contacto-premium__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .9rem;
}

.contacto-premium__actions p {
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
}

.contacto-premium__actions button {
  border: none;
  border-radius: 999px;
  background:
    linear-gradient(135deg, #35d9e9 0%, #12bfd9 100%);
  color: #fff;

  font-size: 1rem;
  font-weight: 900;
  padding: .9rem 1.8rem;
  min-width: 220px;
  cursor: pointer;

  box-shadow:
    0 16px 35px rgba(0,0,0,.24),
    0 0 32px rgba(37,199,230,.45);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    filter .25s ease;
}

.contacto-premium__actions button span {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.35rem;
  line-height: 0;
}

.contacto-premium__actions button:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow:
    0 22px 45px rgba(0,0,0,.28),
    0 0 42px rgba(37,199,230,.65);
}

/* Responsive */

@media (max-width: 1100px) {
  .contacto-premium__wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: min(760px, 92vw);
  }

  .contacto-premium__info {
    padding-left: 0;
    text-align: center;
  }

  .contacto-premium__datos {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  .contacto-premium__decor {
    opacity: .28;
  }

  .contacto-premium__decor--left {
    width: 330px;
  }

}


@media (max-width: 720px) {
  .contacto-premium {
    padding: 5rem 0 6rem;
  }

  .contacto-premium__wrap {
    width: min(92vw, 560px);
  }

  .contacto-premium__bg-text {
    font-size: 7rem;
    top: 2rem;
    left: -1rem;
  }

  .contacto-premium__form {
    padding: 2rem 1.25rem;
    border-radius: 28px;
    min-height: auto;
  }

  .contacto-premium__form-head {
    align-items: flex-start;
  }

  .contacto-premium__icon {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
  }

  .contacto-premium__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contacto-premium__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .contacto-premium__actions button {
    width: 100%;
    min-width: 0;
  }

  .contacto-premium__decor {
    display: none;
  }
}



/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 900px) {
  .precontacto {
    height: 260vh;
  }

  .precontacto__arrow {
    left: 70%;
    top: 68%;
    width: 54px;
    height: 54px;
    font-size: 2rem;
  }

  .contacto-glass__wrap {
    grid-template-columns: 1fr;
  }

  .contacto-glass__image {
    margin-left: 0;
    min-height: 320px;
    order: -1;
    border-radius: 32px 32px 0 0;
  }

  .contacto-glass__form {
    border-radius: 0 0 32px 32px;
  }
}

@media (max-width: 560px) {
  .precontacto__circles {
    width: 86vw;
    height: 86vw;
  }

  .precontacto__text {
    font-size: clamp(1.35rem, 8vw, 2.3rem);
  }

  .contacto-glass__form {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 900px) {
  .precontacto {
    min-height: 100svh;
    height: 100svh;
  }

  .precontacto__stage {
    height: 100svh;
    min-height: 100svh;
  }

  .precontacto__arrow {
    left: calc(50% + 120px);
    top: calc(50% + 120px);
    width: 54px;
    height: 54px;
    font-size: 2rem;
  }
}



/* ============================================================
   VISITANOS
   ============================================================ */

.visitanos {
  background: transparent !important;
  padding: 5rem 0;
}

.visitanos .container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  gap: 3rem;
}

.visitanos__texto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visitanos__pre {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #25c7e6;
  text-transform: uppercase;
}

.visitanos__titulo {
  font-family: var(--font-cuerpo);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #004a65;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.visitanos__dir,
.visitanos__horario {
  font-size: 0.88rem;
  color: #00384d;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.visitanos__dir i,
.visitanos__horario i {
  color: #25c7e6;
  font-size: 1rem;
  flex-shrink: 0;
}

.visitanos__mapa iframe {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,74,101,0.12);
  display: block;
}

/* ============================================================
   VISITANOS — MAPA
============================================================ */

.visitanos {
  position: relative;
  padding: 6rem 1.5rem;
  z-index: 35;
}

.visitanos__container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.visitanos__info {
  color: #fff;
}

.visitanos__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  background: #25c7e6;
  color: #003746;
  font-weight: 900;
  letter-spacing: .08em;
}

.visitanos__info h2 {
  font-family: var(--font-cuerpo);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 1000;
  line-height: .95;
  margin-bottom: 1rem;
}

.visitanos__info p {
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
}

.visitanos__mapa {
  height: 460px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow:
    0 35px 90px rgba(0,0,0,.28),
    0 0 55px rgba(37,199,230,.25);
  border: 1px solid rgba(255,255,255,.18);
}

.visitanos__mapa iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(.9) contrast(1.05);
}

@media (max-width: 900px) {
  .visitanos__container {
    grid-template-columns: 1fr;
  }

  .visitanos__mapa {
    height: 360px;
  }
}

/* ANIMACIÓN AL HACER SCROLL — MINI ZOOM */
.scroll-reveal {
  opacity: 0;
  transform: scale(0.985) translateY(30px);
  filter: blur(8px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.19,1,.22,1),
    filter 0.7s ease;
  will-change: transform, opacity, filter;
}

.scroll-reveal.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

.main-bg{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #005267;
}

/* Fondo base detrás de TODO */
.main-bg::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,69,90,.85) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(0,85,82,.75) 0%, transparent 40%),
    radial-gradient(ellipse at 0% 100%, rgba(0,14,43,.8) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(0,37,72,.7) 0%, transparent 40%),
    radial-gradient(ellipse at 20% 50%, rgba(0,225,255,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(38,157,198,.40) 0%, transparent 50%);
}

/* Mesh y noise detrás del contenido */
.main-bg__mesh,
.main-bg__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.main-bg__mesh {
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Cpolygon points='14,2 26,9 26,15 14,22 2,15 2,9' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 28px 24px;
  background-repeat: repeat;
  mix-blend-mode: soft-light;
  animation: meshFlow 8s ease-in-out infinite;
  opacity: .08;
}

.main-bg__noise {
  z-index: 3;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* Todo el contenido por encima */
.main-bg > section {
  position: relative;
  z-index: 10;
}




.marcas,
.acerca,
.divisiones,
.beneficios {
  transform: none !important;
}






/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: var(--color-navy);
  padding: var(--sp-lg) 0 var(--sp-md);
  border-top: 5px white;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__marca img { height: 40px; margin-bottom: var(--sp-sm); filter: brightness(0) invert(1); }
.footer__marca p { color: rgba(255,255,255,0.45); font-size: var(--fs-sm); }

.footer__nav h4, .footer__contacto h4 {
  color: var(--color-cyan);
  font-size: var(--fs-xs);
  margin-bottom: var(--sp-sm);
  font-family: var(--font-cuerpo);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__nav ul { display: flex; flex-direction: column; gap: var(--sp-xs); }
.footer__nav a { color: rgba(255,255,255,0.5); font-size: var(--fs-sm); }
.footer__nav a:hover { color: var(--color-cyan); }
.footer__contacto p { color: rgba(255,255,255,0.5); font-size: var(--fs-sm); margin-bottom: var(--sp-xs); }

.footer__copy { text-align: center; padding-top: var(--sp-md); }
.footer__copy p { color: rgba(255,255,255,0.3); font-size: var(--fs-xs); }

/* ============================================================
   8. RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__slide:nth-child(1) {
    padding: 0 var(--sp-md);
    justify-content: center;
  }
  .hero__slide:nth-child(1) .hero__content {
    max-width: 100%;
  }
  .productos-destacados .container { grid-template-columns: 1fr; }
  .productos__persona-wrap { display: none; }
  .acerca__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header { padding: var(--sp-sm); }

  .navbar {
    width: 100%;
    border-radius: var(--radius-lg);
    padding: 0.4rem 0.4rem 0.4rem 0.8rem;
    justify-content: space-between;
  }

  .navbar__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: var(--sp-sm);
    right: var(--sp-sm);
    background-color: rgba(13, 33, 55, 0.97);
    border-radius: var(--radius-lg);
    padding: var(--sp-sm);
    gap: var(--sp-xs);
    box-shadow: var(--sombra-md);
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 200;
  }

  .navbar__menu.open { display: flex; }
  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }

  .beneficios__grid { grid-template-columns: 1fr; }
  .contacto__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-md); }
}



/* ============================================================
   HEADER PRODUCTOS — LIMPIO / COHERENTE CON CSS GENERAL
============================================================ */

.productos-header--nuevo{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  padding:0;
  background:
    radial-gradient(circle at 16% 18%, rgba(37,199,230,.28), transparent 34%),
    radial-gradient(circle at 70% 55%, rgba(37,199,230,.30), transparent 38%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 20%),
    linear-gradient(135deg, var(--color-hero-bg) 0%, var(--color-navy) 42%, var(--color-navy-deep) 100%);
}

.productos-header--nuevo::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 60% 55%, rgba(37,199,230,.30), transparent 34%),
    linear-gradient(90deg, rgba(0,47,63,.15), rgba(0,47,63,.55));
  z-index:1;
  pointer-events:none;
}

.productos-header--nuevo .productos-header__mesh{
  z-index:2;
  opacity:.10;
}

.productos-header--nuevo .productos-header__noise{
  z-index:3;
  opacity:.12;
}

.productos-header--nuevo .productos-header__canvas{
  position:relative;
  z-index:5;
  width:min(100%, 1600px);
  height:920px;
  margin:0 auto;
}

.productos-header--nuevo .productos-header__canvas::before{
  content:"";
  position:absolute;
  left:58%;
  top:57%;
  width:680px;
  height:180px;
  border-radius:50%;
  background:rgba(37,199,230,.34);
  filter:blur(42px);
  transform:translate(-50%, -50%);
  z-index:1;
}

/* TEXTO PRINCIPAL */

.productos-header__copy{
  position:absolute;
  left:54px;
  top:145px;
  z-index:15;
  color:#fff;
  width:560px;
}

.productos-header__copy h1{
  margin:0 0 28px;
  font-family:var(--font-cuerpo);
  font-size:clamp(4.2rem, 6vw, 6.8rem);
  line-height:.92;
  letter-spacing:-.06em;
  font-weight:900;
}

.productos-header__copy h1 span{
  color:var(--color-cyan);
  text-shadow:0 0 24px rgba(37,199,230,.32);
}

.productos-header__copy p{
  margin:28px 0 0;
  font-family:var(--font-cuerpo);
  font-size:1.55rem;
  line-height:1.35;
  color:rgba(255,255,255,.92);
}

/* ELIMINADO EL PILL VER CATÁLOGO */

.productos-header__btn{
  display:none;
}

/* BUSCADOR DEBAJO DEL TÍTULO */

.productos-header--nuevo .productos-header__search-wrap{
  position:relative;
  width:100%;
  margin:0 0 28px;
  z-index:40;
}

.productos-header--nuevo .productos-header__search{
  width:100%;
  height:70px;
  border-radius:var(--radius-xl);
  background:rgba(0,47,63,.55);
  border:1px solid rgba(37,199,230,.42);
  opacity:1;

  display:flex;
  align-items:center;
  gap:14px;

  padding:0 24px;

  box-shadow:
    0 0 26px rgba(37,199,230,.15),
    0 18px 35px rgba(0,0,0,.18);
}

.productos-header--nuevo .productos-header__search span{
  color:rgba(255,255,255,.72);
  font-size:2.2rem;
  line-height:1;
}

.productos-header--nuevo .productos-header__search input{
  width:100%;
  height:100%;

  background:transparent !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
  appearance:none;
  -webkit-appearance:none;

  color:#fff;
  font-family:var(--font-cuerpo);
  font-size:1.45rem;
  font-weight:600;
}

.productos-header--nuevo .productos-header__search input::placeholder{
  color:rgba(255,255,255,.62);
  opacity:1;
}

.productos-header--nuevo .productos-header__search input:-webkit-autofill,
.productos-header--nuevo .productos-header__search input:-webkit-autofill:hover,
.productos-header--nuevo .productos-header__search input:-webkit-autofill:focus{
  -webkit-box-shadow:0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color:#fff !important;
  transition:background-color 9999s ease-in-out 0s;
}

/* RESULTADOS */

.productos-header--nuevo .productos-header__resultados{
  position:absolute;
  left:0;
  top:calc(100% + 14px);
  width:100%;
  z-index:80;
}



/* TEXTO DECORATIVO */

.productos-header--nuevo .productos-header__bgtext{
  position:absolute;

  right:300px;
  top: 35%;

  left:auto;
  transform:translateY(-50%);

  z-index:2;

  text-align:left;
  font-family:var(--font-cuerpo);
  font-size:8.5rem;
  font-weight:900;
  line-height:.82;
  letter-spacing:-.08em;

  /* NUEVO COLOR */
  color:#00384b;

  opacity:0.2;

  text-shadow:
      0 0 18px rgba(37,198,220,.12),
      0 0 45px rgba(37,198,220,.08);

  filter:none;
  animation:none;
}

.productos-header--nuevo .productos-header__bgtext span{
  display:block;
  color:inherit;
}

.productos-header--nuevo .productos-header__bgtext::before{
  content:"";

  position:absolute;

  left:50%;
  top:50%;

  transform:translate(-50%,-50%);

  width:420px;
  height:420px;

  border-radius:50%;

  background:
      radial-gradient(
          circle,
          rgba(37,198,220,.28) 0%,
          rgba(37,198,220,.16) 35%,
          rgba(37,198,220,.08) 55%,
          transparent 75%
      );

  filter:blur(55px);

  z-index:-1;

  pointer-events:none;
}


/* IMAGEN CENTRAL */

.productos-header--nuevo .productos-header__imagen{
  position:absolute;
  z-index:8;
    left: 42% !important;
  top:180px !important;
  width:800px !important;
  transform:translateX(-30%) !important;
  filter:drop-shadow(0 35px 45px rgba(0,0,0,.35));
  animation:productosFloatNuevo 5.5s ease-in-out infinite;
}

/* CARDS STATS */

.productos-header__stat{
  position:absolute;
  z-index:16;
  width:300px;
  min-height:145px;
  padding:26px 28px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(37,199,230,.42);
  background:rgba(0,47,63,.38);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 25px 45px rgba(0,0,0,.20);
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
}

.productos-header__stat--one{
  top:55px;
  left:575px;
}

.productos-header__stat--two{
  top:275px;
  right:110px;
}

.productos-header__stat strong{
  display:block;
  color:var(--color-cyan);
  font-family:var(--font-cuerpo);
  font-size:3.1rem;
  line-height:1;
  font-weight:900;
}

.productos-header__stat p{
  margin:18px 0 0;
  color:#fff;
  font-family:var(--font-cuerpo);
  font-size:1rem;
  line-height:1.25;
}

.productos-header__stat > span{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--color-cyan);
  color:var(--color-navy);
  font-size:1.35rem;
  font-weight:900;
}

/* BENEFICIOS */

.productos-header__beneficios{
  position:absolute;
  left:54px;
  bottom:150px;
  z-index:16;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
  width:950px;
}

.productos-header__beneficios > div{
  position:relative;
  padding-left:58px;
  min-height:64px;
  border-right:1px solid rgba(37,199,230,.25);
}

.productos-header__beneficios > div::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:42px;
  height:42px;
  border-radius:14px;
  border:3px solid var(--color-cyan);
  color:var(--color-cyan);
  display:grid;
  place-items:center;
  font-weight:900;
}

.productos-header__beneficios strong{
  display:block;
  color:#fff;
  font-family:var(--font-cuerpo);
  font-size:.9rem;
  font-weight:900;
  margin-bottom:8px;
}

.productos-header__beneficios p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-family:var(--font-cuerpo);
  font-size:.82rem;
  line-height:1.35;
}

/* FRASE DERECHA */

.productos-header__frase{
  position:absolute;
  right:90px;
  bottom:155px;
  z-index:16;
  width:330px;
  color:#fff;
}

.productos-header__frase h2{
  margin:0 0 16px;
  font-family:var(--font-cuerpo);
  font-size:1.75rem;
  line-height:1.08;
  font-weight:900;
}

.productos-header__frase h2 span{
  color:var(--color-cyan);
}

.productos-header__frase p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-family:var(--font-cuerpo);
  font-size:1rem;
  line-height:1.35;
}

@keyframes productosFloatNuevo{
  0%,100%{
    transform:translateX(-34%) translateY(0);
  }
  50%{
    transform:translateX(-34%) translateY(-10px);
  }
}


.productos-header__dark-core,
.productos-header__metal,
.productos-header__vignette,
.productos-header__mesh,
.productos-header__noise,
.productos-header__texture{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  overflow: visible;
}

.productos-header__dark-core{
  z-index:1;
  background:
    radial-gradient(ellipse at 50% 60%,
      rgba(1,23,45,.75) 0%,
      rgba(0,56,77,.70) 45%,
      rgba(0,55,85,.65) 100%
    ),
    radial-gradient(ellipse at 20% 40%,
      rgba(0,31,46,.70) 0%,
      transparent 80%
    );
  mix-blend-mode:multiply;
  overflow: visible;
}

.productos-header__metal{
  z-index:2;
  opacity:.6;
  background:
    radial-gradient(ellipse at 20% 50%, #00e1ff 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, #003352 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, #269dc6 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, #26b4e8 0%, transparent 40%);
  mix-blend-mode:screen;
  overflow: visible;
}

.productos-header__vignette{
  z-index:3;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(0,69,90,.85) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 0%, rgba(0,85,82,.75) 0%, transparent 40%),
    radial-gradient(ellipse at 0% 100%, rgba(0,14,43,.8) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 100%, rgba(0,37,72,.7) 0%, transparent 40%);
}

.productos-header__mesh{
  z-index:4;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Cpolygon points='14,2 26,9 26,15 14,22 2,15 2,9' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size:28px 24px;
  background-repeat:repeat;
  mix-blend-mode:soft-light;
  animation:meshFlow 8s ease-in-out infinite;
  opacity:.08;
}

.productos-header__noise{
  z-index:5;
  opacity:.25;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:256px 256px;
  mix-blend-mode:overlay;
}

.productos-header__texture{
  z-index:6;
  background-image:url('../imagenes/productos/textura.png');
  background-size:cover;
  background-position:center;
  opacity:.12;
  mix-blend-mode:soft-light;
}

.productos-header__canvas{
  z-index:10;
}

/* ============================================================
   ANIMACIONES HEADER PRODUCTOS
============================================================ */

/* Glow respirando */
.productos-header__canvas::before{
  animation: productosGlowPulse 6s ease-in-out infinite;
}

/* Texto decorativo entra con profundidad */
.productos-header__bgtext{
  opacity:0;
  filter:blur(12px);
  animation: productosBgTextIn 1.1s cubic-bezier(.19,1,.22,1) .15s forwards;
}

/* Texto principal + buscador entran juntos */
.productos-header__texto{
  opacity:0;
  filter:blur(10px);
  animation: productosTextoIn .9s cubic-bezier(.19,1,.22,1) .75s forwards;
}

/* Buscador con micro glow */
.productos-header__search{
  box-shadow:
    0 0 0 rgba(37,199,230,0),
    0 18px 35px rgba(0,0,0,.18);

  animation: productosSearchGlow 4s ease-in-out 1.4s infinite;
}

/* Fondo metálico con movimiento mínimo */
.productos-header__metal{
  animation: productosMetalMove 10s ease-in-out infinite alternate;
}

/* Textura respirando muy leve */
.productos-header__texture{
  animation: productosTextureSoft 8s ease-in-out infinite alternate;
}


/* KEYFRAMES */

@keyframes productosGlowPulse{
  0%,100%{
    opacity:.75;
    transform:translate(-50%, -50%) scale(.96);
  }
  50%{
    opacity:1;
    transform:translate(-50%, -50%) scale(1.04);
  }
}

@keyframes productosBgTextIn{
  0%{
    opacity:0;
    filter:blur(16px);
    transform:
      translateX(calc(-50% + var(--visual-move-x)))
      translateY(calc(var(--visual-move-y) + 35px))
      scale(.96);
  }

  100%{
    opacity:1;
    filter:blur(0);
    transform:
      translateX(calc(-50% + var(--visual-move-x)))
      translateY(var(--visual-move-y))
      scale(1);
  }
}

@keyframes productosMockupIn{
  0%{
    opacity:0;
    filter:blur(14px) drop-shadow(0 30px 35px rgba(0,0,0,.15));
    transform:
      translateX(calc(-50% + var(--visual-move-x)))
      translateY(calc(var(--visual-move-y) + 55px))
      scale(.92);
  }

  65%{
    opacity:1;
    filter:blur(2px) drop-shadow(0 30px 35px rgba(0,0,0,.25));
    transform:
      translateX(calc(-50% + var(--visual-move-x)))
      translateY(calc(var(--visual-move-y) - 6px))
      scale(1.015);
  }

  100%{
    opacity:1;
    filter:blur(0) drop-shadow(0 30px 35px rgba(0,0,0,.25));
    transform:
      translateX(calc(-50% + var(--visual-move-x)))
      translateY(var(--visual-move-y))
      scale(1);
  }
}

@keyframes productosFloat{
  0%,100%{
    transform:
      translateX(calc(-50% + var(--visual-move-x)))
      translateY(var(--visual-move-y));
  }

  50%{
    transform:
      translateX(calc(-50% + var(--visual-move-x)))
      translateY(calc(var(--visual-move-y) - 10px));
  }
}

@keyframes productosTextoIn{
  0%{
    opacity:0;
    filter:blur(12px);
    transform:translateX(-50%) translateY(35px);
  }

  100%{
    opacity:1;
    filter:blur(0);
    transform:translateX(-50%) translateY(0);
  }
}

@keyframes productosSearchGlow{
  0%,100%{
    box-shadow:
      0 0 0 rgba(37,199,230,0),
      0 18px 35px rgba(0,0,0,.18);
  }

  50%{
    box-shadow:
      0 0 28px rgba(37,199,230,.28),
      0 18px 35px rgba(0,0,0,.18);
  }
}

@keyframes productosMetalMove{
  0%{
    transform:scale(1) translateX(0);
    opacity:.45;
  }

  100%{
    transform:scale(1.08) translateX(-25px);
    opacity:.65;
  }
}

@keyframes productosTextureSoft{
  0%{
    opacity:.08;
  }

  100%{
    opacity:.15;
  }
}


  /* ============================================================
   GBOMEDICAL — producto-detalle.css
   Página individual de producto. Depende de styles.css
   ============================================================ */

/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */
.detalle-producto{
  position:relative;
  padding-top:130px;
  padding-bottom:6rem;
  min-height:100vh;
  overflow:hidden;
  background:

    radial-gradient(
      circle at 0% 0%,
      rgba(37,199,230,.18) 0%,
      transparent 28%
    ),

    radial-gradient(
      circle at 100% 0%,
      rgba(37,199,230,.10) 0%,
      transparent 24%
    ),

    radial-gradient(
      circle at 0% 100%,
      rgba(37,199,230,.08) 0%,
      transparent 24%
    ),

    radial-gradient(
      circle at 100% 100%,
      rgba(255,255,255,.15) 0%,
      transparent 22%
    ),

    radial-gradient(
      circle at 50% 25%,
      rgba(37,199,230,.25) 0%,
      transparent 45%
    ),

    radial-gradient(
      circle at 80% 65%,
      rgba(37,199,230,.18) 0%,
      transparent 40%
    ),

    linear-gradient(
      180deg,
      #0a3552 0%,
      #0f4f67 45%,
      #0c6b7e 100%
    );
}

.detalle-producto::before{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24'%3E%3Cpolygon points='14,2 26,9 26,15 14,22 2,15 2,9' fill='none' stroke='rgba(255,255,255,0.9)' stroke-width='0.8'/%3E%3C/svg%3E");

  background-size:28px 24px;
  background-repeat:repeat;

  opacity:.035;

  mix-blend-mode:soft-light;

  z-index:1;
}

.detalle-producto::after{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;

  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  background-repeat:repeat;
  background-size:256px 256px;

  opacity:.08;

  mix-blend-mode:overlay;

  z-index:2;
}


.grid-detalle {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

/* ============================================================
   IMAGEN / GALERÍA
   ============================================================ */
.producto-galeria{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.producto-galeria__principal{
  position:relative;
}

.galeria-producto-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;

  border:none;
  background:rgba(10,53,82,.75);
  color:#fff;

  width:42px;
  height:42px;
  border-radius:50%;

  font-size:2rem;
  font-weight:900;
  cursor:pointer;
}

.galeria-producto-btn--prev{
  left:12px;
}

.galeria-producto-btn--next{
  right:12px;
}

.producto-galeria__thumbs{
  display:flex;
  gap:.8rem;
}

.producto-galeria__thumb{
  width:82px;
  height:82px;

  border:none;
  border-radius:14px;

  background:#fff;
  padding:.45rem;

  cursor:pointer;
  opacity:.65;
}

.producto-galeria__thumb.active{
  opacity:1;
  outline:3px solid var(--color-cyan);
}

.producto-galeria__thumb img{
  width:100%;
  height:100%;
  object-fit:contain;
}


/* ============================================================
   INFO TEXTO
   ============================================================ */
.info-texto {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

#titulo-producto {
  font-family: var(--font-cuerpo);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 1000;
  color: floralwhite;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

#descripcion-larga {
  font-size: 0.97rem;
  color: #ffffff;
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   ESPECIFICACIONES TÉCNICAS
   ============================================================ */
.info-texto h3 {
  font-family: var(--font-cuerpo);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: floralwhite;
  margin-top: 0.5rem;
  margin-bottom: -0.4rem;
}

#lista-especificaciones {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
}

#lista-especificaciones li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(13, 33, 55, 0.08);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--color-navy);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#lista-especificaciones li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-teal) 100%);
}

/* ============================================================
   BOTÓN FICHA TÉCNICA
   ============================================================ */
/* ==========================================================
   BOTONES WHATSAPP
========================================================== */

.ws-botones{
    display:flex;
    gap:1rem;
    width:50%;
    margin-top:2rem;
    transform: translateX(50%);
}

.ws-botones .btn-ws{
    flex:1;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:.8rem;

    padding:16px 20px;

    border-radius:999px;

    background:#25D366;
    color:#fff;

    text-decoration:none;
    font-size:1rem;
    font-weight:700;

    transition:.3s ease;

    box-shadow:
        0 12px 28px rgba(0,0,0,.22),
        0 0 18px rgba(37,211,102,.35);
}

.ws-botones .btn-ws img{
    width:24px;
    height:24px;
}

.ws-botones .btn-ws:hover{

    transform:translateY(-3px);

    background:#20bd5a;

    box-shadow:
        0 18px 40px rgba(0,0,0,.28),
        0 0 30px rgba(37,211,102,.55);
}

/* Responsive */

@media(max-width:768px){

    .ws-botones{
        flex-direction:column;
    }

}

/* ============================================================
   FORMULARIO DE CONSULTA
   ============================================================ */
.producto-contacto {
  background: var(--color-cyan);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: 0 12px 40px rgba(13, 33, 55, 0.2);
  max-width: 1300px;
  margin: 3rem auto 0;
}

.producto-contacto h3 {
  font-family: var(--font-cuerpo);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

#form-consulta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#form-consulta input[type="hidden"]{
  display:none;
}


#form-consulta input,
#form-consulta textarea {
  width: 100%;
  background: white;
  opacity: 0.5;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--font-cuerpo);
  font-size: 0.9rem;
  color: var(--color-navy-dark);
  outline: none;
  transition: var(--transicion);
}

#form-consulta input::placeholder,
#form-consulta textarea::placeholder {
  color: var(--color-navy-dark);
}

#form-consulta input:focus,
#form-consulta textarea:focus {
  border-color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(0, 200, 232, 0.15);
}

#form-consulta textarea {
  grid-column: span 2;
  min-height: 110px;
  resize: vertical;
}

#form-consulta button.btn--primary {
  grid-column: span 2;
  justify-self: start;
  background: white;
  color: var(--color-navy);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-cuerpo);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2.4rem;
  cursor: pointer;
  box-shadow: var(--sombra-cyan);
  transition: var(--transicion);
}

#form-consulta button.btn--primary:hover {
  background: linear-gradient(90deg, var(--color-cyan-light) 0%, var(--color-cyan) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgb(255, 255, 255);
}

/* ============================================================
   PRODUCTOS RELACIONADOS
   ============================================================ */
.productos-relacionados {
  margin-top: 4rem;
}

.productos-relacionados h3 {
  font-family: var(--font-cuerpo);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: whitesmoke;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2.75rem;
  transform: translateX(30%);
}

.productos-relacionados h3::after {
  content: '';
  flex: 1;
  height: 2px;
  background: white;
  border-radius: 2px;
}

.grid-pequeno {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  justify-content: center;
  gap: 1.5rem;
}


.card-relacionado {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(13, 33, 55, 0.07);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transicion);
  display: flex;
  flex-direction: column;
}

.card-relacionado:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 33, 55, 0.12);
  border-color: var(--color-cyan);
}

.card-relacionado img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #f0f4f7;
  padding: 1rem;
  object-fit: contain;
}

.card-relacionado h4 {
  font-family: var(--font-cuerpo);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy);
  padding: 0.75rem 1rem 0.25rem;
  line-height: 1.3;
}

.card-relacionado a {
  display: inline-block;
  margin: 0.5rem 1rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cyan);
  text-decoration: none;
  transition: var(--transicion);
}

.card-relacionado a:hover {
  color: var(--color-teal);
}

/* ============================================================
   BREADCRUMB (opcional pero recomendado)
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: #8a9bb0;
}

.breadcrumb a {
  color: var(--color-steel);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transicion);
}

.breadcrumb a:hover {
  color: var(--color-cyan);
}

.breadcrumb span {
  color: rgba(13, 33, 55, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .grid-detalle {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #foto-producto {
    height: 280px;
  }

  .grid-pequeno {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .detalle-producto {
    padding-top: 90px;
  }

  .producto-contacto {
    padding: 2rem 1.5rem;
  }

  #form-consulta {
    grid-template-columns: 1fr;
  }

  #form-consulta input[type="text"],
  #form-consulta textarea,
  #form-consulta button.btn--primary {
    grid-column: span 1;
  }

  .grid-pequeno {
    grid-template-columns: 1fr;
  }
}






/* ============================================================
   HERO DE PÁGINA
============================================================ */
/* ============================================================
   HEADER SOBRE NOSOTROS
============================================================ */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: end center;
  padding: 0 8% 10vh;
  background: #005267;
  color: #fff;
}

.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: grayscale(.15) contrast(1.05);
  z-index: 1;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08) 0%, transparent 34%),
    linear-gradient(
      90deg,
      rgba(0,82,103,.96) 0%,
      rgba(0,82,103,.56) 48%,
      rgba(0,82,103,.96) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,82,103,.72) 0%,
      rgba(0,82,103,.28) 45%,
      rgba(0,82,103,.92) 100%
    );
}

.about-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}

.about-hero__title {
  display: inline-block;
  font-size: clamp(4.3rem, 10vw, 9.2rem);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.08em;
  margin: 0 0 18px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 5px solid rgba(255,255,255,.9);
  animation:
    typing 1.7s steps(16) .25s both,
    cursorBlink .75s step-end infinite;
}

.about-hero__title span {
  display: inline-block;
}

.about-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.05;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(.92) translateY(18px);
  filter: blur(18px);
  animation: subtitleZoomBlur 1.15s cubic-bezier(.22, 1, .36, 1) 1.75s forwards;
}

/* Máquina de escribir */
@keyframes typing {
  from {
    max-width: 0;
  }
  to {
    max-width: 100%;
  }
}

@keyframes cursorBlink {
  50% {
    border-color: transparent;
  }
}

/* Zoom blur premium */
@keyframes subtitleZoomBlur {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    min-height: 88svh;
    padding: 0 6% 12vh;
  }

  .about-hero__title {
    font-size: clamp(3rem, 15vw, 5rem);
    border-right-width: 3px;
  }

  .about-hero__subtitle {
    font-size: .95rem;
  }

  .about-hero__subtitle br {
    display: none;
  }
}


/* ============================================================
   SOBRE NOSOTROS — PÁGINA COMPLETA
============================================================ */

body {
  font-family: var(--font-cuerpo);
  background: #14586a;
  color: #fff;
}

/* ============================================================
   HEADER SOBRE NOSOTROS
============================================================ */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: end center;
  padding: 0 8% 10vh;
  background: #005267;
  color: #fff;
}

.about-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: grayscale(.15) contrast(1.05);
  z-index: 1;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08) 0%, transparent 34%),
    linear-gradient(90deg, rgba(0,82,103,.96) 0%, rgba(0,82,103,.56) 48%, rgba(0,82,103,.96) 100%),
    linear-gradient(180deg, rgba(0,82,103,.72) 0%, rgba(0,82,103,.28) 45%, rgba(0,82,103,.92) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}

.about-hero__title {
  display: inline-block;
  font-family: var(--font-cuerpo);
  font-size: clamp(4.3rem, 10vw, 9.2rem);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.08em;
  margin: 0 0 18px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 5px solid rgba(255,255,255,.9);
  animation:
    typing 1.7s steps(16) .25s both,
    cursorBlink .75s step-end infinite;
}

.about-hero__subtitle {
  font-family: var(--font-cuerpo);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  line-height: 1.05;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(.92) translateY(18px);
  filter: blur(18px);
  animation: subtitleZoomBlur 1.15s cubic-bezier(.22, 1, .36, 1) 1.75s forwards;
}

@keyframes typing {
  from { max-width: 0; }
  to { max-width: 100%; }
}

@keyframes cursorBlink {
  50% { border-color: transparent; }
}

@keyframes subtitleZoomBlur {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* ============================================================
   SECCIÓN GALERÍA SOBRE NOSOTROS
============================================================ */

.about-gallery {
  min-height: 100svh;
  width: 100%;
  background: #14586a;
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: center;
  gap: 20px;
  padding: 8vh 0 8vh 3%;
}

.about-gallery__intro {
  max-width: 620px;
  z-index: 5;
}

.about-gallery__intro h2 {
  font-family: var(--font-cuerpo);
  font-size: 2.7rem;
  line-height: .96;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
}

.about-gallery__intro strong {
  font-weight: 900;
}

.about-gallery__buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  max-width: 450px;
  max-height: 50px;
}

.about-tab {
  border: 0;
  min-height: 70px;
  border-radius: 999px;
  background: #28c3dc;
  color: #fff;
  font-family: var(--font-cuerpo);
  font-size: clamp(1rem, 1.3vw, 1.45rem);
  font-weight: 900;
  cursor: pointer;
  transition: .35s ease;
  text-align: left;
  padding: 0 34px;
}

.about-tab:hover,
.about-tab.active {
  transform: translateY(-4px) scale(1.02);
  background: #35d1e8;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

.about-gallery__slider {
  position: relative;
  height: 560px;
  overflow: visible;
}

.about-card {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(520px, 34vw);
  height: 560px;
  padding: 92px 38px 50px;
  border-radius: 84px;
  background: #28c3dc;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
  transition:
    transform .65s cubic-bezier(.22, 1, .36, 1),
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    filter .65s cubic-bezier(.22, 1, .36, 1);
}

.about-card h3 {
  font-family: var(--font-cuerpo);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 0 0 30px;
}

.about-card p {
  font-family: var(--font-cuerpo);
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
}

.about-card.active {
  transform: translateY(-50%) translateX(0) scale(1);
  z-index: 4;
}

.about-card.next-1 {
  transform: translateY(-50%) translateX(calc(100% + 22px)) scale(1);
  z-index: 3;
}

.about-card.next-2 {
  transform: translateY(-50%) translateX(calc(200% + 44px)) scale(1);
  z-index: 2;
}

.about-card.next-3 {
  transform: translateY(-50%) translateX(calc(300% + 66px)) scale(1);
  z-index: 1;
}

.about-card.prev {
  transform: translateY(-50%) translateX(-45%) scale(.92);
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
}


.blur-words span {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px) scale(.96);
  filter: blur(16px);
  will-change: transform, opacity, filter;
}

.about-gallery.show .blur-words span {
  animation: blurWordReveal .75s cubic-bezier(.22, 1, .36, 1) forwards;
}

.about-gallery.show .blur-words span:nth-of-type(1) { animation-delay: .05s; }
.about-gallery.show .blur-words span:nth-of-type(2) { animation-delay: .12s; }
.about-gallery.show .blur-words span:nth-of-type(3) { animation-delay: .19s; }
.about-gallery.show .blur-words span:nth-of-type(4) { animation-delay: .26s; }
.about-gallery.show .blur-words span:nth-of-type(5) { animation-delay: .33s; }
.about-gallery.show .blur-words span:nth-of-type(6) { animation-delay: .40s; }
.about-gallery.show .blur-words span:nth-of-type(7) { animation-delay: .47s; }
.about-gallery.show .blur-words span:nth-of-type(8) { animation-delay: .54s; }
.about-gallery.show .blur-words span:nth-of-type(9) { animation-delay: .61s; }
.about-gallery.show .blur-words span:nth-of-type(10) { animation-delay: .68s; }
.about-gallery.show .blur-words span:nth-of-type(11) { animation-delay: .75s; }

@keyframes blurWordReveal {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(.96);
    filter: blur(16px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}




/* ============================================================
   ESTADÍSTICAS
============================================================ */

.stats {
  padding: 120px 8%;
  background: #ffffff;
  color: #0f2d48;
}

.stats__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.stat h3 {
  font-family: var(--font-cuerpo);
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: var(--color-navy-deep);
  font-weight: 900;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
}

.stat-number {
  display: inline-block;
  min-width: 1.8ch;
  font-variant-numeric: tabular-nums;
}

.stat p {
  font-family: var(--font-cuerpo);
  color: #14586a;
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================================
   CTA FINAL
============================================================ */

.cta {
  padding: 120px 8%;
  background: linear-gradient(135deg, #0f2d48, #14586a);
  color: white;
  text-align: center;
}

.cta__container {
  max-width: 800px;
  margin: auto;
}

.cta h2 {
  font-family: var(--font-cuerpo);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.cta p {
  font-family: var(--font-cuerpo);
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 34px;
  background: #28c3dc;
  color: #ffffff;
  font-family: var(--font-cuerpo);
  font-weight: 900;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #35d1e8;
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: #0f2d48;
  padding: 30px 8%;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-cuerpo);
  font-size: 14px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1000px) {
  .about-gallery {
    grid-template-columns: 1fr;
    padding: 90px 6%;
    gap: 50px;
  }

  .about-gallery__slider {
    height: 520px;
  }

  .about-card {
    width: min(440px, 78vw);
    height: 520px;
  }

  .about-card.next-1 {
    transform: translateY(-50%) translateX(52%) scale(.95);
  }

  .about-card.next-2,
  .about-card.next-3 {
    transform: translateY(-50%) translateX(100%) scale(.9);
    opacity: .35;
  }

  .stats__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 88svh;
    padding: 0 6% 12vh;
  }

  .about-hero__title {
    font-size: clamp(3rem, 15vw, 5rem);
    border-right-width: 3px;
  }

  .about-hero__subtitle {
    font-size: .95rem;
  }

  .about-hero__subtitle br {
    display: none;
  }
}

@media (max-width: 600px) {
  .about-gallery__buttons {
    grid-template-columns: 1fr;
  }

  .about-tab {
    min-height: 58px;
  }

  .about-card {
    border-radius: 52px;
    padding: 70px 30px 40px;
  }
}


/* ============================================================
   PRODUCTOS — CANVAS CATÁLOGO TIPO PREMIUM
============================================================ */

.productos-canvas {
  position: relative;
  padding: 3rem 1rem 7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(37,198,220,.28), transparent 34%),
    radial-gradient(circle at 88% 68%, rgba(37,198,220,.20), transparent 34%),
    linear-gradient(180deg, #00677a 0%, #00576b 42%, #003f55 100%);
}

.productos-canvas__inner {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: auto;
  gap: 2rem;
}

.productos-canvas__mesh {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='28'%3E%3Cpolygon points='16,2 30,10 30,18 16,26 2,18 2,10' fill='none' stroke='rgba(255,255,255,.45)' stroke-width='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.productos-canvas__glow {
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  filter: blur(75px);
  pointer-events: none;
}

.productos-canvas__glow--one {
  left: -180px;
  top: 120px;
  background: rgba(37,198,220,.28);
}

.productos-canvas__glow--two {
  right: -180px;
  bottom: 120px;
  background: rgba(0,45,65,.75);
}

.productos-divisiones {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding: 1.1rem;
  border: 1px solid rgba(37,198,220,.35);
  border-radius: 28px;
  background: rgba(0, 45, 65, .42);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.productos-divisiones a {
  display: block;
  padding: .8rem 1rem;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: .86rem;
}

.productos-divisiones a:hover,
.productos-divisiones a.active {
  color: #003746;
  background: var(--color-cyan);
}

.productos-canvas__content {
  display: grid;
  width: 100%;
  gap: 2rem;
}

.cat-seccion {
  position: relative;
  padding: 3rem 2.2rem 3.2rem;
  border: 1px solid rgba(37,198,220,.38);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37,198,220,.20), transparent 35%),
    rgba(0, 43, 62, .52);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 30px 80px rgba(0,0,0,.22);
  overflow: hidden;
}

.cat-seccion::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(37,198,220,.22);
  box-shadow: 0 0 55px rgba(37,198,220,.24);
}

.cat-seccion__head {
  position: relative;
  z-index: 2;
  margin-bottom: 2rem;
}



.cat-seccion__head h2 {
  color: #fff;
  font-family: var(--font-cuerpo);
    font-size: clamp(2rem, 6vw, 3.2rem);
  max-width: 720px;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -.04em;
}

.producto-lista {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}


.producto-card {
  min-height: 520px;
  padding: 1.5rem 1.35rem 1.6rem;

  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);

  background:
    radial-gradient(
      circle at 22% 15%,
      rgba(255,255,255,.16),
      transparent 35%
    ),

    linear-gradient(
      180deg,
      #0a7083 0%,
      #08657a 45%,
      #05566d 100%
    );

  box-shadow:
      0 20px 45px rgba(0,0,0,.22),
      inset 0 0 25px rgba(255,255,255,.05);

  transition: .35s ease;
}

.producto-card:hover{

    transform:translateY(-8px);

    background:
        radial-gradient(
            circle at 22% 15%,
            rgba(255,255,255,.22),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            #1193ab 0%,
            #0a7890 45%,
            #07657d 100%
        );

    box-shadow:
        0 30px 65px rgba(0,0,0,.28),
        0 0 40px rgba(37,198,220,.25);

    border-color:rgba(255,255,255,.20);
}


.producto-card__num {
  color: var(--color-cyan);
  font-size: 1.55rem;
  font-weight: 900;
}

.producto-card img {
  width: 100%;
  height: 255px;
  object-fit: contain;
  margin: .4rem auto 1.2rem;
  filter:
    drop-shadow(0 22px 24px rgba(0,0,0,.30))
    drop-shadow(0 0 22px rgba(37,198,220,.22));
}

.producto-card h3 {
  color: #fff;
  font-family: var(--font-cuerpo);
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.producto-card p {
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.65;
  min-height: 88px;
}

.producto-card a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--color-cyan);
  font-weight: 800;
}

.producto-card a span {
  font-size: 1.4rem;
  transition: .3s ease;
}

.producto-card a:hover span {
  transform: translateX(5px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .productos-canvas__inner {
    grid-template-columns: 1fr;
  }

  .productos-divisiones {
    position: relative;
    top: auto;
    display: flex;
    overflow-x: auto;
    gap: .5rem;
  }

  .productos-divisiones a {
    white-space: nowrap;
  }

  .producto-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .cat-seccion {
    padding: 2rem 1rem;
  }

  .producto-lista {
    grid-template-columns: 1fr;
  }

  .producto-card {
    min-height: auto;
  }
}


.productos-header__divisiones-slider{
  position:absolute;
  left:55px;
  right:55px;
  bottom: 100px;
  z-index:8;

  display:flex;
  align-items:center;
  gap:1rem;
}

.productos-header__div-viewport{
  width: calc((130px * 5) + (2rem * 4));
  max-width: 100%;
  overflow: hidden;
}


.productos-header__div-track{
  display:flex;
  gap:2rem;
  transition:transform .55s cubic-bezier(.22,1,.36,1);
  will-change:transform;
}

.productos-header__division{

    flex:0 0 130px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    background:none;
    box-shadow:none;

    text-decoration:none;

    transition:.35s ease;

}


.productos-header__division::before{
  display:none;
}

.productos-header__division img{
  width:118px;
  height:118px;
  border-radius:50%;
  object-fit:contain;
  padding:18px;

  background:#ffffff;

  box-shadow:
    0 18px 45px rgba(0,0,0,.28),
    0 0 35px rgba(255,255,255,.18);

  transition:.35s ease;
}

.productos-header__division img{
  width: 118px;
  height: 118px;

  border-radius: 50%;
  object-fit: cover;
  object-position: center;

  padding: 0;
  display: block;

  background: #ffffff;

  box-shadow:
    0 18px 45px rgba(0,0,0,.28),
    0 0 35px rgba(255,255,255,.18);

  transition: .35s ease;
}





.productos-header__division span{

    margin-top:18px;

    color:#ffffff;

    font-size:1rem;

    font-weight:800;

    text-align:center;

    line-height:1.3;

}


.productos-header__division:hover{
   transform:translateY(-8px);
  color:var(--color-cyan);
  box-shadow:
    0 26px 55px rgba(0,0,0,.30),
    0 0 35px rgba(37,198,220,.35);
}

.productos-header__div-btn{
  flex:0 0 52px;
  width:52px;
  height:52px;

  border:none;
  border-radius:50%;

  background:#ffffff;
  color:#053d57;

  font-size:1.9rem;
  font-weight:800;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
    0 12px 30px rgba(0,0,0,.22),
    0 0 25px rgba(255,255,255,.18);

  transition:.25s ease;
}

.productos-header__div-btn:hover{
  transform:scale(1.08);
  color:var(--color-cyan);
}

.productos-header__div-btn.disabled{
  opacity:.35;
  pointer-events:none;
}

@media(max-width:900px){
  .productos-header__division{
    flex:0 0 calc((100% - 2rem) / 2);
  }
}

@media(max-width:600px){
  .productos-header__division{
    flex:0 0 100%;
  }
}


.productos-header__title .reveal-line{
  display:block;
  opacity:0;
  transform:translateY(38px);
  filter:blur(18px);
  animation:headerReveal .9s cubic-bezier(.19,1,.22,1) forwards;
}

.productos-header__title .reveal-line:nth-child(1){ animation-delay:.1s; }
.productos-header__title .reveal-line:nth-child(2){ animation-delay:.28s; }
.productos-header__title .reveal-line:nth-child(3){ animation-delay:.46s; }

/* conserva el color original de "productos" */
.productos-header__title .reveal-line--producto{
  color:inherit;
}

/* si productos era cyan en tu CSS, usá esta en vez de la anterior */
/*
.productos-header__title .reveal-line--producto{
  color:var(--color-cyan);
}
*/

@keyframes headerReveal{
  from{
    opacity:0;
    transform:translateY(38px);
    filter:blur(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
  }
}

/* FIX COLORES + REVEAL DIVISIONES */

.divisiones__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(35px);
  filter: blur(14px);
}

.divisiones__title .word--white {
  color: #ffffff !important;
}

.divisiones__title .word--cyan {
  color: #35d9e9 !important;
}

.divisiones.is-visible .divisiones__title .word {
  animation: divisionesWordReveal .8s cubic-bezier(.19,1,.22,1) forwards;
}

.divisiones.is-visible .divisiones__title .word:nth-of-type(1) { animation-delay: .05s; }
.divisiones.is-visible .divisiones__title .word:nth-of-type(2) { animation-delay: .13s; }
.divisiones.is-visible .divisiones__title .word:nth-of-type(3) { animation-delay: .21s; }
.divisiones.is-visible .divisiones__title .word:nth-of-type(4) { animation-delay: .29s; }
.divisiones.is-visible .divisiones__title .word:nth-of-type(5) { animation-delay: .37s; }

@keyframes divisionesWordReveal {
  from {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* ==========================================================
   BOTONES WHATSAPP
========================================================== */
