/* =========================================================
   Multiservicios R&L — Sitio Web Producción
   styles.css — Replica exacta del borrador-web
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-page); overflow-x: hidden; }
body { min-width: 360px; }
button:active { transform: scale(0.97) !important; transition: transform 80ms ease-out !important; }
a:hover { text-decoration: none; }

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


/* ---------- Design Tokens ---------- */
:root {
  --brand-blue-50:  #EEF3FF;
  --brand-blue-100: #DCE6FF;
  --brand-blue-200: #B6C7FE;
  --brand-blue-300: #889FFB;
  --brand-blue-400: #5B79F4;
  --brand-blue-500: #3A5BE8;
  --brand-blue-600: #1E40CF;
  --brand-blue-700: #142FA0;
  --brand-blue-800: #0E2378;
  --brand-blue-900: #0B1B58;
  --brand-blue-950: #060F36;

  --brand-yellow-50:  #FFFBEB;
  --brand-yellow-100: #FEF3C7;
  --brand-yellow-200: #FDE68A;
  --brand-yellow-300: #FCD34D;
  --brand-yellow-400: #FBBF24;
  --brand-yellow-500: #F5B400;
  --brand-yellow-600: #D89500;
  --brand-yellow-700: #A87000;
  --brand-yellow-800: #7A5100;

  --neutral-0:    #FFFFFF;
  --neutral-50:   #F8F9FA;
  --neutral-100:  #F1F3F5;
  --neutral-150:  #E9ECEF;
  --neutral-200:  #DEE2E6;
  --neutral-300:  #CED4DA;
  --neutral-400:  #ADB5BD;
  --neutral-500:  #868E96;
  --neutral-600:  #6C757D;
  --neutral-700:  #495057;
  --neutral-800:  #343A40;
  --neutral-900:  #1A1D21;
  --neutral-950:  #0B0D10;

  --bg-page:        var(--neutral-50);
  --bg-surface:     var(--neutral-0);
  --bg-subtle:      var(--brand-blue-50);
  --fg-primary:     var(--neutral-900);
  --fg-secondary:   var(--neutral-700);
  --fg-muted:       var(--neutral-500);
  --fg-link:        var(--brand-blue-700);
  --border-subtle:  var(--neutral-200);
  --border-strong:  var(--neutral-300);

  --color-success: #16A34A;
  --color-warning: #F59E0B;
  --color-danger:  #DC2626;

  --header-scrolled-bg:     rgba(248, 249, 250, 0.85);
  --header-scrolled-border: rgba(11, 27, 88, 0.06);

  --glass-white-strong: rgba(255,255,255,0.78);
  --glass-white-soft:   rgba(255,255,255,0.55);
  --glass-white-faint:  rgba(255,255,255,0.30);
  --glass-border:       rgba(255,255,255,0.55);
  --glass-border-dark:  rgba(255,255,255,0.12);
  --glass-blur:         22px;

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-2xl: 36px;
  --radius-3xl: 48px;
  --radius-pill: 999px;

  --shadow-xs:
      0 1px 1px rgba(11, 27, 88, 0.04),
      0 1px 2px rgba(11, 27, 88, 0.06);
  --shadow-sm:
      0 1px 2px rgba(11, 27, 88, 0.05),
      0 2px 6px rgba(11, 27, 88, 0.06);
  --shadow-md:
      0 4px 10px -2px rgba(11, 27, 88, 0.06),
      0 10px 24px -6px rgba(11, 27, 88, 0.08);
  --shadow-lg:
      0 8px 20px -6px rgba(11, 27, 88, 0.08),
      0 24px 48px -12px rgba(11, 27, 88, 0.12);
  --shadow-xl:
      0 12px 28px -8px rgba(11, 27, 88, 0.10),
      0 40px 80px -20px rgba(11, 27, 88, 0.18);
  --shadow-yellow-glow:
      0 8px 24px -6px rgba(245, 180, 0, 0.45),
      0 2px 4px rgba(168, 112, 0, 0.18);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- View Transition & Dark Mode Tokens --- */
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
::view-transition-old(root) {
  animation: none;
}

html.dark {
  /* Fondos oscuros premium del nuevo Design System (Deep Navy) */
  --bg-page:        #060F36; /* Azul ultramar profundo */
  --bg-surface:     #0B1B58; /* Azul corporativo profundo (tarjetas) */
  --bg-elevated:    #112269; /* Superficies elevadas */
  --bg-subtle:      #0D1C59; /* Bloques secundarios */
  --bg-inverse:     var(--neutral-50);
  
  /* Textos */
  --fg-primary:     var(--neutral-0);      /* Blanco puro */
  --fg-secondary:   var(--neutral-200);    /* Gris claro */
  --fg-muted:       #9EABCE;               /* Gris-azul de alto contraste */
  --fg-on-blue:     var(--neutral-0);
  --fg-on-yellow:   var(--brand-blue-900);
  --fg-link:        var(--brand-blue-300); /* Enlace azul brillante */

  --color-primary:        var(--brand-blue-400);
  --color-primary-hover:  var(--brand-blue-300);

  /* Bordes */
  --border-subtle:  rgba(255, 255, 255, 0.08);
  --border-strong:  rgba(255, 255, 255, 0.16);

  /* Sombras y rejilla adaptadas */
  --grid-line:      rgba(255, 255, 255, 0.04);
  --shadow-color:   rgba(0, 0, 0, 0.40);

  /* Liquid Glass en Modo Oscuro */
  --header-scrolled-bg:     rgba(6, 15, 54, 0.75);
  --header-scrolled-border: rgba(255, 255, 255, 0.08);

  --glass-white-strong: rgba(11, 27, 88, 0.75);
  --glass-white-soft:   rgba(11, 27, 88, 0.50);
  --glass-white-faint:  rgba(11, 27, 88, 0.28);
  --glass-border:       rgba(255, 255, 255, 0.10);

  /* Sombras oscuras profundas con halo azulado difuso */
  --shadow-xs:
      0 1px 1px rgba(0, 0, 0, 0.2),
      0 1px 2px rgba(11, 27, 88, 0.15);
  --shadow-sm:
      0 1px 2px rgba(0, 0, 0, 0.25),
      0 2px 6px rgba(11, 27, 88, 0.2);
  --shadow-md:
      0 4px 10px -2px rgba(0, 0, 0, 0.3),
      0 10px 24px -6px rgba(11, 27, 88, 0.25);
  --shadow-lg:
      0 8px 20px -6px rgba(0, 0, 0, 0.35),
      0 24px 48px -12px rgba(11, 27, 88, 0.3);
  --shadow-xl:
      0 12px 28px -8px rgba(0, 0, 0, 0.4),
      0 40px 80px -20px rgba(11, 27, 88, 0.45);
}


html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg-primary);
  background: var(--bg-page);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  color: var(--fg-primary);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: var(--fz-h1, 56px); letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: var(--fz-h2, 40px); }
h3 { font-size: var(--fz-h3, 28px); }
h4 { font-size: 22px; font-weight: 600; letter-spacing: 0; }

p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-secondary);
  text-wrap: pretty;
}

small { font-size: 14px; color: var(--fg-muted); }
code, kbd, pre { font-family: var(--font-mono); }

a { color: var(--fg-link); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-link);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.icon { flex-shrink: 0; }
.icon-sm { flex-shrink: 0; }

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23495057' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px !important;
}

/* ========== HEADER ========== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 12px 0;
  transition: padding 300ms var(--ease-out), background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  background: transparent;
}

#site-header.scrolled {
  padding: 8px 0;
  background: var(--header-scrolled-bg);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: 0 1px 0 var(--header-scrolled-border);
}

/* Header on hero (dark background, before scroll) */
#site-header.on-hero .nav-link { color: rgba(255,255,255,0.75); }
#site-header.on-hero .nav-link:hover { color: white; }
#site-header.on-hero .nav-link.active { color: white; }
#site-header.on-hero .header-call { color: rgba(255,255,255,0.75); }
#site-header.on-hero .header-call:hover { color: white; }
#site-header.on-hero .mobile-menu-btn { color: white; }
#site-header.on-hero .logo-light { display: none; }
#site-header.on-hero .logo-dark { display: block; }






.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.logo-dark {
  display: none;
}
html.dark .logo-light {
  display: none;
}
html.dark .logo-dark {
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: color 150ms;
}

.nav-link:hover { color: var(--fg-primary); text-decoration: none; }
.nav-link.active { color: var(--fg-primary); font-weight: 600; }

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-secondary);
  text-decoration: none;
}

.header-call:hover { color: var(--fg-primary); text-decoration: none; }

.btn-cta-header {
  background: var(--brand-yellow-500);
  color: var(--brand-blue-900);
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px -6px rgba(245,180,0,0.55), 0 1px 2px rgba(168,112,0,0.18);
  transition: all 300ms var(--ease-out);
}

.btn-cta-header:hover {
  background: var(--brand-yellow-400);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px -6px rgba(245, 180, 0, 0.65);
  text-decoration: none;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brand-blue-900);
  padding: 8px;
  z-index: 60;
}
html.dark .mobile-menu-btn {
  color: var(--neutral-50);
}
@media (max-width: 880px) {
  .mobile-menu-btn {
    display: block !important;
  }
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--glass-white-strong);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border-left: 1px solid var(--glass-border);
  z-index: 55;
  padding: 96px 24px 24px;
  transition: right 0.3s var(--ease-out);
  box-shadow: var(--shadow-xl);
}
.mobile-nav-drawer.open {
  right: 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-primary);
  text-decoration: none;
  transition: color 150ms;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--brand-blue-600);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms, background 220ms;
}

.btn:active { transform: scale(0.97) !important; transition: transform 80ms ease-out !important; }

.btn-primary {
  padding: 14px 26px;
  background: var(--brand-yellow-500);
  color: var(--brand-blue-900);
  font-size: 15px;
  border-radius: 999px;
  box-shadow: var(--shadow-yellow-glow);
  transition: all 300ms var(--ease-out);
}

.btn-primary:hover {
  background: var(--brand-yellow-400);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px -6px rgba(245, 180, 0, 0.6);
  text-decoration: none;
}

.btn-outline {
  padding: 13px 24px;
  background: var(--bg-surface);
  color: var(--fg-primary);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  transition: all 300ms var(--ease-out);
}

.btn-outline:hover {
  border-color: var(--brand-blue-500);
  color: var(--brand-blue-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  box-shadow: 0 8px 24px -6px rgba(245,180,0,0.50), 0 2px 4px rgba(168,112,0,0.18);
}

/* ========== HERO ========== */
main {
  padding-top: 0; /* Hero is full viewport, no offset needed */
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Overlay gradiente corporativo */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(6, 15, 54, 0.88) 0%,
      rgba(11, 27, 88, 0.72) 35%,
      rgba(11, 27, 88, 0.60) 55%,
      rgba(6, 15, 54, 0.82) 100%
    );
}

/* Glow amarillo sutil */
.hero-glow {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,180,0,0.12), transparent 55%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 2;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 32px 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--brand-yellow-500);
  box-shadow: 0 0 0 4px rgba(245,180,0,0.25);
}

.hero-title {
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 22px 0 20px;
  color: white;
}

.hero-accent {
  background: linear-gradient(120deg, #FCD34D 0%, #F5B400 50%, #D89500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  font-weight: 400;
  margin: 0;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Hero outline button (light text on dark bg) */
.btn-outline-hero {
  padding: 13px 24px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  transition: all 300ms var(--ease-out);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Hero right - floating glass cards */
.hero-right {
  position: relative;
  z-index: 2;
  height: 460px;
}

.visual-card {
  position: absolute;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 22px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
  animation: float-card 6s ease-in-out infinite;
}
.visual-card:hover {
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.vc-1 { top: 20px; right: 40px; animation-delay: 0s; }
.vc-2 { top: 130px; left: 0; animation-delay: -1.5s; }
.vc-3 { top: 250px; right: 24px; animation-delay: -3s; }
.vc-4 { top: 360px; left: 40px; animation-delay: -4.5s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.icon-block {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  color: var(--brand-yellow-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.icon-block-yellow {
  background: rgba(245,180,0,0.15);
  color: var(--brand-yellow-300);
  border-color: rgba(245,180,0,0.2);
}

.vc-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.vc-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Hero chips */
.hero-chips {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  transition: all 300ms var(--ease-out);
}
.chip:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(245,180,0,0.12);
  color: var(--brand-yellow-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(245,180,0,0.15);
}

.chip-kpi {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  line-height: 1;
}

.chip-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ========== SERVICIOS ========== */
.services {
  padding: 120px 0 64px;
  position: relative;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.services-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--fg-primary);
  margin: 12px 0 0;
  max-width: 720px;
}

.services-sub {
  font-size: 17px;
  color: var(--fg-secondary);
  max-width: 460px;
  margin: 0;
  line-height: 1.55;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-secondary);
  cursor: pointer;
  font-family: inherit;
  transition: all 220ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(11,27,88,0.04);
}

.tab:hover {
  border-color: var(--fg-primary);
  color: var(--fg-primary);
}

.tab.active {
  background: var(--brand-blue-900);
  border-color: var(--brand-blue-900);
  color: white;
  box-shadow: 0 4px 12px -4px rgba(11,27,88,0.30);
}

html.dark .tab.active {
  background: var(--brand-blue-500);
  border-color: var(--brand-blue-500);
}

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

.card {
  background: var(--bg-surface);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 400ms var(--ease-out);
  will-change: transform, box-shadow;
}

.card:hover, .fade-in-up-scroll.visible.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-blue-300);
}

.card.hidden {
  display: none;
}

.card .icon-block {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--bg-subtle);
  color: var(--fg-link);
  border: none;
}


.card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--fg-primary);
  line-height: 1.25;
}

.card p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.55;
  flex-grow: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-link);
  text-decoration: none;
}

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

/* ========== PROCESO ========== */
.process {
  padding: 64px 0 96px;
}

.process-head {
  text-align: center;
  margin-bottom: 48px;
}

.process-head h2 {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--fg-primary);
  margin: 12px auto 14px;
  max-width: 720px;
}

.process-head p {
  font-size: 17px;
  color: var(--fg-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

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

.step-card {
  background: var(--bg-surface);
  border-radius: 28px;
  padding: 32px 26px 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 400ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.step-card:hover, .fade-in-up-scroll.visible.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-300);
}

.step-card.step-highlight::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, rgba(245,180,0,0.18), transparent 70%);
  pointer-events: none;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-link);
  background: var(--bg-subtle);
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
  letter-spacing: 0;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--fg-primary);
  line-height: 1.3;
}

.step-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.55;
}

/* ========== CONTACTO ========== */
.contact {
  padding: 64px 0 120px;
}

.contact-shell {
  background: var(--bg-surface);
  border-radius: 36px;
  padding: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 8px 20px -6px rgba(11,27,88,0.08),
    0 32px 64px -16px rgba(11,27,88,0.14);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.contact-left {
  background: linear-gradient(140deg, #142FA0 0%, #0B1B58 70%);
  border-radius: 28px;
  padding: 40px 36px;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-glow {
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245,180,0,0.3), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.contact-eyebrow {
  color: var(--brand-yellow-300);
  position: relative;
  z-index: 1;
}

.contact-left h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: white;
  margin: 12px 0 16px;
  position: relative;
  z-index: 1;
}

.contact-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.contact-info {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding-top: 32px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
}

.contact-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-yellow-300);
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

.contact-right {
  padding: 36px 40px;
}

#quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-secondary);
  transition: color 150ms var(--ease-out);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 13px 16px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-page);
  color: var(--fg-primary);
  outline: none;
  transition: all 150ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  box-sizing: border-box;
}

.form-group textarea {
  height: 96px;
  padding-top: 12px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-blue-500);
  box-shadow: 0 0 0 3px rgba(58,91,232,0.18);
}

/* Validación interactiva moderna con :user-valid / :user-invalid.
   Se activa únicamente cuando el usuario interactuó con el campo y quitó el foco (blurred). */
.form-group input:user-valid,
.form-group select:user-valid,
.form-group textarea:user-valid {
  border-color: var(--color-success);
}

.form-group input:user-invalid,
.form-group select:user-invalid,
.form-group textarea:user-invalid {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.14);
}

/* Fallbacks tradicionales para cuando JS agrega la clase .error (ej. al enviar formulario sin tocar campos) */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.14);
}

/* Iluminar labels de forma inteligente según el estado del campo usando :has() */
.form-group:has(input:focus, select:focus, textarea:focus) label {
  color: var(--brand-blue-500);
}

.form-group:has(input:user-invalid, select:user-invalid, textarea:user-invalid) label {
  color: var(--color-danger);
}

.form-group:has(input:user-valid, select:user-valid, textarea:user-valid) label {
  color: var(--color-success);
}

.form-group:has(input.error, select.error, textarea.error) label {
  color: var(--color-danger);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--brand-blue-900);
  color: white;
  padding: 64px 0 28px;
  margin-top: 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 360px;
}

.footer-logo {
  height: 100px;
  width: auto;
  align-self: flex-start;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245,180,0,0.14);
  border: 1px solid rgba(245,180,0,0.30);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-yellow-300);
  align-self: flex-start;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-col-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-yellow-300);
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 150ms;
}

.footer-links a:hover { color: white; text-decoration: none; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 12px;
}

.footer-muted {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 48px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 880px) {
  .ms-nav-links, .ms-nav-call { display: none !important; }
}

@media (max-width: 980px) {
  .ms-hero-inner { grid-template-columns: 1fr !important; }
  .ms-hero-right { display: none !important; }
  .ms-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .ms-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .ms-form-shell { grid-template-columns: 1fr !important; }
  #quote-form { grid-template-columns: 1fr !important; }
  .ms-foot-top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
}

@media (max-width: 640px) {
  .ms-grid-3 { grid-template-columns: 1fr !important; }
  .ms-grid-4 { grid-template-columns: 1fr !important; }
  .ms-hero-chips { grid-template-columns: 1fr 1fr !important; }
  .ms-foot-top { grid-template-columns: 1fr !important; }
  .form-group.form-row { grid-template-columns: 1fr !important; }
  .contact-left { padding: 32px 20px !important; }
  .contact-right { padding: 32px 20px !important; }
}

/* ========== IMPROVEMENTS (WhatsApp & Form Success) ========== */

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366; /* Color oficial de WhatsApp */
  color: white;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 4px rgba(0, 0, 0, 0.08);
  z-index: 45;
  transition: transform 220ms var(--ease-out), box-shadow 220ms;
}
.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55), 0 4px 8px rgba(0, 0, 0, 0.12);
}
.whatsapp-float:active {
  transform: scale(0.97);
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
}

/* Form Success Status */
.form-status-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.3s var(--ease-out);
}
.status-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(22, 163, 74, 0.1);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.form-status-card h3 {
  margin-bottom: 12px;
  color: var(--fg-primary);
}
.form-status-card p {
  color: var(--fg-secondary);
  max-width: 320px;
  font-size: 14px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Theme Toggle Button */
.theme-toggle-btn {
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--neutral-700);
  transition: all 220ms var(--ease-out);
}
.theme-toggle-btn:hover {
  color: var(--brand-blue-700);
  border-color: var(--brand-blue-300);
}
.theme-toggle-btn .sun-icon { display: none; }
.theme-toggle-btn .moon-icon { display: block; }

html.dark select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239EABCE' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m6 9 6 6 6-6'/%3e%3c/svg%3e");
}

html.dark .theme-toggle-btn .sun-icon { display: block; }
html.dark .theme-toggle-btn .moon-icon { display: none; }
html.dark .theme-toggle-btn {
  border-color: var(--border-strong);
  color: var(--fg-muted);
}
html.dark .theme-toggle-btn:hover {
  color: var(--fg-primary);
  border-color: var(--fg-link);
}

/* Accessibility improvements */
a:focus-visible, button:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--brand-blue-500);
  outline-offset: 2px;
}

/* Scroll Entrance Animations */
.fade-in-up-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.fade-in-up-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Rendering optimizations for below-the-fold sections */
.services, .process, .contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* =========================================================
   GALERÍA DE TRABAJOS (PÁGINA 2) — ESTILOS COMPLEMENTARIOS
   ========================================================= */

.gallery-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #060F36 0%, #0B1B58 100%);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(245, 180, 0, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.gallery-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.gallery-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-main-title {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  margin: 12px 0 16px;
}

.gallery-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 680px;
  margin: 0;
}

.gallery-section {
  padding: 64px 0 96px;
  background: var(--bg-page);
}

/* Filtros */
.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface);
  color: var(--fg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: all 250ms var(--ease-out);
}

.filter-btn:hover {
  border-color: var(--brand-blue-300);
  color: var(--brand-blue-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active {
  background: var(--brand-blue-900);
  color: white;
  border-color: var(--brand-blue-900);
  box-shadow: var(--shadow-md);
}

html.dark .filter-btn.active {
  background: var(--brand-yellow-500);
  color: var(--brand-blue-950);
  border-color: var(--brand-yellow-500);
}

/* Grid de Imágenes */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  animation: fadeIn 0.4s var(--ease-out);
}

.gallery-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--neutral-150);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

.gallery-card:hover .card-media img {
  transform: scale(1.06);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 27, 88, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 2;
}

.gallery-card:hover .card-overlay {
  opacity: 1;
}

.zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-pill);
  background: var(--brand-yellow-500);
  color: var(--brand-blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-yellow-glow);
  transform: scale(0.85);
  transition: transform 300ms var(--ease-out);
}

.gallery-card:hover .zoom-icon {
  transform: scale(1);
}

.card-info {
  padding: 20px 24px 24px;
}

.card-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-blue-500);
  display: inline-block;
  margin-bottom: 6px;
}

html.dark .card-cat {
  color: var(--brand-blue-300);
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

/* Visor Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 54, 0.65);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 105;
  transition: all 220ms ease;
}

.lightbox-close:hover {
  background: var(--color-danger);
  border-color: var(--color-danger);
}

.lightbox-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(15px);
  transition: transform 350ms var(--ease-out);
}

.lightbox.open .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lightbox-details h3 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.lightbox-details p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-secondary);
  margin-bottom: 24px;
}

.lightbox-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg-primary);
}

/* Responsivo para la Galería */
@media (max-width: 900px) {
  .lightbox-content {
    grid-template-columns: 1fr !important;
    max-height: 90vh;
    overflow-y: auto;
  }
  .lightbox-media {
    aspect-ratio: 16 / 9;
  }
  .lightbox-details {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 120px 0 48px;
  }
  .gallery-filters {
    gap: 8px;
    margin-bottom: 32px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .gallery-grid {
    gap: 20px;
    grid-template-columns: 1fr !important;
  }
}

