/* ============================================================
   BODEGA LOS GIRASOLES — Design System
   global.css · Aplica a todas las páginas del sitio
   ============================================================ */

/* ── 1. GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@400;600;700&display=swap');


/* ── 2. DESIGN TOKENS ────────────────────────────────────── */
:root {
  /* Colores de marca */
  --girasol:        #FED74B;   /* Amarillo primario */
  --girasol-dark:   #E8C000;   /* Hover / versión más intensa */
  --girasol-pale:   #FEF3BC;   /* Fondos sutiles amarillos */
  --oscuro:         #414042;   /* Casi-negro de marca */
  --oscuro-deep:    #2A292B;   /* Para fondos hero muy oscuros */
  --cream:          #FAFAF7;   /* Blanco cálido — alternativa al gris frío */
  --white:          #FFFFFF;
  --txt-muted-dark: #9CA3AF;   /* Texto secundario sobre fondo oscuro */
  --txt-muted-light: #BBC3CF;  /* Texto secundario con más luminosidad en oscuro-deep */

  /* Tipografía */
  --font-sans: 'Signika Negative', sans-serif;

  /* Escala de radio de borde */
  --r-sm:   0.75rem;   /* 12px  */
  --r-md:   1.25rem;   /* 20px  */
  --r-lg:   1.5rem;    /* 24px  */
  --r-xl:   2rem;      /* 32px  */
  --r-2xl:  2.5rem;    /* 40px  */
  --r-3xl:  3rem;      /* 48px  */

  /* Sombras */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);

  /* Layout */
  --max-w: 80rem;        /* 1280px — ancho máximo de contenido */
  --px:    1.5rem;       /* Padding horizontal de secciones */
  --py:    5rem;         /* Padding vertical desktop */
  --py-sm: 3rem;         /* Padding vertical móvil */
}


/* ── 3. RESET Y BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* Elimina el flash azul al tocar en iOS */
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* overflow-x: clip no rompe position:sticky en iOS Safari,
     a diferencia de overflow-x: hidden en body */
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background-color: #09090b; /* bg-zinc-950 */
  color: #ffffff; /* text-white */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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


/* ── 4. TIPOGRAFÍA GLOBAL ────────────────────────────────── */
.gs-display {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; /* font-extrabold */
  line-height: 1.05;
  letter-spacing: -0.025em; /* tracking-tight */
}

.gs-h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 800; /* font-extrabold */
  line-height: 1.1;
  letter-spacing: -0.025em; /* tracking-tight */
}

.gs-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; /* font-extrabold */
  line-height: 1.15;
  letter-spacing: -0.025em; /* tracking-tight */
}

.gs-h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800; /* font-extrabold */
  line-height: 1.25;
  letter-spacing: -0.025em; /* tracking-tight */
}

/* Etiqueta de sección — el pequeño uppercase tracking */
.gs-label {
  font-size: 0.625rem;           /* 10px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em; /* tracking-[0.2em] */
  color: #71717a; /* text-zinc-500 */
}

.gs-label--light {
  color: #71717a;
}

/* Énfasis amarillo dentro de títulos */
.gs-accent {
  color: var(--girasol);
}


/* ── 5. BOTONES ───────────────────────────────────────────── */
.gs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px; /* rounded-full */
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease,
              background-color 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  hyphens: auto;
}

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

/* Primario — fondo amarillo, texto oscuro */
.gs-btn--primary {
  background-color: var(--girasol);
  color: var(--oscuro);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.gs-btn--primary:hover {
  background-color: var(--girasol-dark);
  box-shadow: 0 0 20px rgba(254, 215, 75, 0.3); /* Dribbble glow */
}

/* Secundario — borde oscuro, fondo transparente */
.gs-btn--secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
  padding: 0.875rem 1.875rem;
  font-size: 1rem;
}

.gs-btn--secondary:hover {
  background-color: var(--white);
  color: var(--oscuro);
}

/* Secundario sobre fondo oscuro — borde blanco */
.gs-btn--secondary-light {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
  padding: 0.875rem 1.875rem;
  font-size: 1rem;
}

.gs-btn--secondary-light:hover {
  background-color: var(--white);
  color: var(--oscuro);
  border-color: var(--white);
}

/* CTA de nav — oscuro compacto */
.gs-btn--nav {
  background-color: var(--oscuro);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.gs-btn--nav:hover {
  background-color: var(--oscuro-deep);
}

@media (min-width: 768px) {
  .gs-btn--nav {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
  }
}


/* ── 6. LAYOUT ────────────────────────────────────────────── */
.gs-container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

.gs-section {
  padding-top: var(--py-sm);
  padding-bottom: var(--py-sm);
}

@media (min-width: 768px) {
  .gs-section {
    padding-top: var(--py);
    padding-bottom: var(--py);
  }
}

/* Sección compacta — pasos, marcas, banners */
.gs-section--sm {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .gs-section--sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Sección grande — hero secondary, respaldo operativo */
.gs-section--lg {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .gs-section--lg {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}


/* ── 7. TARJETAS ──────────────────────────────────────────── */
.gs-card {
  background-color: #18181b; /* bg-zinc-900 */
  border-radius: 2.5rem; /* rounded-[2.5rem] */
  border: 1px solid rgba(255, 255, 255, 0.05); /* border-white/5 */
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12); /* enhanced shadow */
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gs-card:hover {
  box-shadow: var(--shadow-lg), 0 0 20px rgba(254, 215, 75, 0.1);
  transform: translateY(-6px);
}

/* Tarjeta sobre fondo oscuro (Ya es el por defecto, se mantiene por compatibilidad) */
.gs-card--dark {
  background-color: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2.5rem;
}

/* Chip / badge de categoría */
.gs-badge {
  display: inline-block;
  font-size: 0.5625rem;     /* 9px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
}

.gs-badge--primary {
  background-color: var(--girasol);
  color: var(--oscuro);
}

.gs-badge--dark {
  background-color: var(--oscuro);
  color: var(--white);
}


/* ── 8. NAVEGACIÓN ────────────────────────────────────────── */

/* Sticky positioning lives on the <header> wrapper now,
   so the announcement bar stays visible on scroll */
.gs-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
}

.gs-nav {
  background-color: rgba(9, 9, 11, 0.8); /* bg-zinc-950/80 */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.gs-nav--scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(9, 9, 11, 0.95);
}

.gs-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  height: 5rem;
}

@media (min-width: 768px) {
  .gs-nav__inner {
    height: 6rem;
  }
}

.gs-nav__links {
  display: none;
  gap: 2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 640px) {
  .gs-nav__links {
    display: flex;
  }
}

.gs-nav__link {
  position: relative;
  transition: color 0.2s ease;
}

.gs-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--girasol);
  transition: width 0.25s ease;
}

.gs-nav__link:hover::after,
.gs-nav__link--active::after {
  width: 100%;
}

.gs-nav__link--highlight {
  color: var(--girasol);
  font-weight: 900;
}

/* Hamburger — visible solo en móvil */
.gs-nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  /* Mínimo 44×44px — Apple HIG touch target */
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.375rem;
}

.gs-nav__hamburger span {
  display: block;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gs-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gs-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.gs-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 640px) {
  .gs-nav__hamburger {
    display: none;
  }
}

/* Overlay del menú móvil */
.gs-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background-color: var(--oscuro);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.gs-mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.gs-mobile-menu a {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.gs-mobile-menu a:hover {
  color: var(--girasol);
}


/* ── 9. ANIMACIONES ───────────────────────────────────────── */

/* Ken Burns — zoom lento en imágenes hero */
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.animate-ken-burns {
  animation: kenBurns 20s ease-out infinite alternate;
  /* GPU acceleration — animación más suave en Android mid-range */
  will-change: transform;
}

/* Marquee — desplazamiento infinito de logos */
@keyframes marquee {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.animate-marquee {
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.animate-marquee-reverse {
  animation: marquee-reverse 40s linear infinite;
  will-change: transform;
}

/* Pulso lento — uso genérico */
@keyframes pulseSlow {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.animate-pulse-slow {
  animation: pulseSlow 2.5s ease-in-out infinite;
}

/* Aura premium para el FAB de WhatsApp */
@keyframes fabAura {
  0%   { box-shadow: 0 16px 48px rgba(0,0,0,0.20), 0 0 0 0   rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 16px 48px rgba(0,0,0,0.20), 0 0 0 16px rgba(37, 211, 102, 0);   }
  100% { box-shadow: 0 16px 48px rgba(0,0,0,0.20), 0 0 0 0   rgba(37, 211, 102, 0);   }
}

.animate-fab-aura {
  animation: fabAura 2.8s ease-out infinite;
}

/* Ping para el punto de status */
@keyframes pingAura {
  0%    { transform: scale(0.85); opacity: 0.7; }
  100%  { transform: scale(2.8);  opacity: 0;   }
}

/* Respeta la preferencia del usuario de reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .animate-ken-burns,
  .animate-marquee,
  .animate-marquee-reverse,
  .animate-pulse-slow,
  .animate-fab-aura {
    animation: none;
  }
  .reveal,
  .reveal--left,
  .reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gs-pulse-dot::after {
    animation: none;
  }
}

/* Reveal on scroll — base */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variante: desde la izquierda */
.reveal--left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease-out, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Variante: escala sutil (para tarjetas destacadas) */
.reveal--scale {
  opacity: 0;
  transform: scale(0.96) translateY(16px);
  transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal--scale.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger — retraso en hijos consecutivos (hasta 8 elementos) */
.reveal-stagger > *:nth-child(1) { transition-delay:   0ms; }
.reveal-stagger > *:nth-child(2) { transition-delay:  80ms; }
.reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger > *:nth-child(8) { transition-delay: 560ms; }

/* Stagger fino — para grids de chips/zona (10+ items) */
.reveal-stagger--sm > *:nth-child(1)  { transition-delay:   0ms; }
.reveal-stagger--sm > *:nth-child(2)  { transition-delay:  40ms; }
.reveal-stagger--sm > *:nth-child(3)  { transition-delay:  80ms; }
.reveal-stagger--sm > *:nth-child(4)  { transition-delay: 120ms; }
.reveal-stagger--sm > *:nth-child(5)  { transition-delay: 160ms; }
.reveal-stagger--sm > *:nth-child(6)  { transition-delay: 200ms; }
.reveal-stagger--sm > *:nth-child(7)  { transition-delay: 240ms; }
.reveal-stagger--sm > *:nth-child(8)  { transition-delay: 280ms; }
.reveal-stagger--sm > *:nth-child(9)  { transition-delay: 320ms; }
.reveal-stagger--sm > *:nth-child(10) { transition-delay: 360ms; }
.reveal-stagger--sm > *:nth-child(11) { transition-delay: 400ms; }


/* ── 10. COMPONENTES ESPECÍFICOS ─────────────────────────── */

/* Logo item en marquee */
.logo-item {
  flex: 0 0 auto;
  width: 100px;
  height: 52px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

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

@media (min-width: 768px) {
  .logo-item {
    width: 150px;
    height: 70px;
  }
}

/* Punto de status con aura ping */
.gs-pulse-dot {
  position: relative;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--girasol);
  flex-shrink: 0;
}

.gs-pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--girasol);
  animation: pingAura 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Divisor de sección con acento amarillo */
.gs-divider {
  width: 3rem;
  height: 3px;
  background-color: var(--girasol);
  border-radius: 2px;
  margin: 1rem auto 0;
}

.gs-divider--left {
  margin-left: 0;
}

/* Stat counter — número grande en la barra de métricas */
.gs-stat-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--girasol);
  line-height: 1;
}

/* WhatsApp FAB flotante */
.gs-fab {
  position: fixed;
  bottom: max(1.5rem, calc(env(safe-area-inset-bottom) + 0.75rem));
  right: max(1.5rem, env(safe-area-inset-right));
  z-index: 60;
  background-color: #25D366;
  color: var(--white);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gs-fab:hover {
  transform: scale(1.12);
}

@media (min-width: 768px) {
  .gs-fab {
    bottom: max(2.5rem, calc(env(safe-area-inset-bottom) + 1rem));
    right: max(2.5rem, env(safe-area-inset-right));
    padding: 1.25rem;
  }
}


/* ── 11. UTILIDADES ───────────────────────────────────────── */

.text-girasol  { color: var(--girasol); }
.text-oscuro   { color: var(--oscuro); }
.bg-girasol    { background-color: var(--girasol); }
.bg-oscuro     { background-color: var(--oscuro); }
.bg-cream      { background-color: var(--cream); }

/* Gradient sutil de amarillo a cream — para fondos de sección */
.bg-girasol-fade {
  background: linear-gradient(180deg, var(--girasol-pale) 0%, var(--cream) 100%);
}

/* Separador visual entre secciones */
.border-accent-top    { border-top: 3px solid var(--girasol); }
.border-accent-bottom { border-bottom: 3px solid var(--girasol); }


/* ── 12. PORTAFOLIO — ACORDEÓN ────────────────────────────── */

.gs-cat-card {
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.gs-cat-card:has(.gs-cat-body.is-open) {
  box-shadow: var(--shadow-md);
}

.gs-cat-header {
  display: block;
  width: 100%;
  position: relative;
  height: 11rem;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.gs-cat-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gs-cat-header:hover img,
.gs-cat-header:focus-visible img {
  transform: scale(1.05);
}

.gs-cat-header:focus-visible {
  outline: 3px solid var(--girasol);
  outline-offset: -3px;
}

/* Panel de subcategorías */
.gs-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Chip de subcategoría */
.gs-sub-chip {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #E5E7EB;
  color: #6B7280;
  background: #F9FAFB;
  white-space: nowrap;
}

/* Link de cotización dentro del panel */
.gs-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--girasol-dark);
  margin-top: 1.25rem;
  transition: gap 0.2s ease;
}

.gs-cat-cta:hover {
  gap: 0.625rem;
}

/* ── LÍNEA FUDY — Premium Treatment ── */

/* Card wrapper override */
.gs-cat-card--fudy {
  border: 2px solid var(--girasol) !important;
  box-shadow: 0 0 0 1px rgba(254, 215, 75, 0.2), var(--shadow-md);
}

/* Ribbon stamp positioned on the image */
.gs-fudy-ribbon {
  position: absolute;
  top: 1rem;
  right: -0.75rem;
  background: var(--girasol);
  color: var(--oscuro);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 2px;
  transform: rotate(-15deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  z-index: 10;
  white-space: nowrap;
}

/* Fudy accordion open body */
.gs-cat-body--fudy.is-open {
  background: var(--girasol-pale);
}

/* Fudy subcategory chips */
.gs-badge--fudy {
  background: rgba(254, 215, 75, 0.15);
  border: 1px solid var(--girasol);
  color: var(--oscuro);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  display: inline-block;
}

/* ── ZONAS DE COBERTURA ── */
.gs-zones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gs-zone-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.125rem;
  background: var(--oscuro);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 999px;
  border: 1.5px solid var(--oscuro);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}
.gs-zone-chip:hover {
  background: var(--girasol);
  color: var(--oscuro);
  border-color: var(--girasol);
}
.gs-zone-chip--cta {
  background: transparent;
  color: var(--oscuro);
  border-color: var(--girasol);
  cursor: pointer;
}
.gs-zone-chip--cta:hover {
  background: var(--girasol);
  color: var(--oscuro);
  border-color: var(--girasol);
}

/* ── COTIZADOR B2B PANEL ── */
  #gs-cotizador-panel {
    position: fixed;
    bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    right: 1.5rem;
    width: 300px;
    background: #fff;
    border-radius: var(--r-2xl);
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--girasol);
    z-index: 48;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  /* Full-width bottom sheet on mobile */
  @media (max-width: 639px) {
    #gs-cotizador-panel {
      width: 100%;
      right: 0;
      bottom: 0;
      border-radius: var(--r-2xl) var(--r-2xl) 0 0;
      border-top: 3px solid var(--girasol);
    }
  }
  .gs-cotizador-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem 0.75rem;
    border-bottom: 1px solid #F3F4F6;
  }
  .gs-cotizador-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--oscuro);
  }
  .gs-cotizador-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    background: var(--girasol);
    color: var(--oscuro);
    font-size: 9px;
    font-weight: 900;
    border-radius: 999px;
    padding: 0 0.25rem;
  }
  .gs-cotizador-close {
    font-size: 1.25rem;
    line-height: 1;
    color: #9CA3AF;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
  }
  .gs-cotizador-close:hover { color: var(--oscuro); }
  .gs-cotizador-lista {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    max-height: 160px;
    overflow-y: auto;
  }
  .gs-cotizador-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 1rem;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--oscuro);
  }
  .gs-cotizador-remove {
    background: none;
    border: none;
    color: #D1D5DB;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.25rem;
    transition: color 0.2s;
    line-height: 1;
  }
  .gs-cotizador-remove:hover { color: #EF4444; }
  .gs-cotizador-footer {
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid #F3F4F6;
  }
  /* Add-to-quotation button in accordion */
  .gs-add-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--oscuro);
    background: transparent;
    border: 1.5px solid var(--oscuro);
    border-radius: var(--r-xl);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .gs-add-btn:hover {
    background: var(--oscuro);
    color: #fff;
  }
  .gs-add-btn--active {
    background: var(--girasol);
    color: var(--oscuro);
    border-color: var(--girasol);
  }
  .gs-add-btn--active:hover {
    background: var(--girasol-dark);
    border-color: var(--girasol-dark);
  }

/* ── FORMULARIO DE COTIZACIÓN B2B ── */
  .gs-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .gs-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }
  .gs-form-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--oscuro);
    opacity: 0.6;
  }
  .gs-input {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--oscuro);
    background: #fff;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--r-md);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
  }
  .gs-input:focus {
    outline: none;
    border-color: var(--girasol);
    box-shadow: 0 0 0 3px rgba(254, 215, 75, 0.2);
  }
  .gs-input::placeholder {
    color: #9CA3AF;
  }
  /* Select arrow */
  select.gs-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23414042' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
  }
  .gs-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .gs-checkbox-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    /* Apple HIG: minimum 44×44px touch target */
    min-height: 2.75rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    user-select: none;
  }
  .gs-checkbox-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
  }
  .gs-checkbox-chip:has(input:checked) {
    background: var(--girasol);
    border-color: var(--girasol);
    color: var(--oscuro);
  }
  .gs-checkbox-chip:hover {
    border-color: var(--girasol);
    color: var(--oscuro);
  }
  .gs-form-error {
    font-size: 11px;
    font-weight: 700;
    color: #EF4444;
    margin-top: 0.375rem;
    text-align: center;
  }
  .gs-form-success-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--girasol-pale);
    border-radius: var(--r-2xl);
    border: 1.5px solid var(--girasol);
  }
  .gs-form-success-block svg {
    color: var(--girasol-dark);
  }

  /* Inline validation states */
  .gs-input--valid {
    border-color: #10B981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12) !important;
  }

  .gs-input--invalid {
    border-color: #EF4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
  }

  /* Trust signal cerca del botón de envío */
  .gs-trust-note {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9CA3AF;
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.6;
  }

  .gs-trust-note strong {
    color: var(--girasol-dark);
    font-weight: 900;
  }


/* ── 13. ANNOUNCEMENT BAR ─────────────────────────────────── */

.gs-announcement-bar {
  height: 40px;
  background: var(--oscuro-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gs-announcement-bar__text {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
  transition: opacity 0.3s ease;
}

.gs-announcement-bar__status {
  font-size: 8px;
  opacity: 0.6;
  margin-left: 12px;
}


/* ── 14. LEAD MAGNET COMPONENT ────────────────────────────── */

.gs-lead-magnet {
  background: var(--oscuro);
  border-radius: var(--r-2xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--girasol);
}

.gs-lead-magnet__body {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.gs-lead-magnet__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(254, 215, 75, 0.12);
  border: 1.5px solid rgba(254, 215, 75, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-lead-magnet__content {
  flex: 1;
}

.gs-lead-magnet__kicker {
  font-size: 0.5625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--girasol);
  margin-bottom: 0.5rem;
}

.gs-lead-magnet__title {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.gs-lead-magnet__desc {
  font-size: 0.9375rem;
  color: var(--txt-muted-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}


/* ── 15. PORTAFOLIO — mejoras de acordeón ─────────────────── */

.gs-cat-card {
  transition: box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gs-cat-card:hover {
  transform: translateY(-3px);
}

/* El ícono del acordeón con transición suavizada */
.gs-cat-header svg {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
