/* ========================================
   OMAP Correduría de Seguros — v5
   Taste-skill: VARIANCE=8, MOTION=6, DENSITY=4
   Font: Outfit (Inter banned per taste-skill)
   ======================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0b7285;
  --primary-dark: #095d6b;
  --primary-deeper: #074a55;
  --primary-light: #e0f4f4;
  --primary-soft: #eef7f7;
  --accent: #12b886;
  --accent-dark: #0ca678;
  --dark: #1a1d23;
  --gray-800: #2d3039;
  --gray-700: #3f424d;
  --gray-600: #555862;
  --gray-500: #74777f;
  --gray-400: #a3a6ac;
  --gray-300: #d4d5d9;
  --gray-200: #e8e6e3;
  --gray-100: #f2f0ed;
  --gray-50: #f8f7f5;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  /* Spacing scale (16px base) */
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
  /* Elevation scale — tinted neutral shadows, tight blur */
  --shadow-sm: 0 1px 2px rgba(17,24,39,.05);
  --shadow:    0 2px 6px rgba(17,24,39,.06), 0 1px 2px rgba(17,24,39,.04);
  --shadow-md: 0 4px 12px -2px rgba(17,24,39,.08), 0 2px 4px -2px rgba(17,24,39,.05);
  --shadow-lg: 0 8px 20px -4px rgba(17,24,39,.1), 0 3px 6px -3px rgba(17,24,39,.06);
  --shadow-xl: 0 16px 32px -12px rgba(17,24,39,.14), 0 4px 10px -4px rgba(17,24,39,.06);
  /* Tinted hover shadows — integrate with colored elements */
  --shadow-primary: 0 6px 18px -4px rgba(11,114,133,.28);
  --shadow-accent:  0 6px 18px -4px rgba(18,184,134,.35);
  /* Premium cubic-bezier — MOTION_INTENSITY=6 */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --transition: .3s var(--ease);
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
}

::selection { background: rgba(11,114,133,.15); color: var(--dark); }

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--gray-600);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
  overflow-x: hidden;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: var(--primary);
  transform-origin: left; transform: scaleX(0);
  will-change: transform; pointer-events: none;
  width: 100%;
}

h1,h2,h3,h4,h5 { color: var(--dark); }
h1 { font-weight: 800; letter-spacing: -.035em; line-height: 1.05; }
h2 { font-weight: 700; letter-spacing: -.025em; line-height: 1.15; }
h3 { font-weight: 700; letter-spacing: -.018em; line-height: 1.25; }
h4 { font-weight: 600; letter-spacing: -.01em;  line-height: 1.3; }
h5 { font-weight: 600; letter-spacing: -.005em; line-height: 1.35; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { opacity: 0; transition: opacity .5s var(--ease); }
img[loading="lazy"].loaded, img[loading="lazy"][complete] { opacity: 1; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 800px; }

/* ---- Buttons — tinted glow shadows ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: .88rem;
  border: 1.5px solid transparent; cursor: pointer; transition: all var(--transition);
  text-decoration: none; font-family: var(--font);
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.97) translateY(1px); transition-duration: .1s; }

.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; box-shadow: var(--shadow-primary); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); color: #fff; box-shadow: var(--shadow-accent); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--primary); border-color: var(--gray-300); }
.btn--white:hover { border-color: var(--primary); background: var(--primary-soft); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--primary); }
.btn--ghost:hover { background: var(--primary-soft); }
.btn--lg { padding: 15px 36px; font-size: .95rem; border-radius: 12px; }
.btn--sm { padding: 10px 22px; font-size: .88rem; }
.btn--full { width: 100%; }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 100%);
  padding: 7px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.8);
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #fff; font-weight: 500; transition: opacity var(--transition); }
.topbar a:hover { opacity: .75; color: #fff; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__item { display: flex; align-items: center; gap: 6px; }
.topbar__item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.6); }

/* =============================================
   NAVBAR — glass on scroll
   ============================================= */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,.6);
  padding: 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(11,114,133,.06); }
.navbar__inner {
  display: flex; align-items: center; height: 72px; gap: 8px;
}
.navbar__logo img { height: 46px; width: auto; }
.navbar__menu { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.navbar__link {
  padding: 8px 16px; border-radius: 8px; font-size: .95rem; font-weight: 500;
  color: var(--gray-600); transition: all var(--transition);
  position: relative;
}
.navbar__link:hover { color: var(--primary); background: var(--primary-soft); }
.navbar__link.active {
  color: var(--primary); background: var(--primary-soft);
  font-weight: 600;
}

/* Talleres — specialty link inside the menu, to the right of Contacto */
.navbar__link--talleres {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 6px;
  background: transparent;
  color: var(--accent-dark);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -.2px;
  transition: color var(--transition);
}
.navbar__link--talleres svg {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: var(--accent-dark);
  transform-origin: 50% 50%;
  animation: talleresWrenchWiggle 2.4s ease-in-out infinite;
  transition: stroke var(--transition);
}
@keyframes talleresWrenchWiggle {
  0%, 100% { transform: rotate(-10deg); }
  50%      { transform: rotate(10deg); }
}
.navbar__link.navbar__link--talleres:hover,
.navbar__link.navbar__link--talleres.active {
  color: var(--accent);
  background: transparent;
}
.navbar__link--talleres:hover svg,
.navbar__link--talleres.active svg { stroke: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .navbar__link--talleres svg { animation: none; }
}
.navbar__cta {
  margin-left: 0;
  position: relative;
  animation: navCtaGlow 5s ease-in-out infinite;
}
@keyframes navCtaGlow {
  0%, 84%, 100% {
    box-shadow:
      0 4px 14px -4px rgba(18,184,134,.4),
      0 0 0 0 rgba(18,184,134,0);
  }
  88% {
    box-shadow:
      0 4px 14px -4px rgba(18,184,134,.55),
      0 0 26px 6px rgba(18,184,134,.55);
  }
  94% {
    box-shadow:
      0 4px 14px -4px rgba(18,184,134,.45),
      0 0 18px 3px rgba(18,184,134,.25);
  }
}
.navbar__cta:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .navbar__cta { animation: none; }
}

.navbar__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto;
}
.navbar__toggle span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.navbar__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =============================================
   HOME HERO — split layout + glass panel (VARIANCE=8)
   ============================================= */
.hero {
  position: relative;
  min-height: 545px;
  height: 73vh;
  max-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  transform-origin: center center;
  animation: heroKenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.2%, -.8%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg { animation: none; transform: scale(1.02); }
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(6,20,28,.92) 0%, rgba(6,20,28,.78) 38%, rgba(6,20,28,.25) 70%, rgba(6,20,28,.05) 100%),
    linear-gradient(180deg, rgba(6,20,28,.1) 0%, rgba(6,20,28,.55) 100%);
}

/* Animated gradient overlay */
@keyframes hero-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero__gradient-anim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(6,20,28,.12) 0%,
    rgba(6,20,28,.06) 25%,
    transparent 50%,
    rgba(6,20,28,.05) 75%,
    rgba(6,20,28,.1) 100%
  );
  background-size: 300% 300%;
  animation: hero-gradient-shift 12s ease infinite;
  pointer-events: none;
}

/* Split layout */
.hero__split {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
}
.hero__content {
  position: relative;
}

/* Glass panel */
.hero__glass {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 20px 60px -20px rgba(0,0,0,.3);
  min-width: 200px;
}
.hero__glass-item {
  text-align: center; padding: 16px 8px;
}
.hero__glass-num {
  display: block; font-size: 1.8rem; font-weight: 800;
  color: #fff; letter-spacing: -.035em; line-height: 1;
  margin-bottom: 4px;
}
.hero__glass-label {
  font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,.55); text-transform: uppercase;
  letter-spacing: .06em;
}
.hero__glass-divider {
  height: 1px; background: rgba(255,255,255,.1);
  margin: 0 8px;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--primary); margin-bottom: 20px;
  opacity: .9;
}
.hero__tag::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--primary); border-radius: 1px;
}
.hero__title {
  font-size: clamp(2.5rem, 4.8vw, 3.8rem);
  font-weight: 800; color: #fff;
  margin-bottom: 20px; letter-spacing: -.04em; line-height: 1.02;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}
.hero__desc {
  font-size: 1.08rem; color: rgba(255,255,255,.8);
  margin-bottom: 36px; line-height: 1.8; max-width: 480px;
}
.hero__specialty {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: all .3s var(--ease);
}
.hero__specialty svg { stroke: rgba(255,255,255,.75); flex-shrink: 0; }
.hero__specialty:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn--accent { background: var(--accent); border-radius: 10px; }
.hero .btn--accent:hover { background: var(--accent-dark); box-shadow: 0 8px 22px -4px rgba(18,184,134,.4); }
.hero .btn--ghost-w { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.06); border-radius: 10px; backdrop-filter: blur(8px); }
.hero .btn--ghost-w:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.4); color: #fff; }


/* Hero badge — ASOTECAUTO inline */
.hero__badge {
  display: flex; align-items: center; gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero__badge-text {
  font-size: .78rem; font-weight: 400;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}
.hero__badge-link {
  display: inline-flex; align-items: center;
  transition: opacity .3s var(--ease);
}
.hero__badge-link:hover { opacity: .7; }
.hero__badge-logo {
  height: 46px; width: auto;
}
.hero__badge-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.25);
}


/* =============================================
   TRUST BAR — marquee logos + stats with icons
   ============================================= */
.trust {
  padding: 32px 0 36px;
  overflow: hidden;
}
.trust--products {
  padding: 64px 0;
}
.trust-static {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 20px;
  align-items: center;
}
.trust-static__item {
  display: flex; align-items: center; justify-content: center;
  height: 76px; padding: 12px 16px; border-radius: 10px;
  transition: all .35s var(--ease);
}
.trust-static__item:hover {
  background: var(--gray-50); transform: scale(1.06);
}
.trust-static__item .trust__logo {
  width: 100%; height: 100%; object-fit: contain;
}

/* ---- Marquee ---- */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust__marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.trust__marquee::before,
.trust__marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
  pointer-events: none;
}
.trust__marquee::before { left: 0; background: linear-gradient(90deg, var(--white) 0%, transparent 100%); }
.trust__marquee::after { right: 0; background: linear-gradient(270deg, var(--white) 0%, transparent 100%); }
.trust__track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.trust__track:hover { animation-play-state: paused; }
.trust__logo-wrap {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 220px;
  height: 68px;
  padding: 8px 24px;
  border-radius: 10px;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.trust__logo-wrap:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: scale(1.1);
}
.trust__logo {
  width: auto;
  height: 56px;
  max-width: 172px;
  object-fit: contain;
  opacity: .78;
  transition: opacity .4s var(--ease);
  display: block;
  margin: 0 auto;
}
.trust__logo[src*="asisa"]         { height: 36px; max-width: 150px; }
.trust__logo[src*="mapfre"]        { height: 58px; max-width: 190px; transform: translateY(-5px); }
.trust__logo-wrap:hover .trust__logo[src*="mapfre"] { transform: translateY(-5px) scale(1.08); }
.trust__logo[src*="seguropordias"] { height: 38px; max-width: 180px; }
.trust__logo[src*="generali"]      { height: 52px; max-width: 180px; transform: translateY(-3px); }
.trust__logo-wrap:hover .trust__logo[src*="generali"] { transform: translateY(-3px) scale(1.08); }
.trust__logo[src*="occident"]      { height: 50px; max-width: 170px; transform: translateY(-3px); }
.trust__logo-wrap:hover .trust__logo[src*="occident"] { transform: translateY(-3px) scale(1.08); }
.trust__logo[src*="reale"]         { height: 38px; max-width: 140px; transform: translateY(-3px); }
.trust__logo-wrap:hover .trust__logo[src*="reale"] { transform: translateY(-3px) scale(1.08); }
.trust__logo[src*="fiatc"]         { height: 38px; max-width: 130px; }
.trust__logo-wrap:hover .trust__logo { opacity: 1; transform: scale(1.08); }

/* ---- Stats with icons ---- */
.trust__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding-top: 96px;
}
.trust__stat {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all .35s var(--ease);
}
.trust__stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.trust__stat-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: all .35s var(--ease);
}
.trust__stat:hover .trust__stat-icon { background: var(--primary); transform: scale(1.08); }
.trust__stat-icon svg { width: 20px; height: 20px; stroke: var(--primary); transition: stroke var(--transition); }
.trust__stat:hover .trust__stat-icon svg { stroke: #fff; }
.trust__stat-num {
  display: block; font-size: 2.2rem; font-weight: 800;
  color: var(--primary); letter-spacing: -1.5px;
  margin-bottom: 4px;
}
.trust__stat-label { font-size: .82rem; color: var(--gray-500); font-weight: 500; }

/* =============================================
   TALLERES CALLOUT — home specialty banner
   ============================================= */
.talleres-callout {
  padding: 48px 0 0;
}
.talleres-callout__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  background: linear-gradient(160deg, #111827 0%, #1a2332 50%, #0f2027 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  position: relative; overflow: hidden;
  text-decoration: none;
  transition: all .4s var(--ease);
}
.talleres-callout__inner::before {
  content: ''; position: absolute;
  top: -50px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(11,114,133,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.talleres-callout__inner::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.talleres-callout__inner:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -16px rgba(17,24,39,.45); }
.talleres-callout__inner:hover::after { transform: scaleX(1); }

.talleres-callout__content { position: relative; z-index: 1; flex: 1; }
.talleres-callout__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary); margin-bottom: 10px;
}
.talleres-callout__tag::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--primary); border-radius: 1px;
}
.talleres-callout__title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800; color: #fff;
  margin-bottom: 10px; letter-spacing: -.025em;
}
.talleres-callout__desc {
  font-size: .88rem; color: rgba(255,255,255,.5);
  line-height: 1.7; max-width: 520px;
}
.talleres-callout__action { position: relative; z-index: 1; flex-shrink: 0; }
.talleres-callout__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; color: var(--primary);
  padding: 12px 28px; border-radius: 10px;
  border: 1.5px solid rgba(11,114,133,.35);
  background: rgba(11,114,133,.08);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.talleres-callout__link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.talleres-callout__inner:hover .talleres-callout__link {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}
.talleres-callout__inner:hover .talleres-callout__link svg { transform: translateX(3px); stroke: #fff; }

/* ---- Taller Banner (inside home-cards) ---- */
.taller-banner {
  display: flex; align-items: center; gap: 28px;
  text-decoration: none;
  background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary) 40%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  margin-bottom: 32px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px -8px rgba(7,74,85,.28);
}
.taller-banner::before {
  content: ''; position: absolute;
  top: -60px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.taller-banner::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,.5), rgba(255,255,255,.1));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.taller-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -12px rgba(7,74,85,.35);
}
.taller-banner:hover::after { transform: scaleX(1); }
.taller-banner__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.taller-banner__icon svg { width: 24px; height: 24px; stroke: #fff; }
.taller-banner__body { flex: 1; position: relative; z-index: 1; }
.taller-banner__label {
  display: block;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary); margin-bottom: 6px;
}
.taller-banner__title {
  font-size: 1.2rem; font-weight: 800;
  color: #fff; letter-spacing: -.025em;
  margin-bottom: 6px;
}
.taller-banner__desc {
  font-size: .84rem; color: rgba(255,255,255,.55);
  line-height: 1.6; margin: 0;
}
.taller-banner__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 600; color: #fff;
  white-space: nowrap; flex-shrink: 0;
  padding: 10px 24px; border-radius: 10px;
  background: var(--accent);
  border: 1px solid var(--accent);
  transition: all .3s var(--ease);
  position: relative; z-index: 1;
}
.taller-banner__cta svg { stroke: #fff; transition: transform .3s var(--ease); }
.taller-banner:hover .taller-banner__cta { box-shadow: var(--shadow-accent); }
.taller-banner:hover .taller-banner__cta svg { transform: translateX(4px); }

/* =============================================
   HOME CARDS — 1 featured + 2 below (no 3-col)
   ============================================= */
/* =============================================
   BENTO PRODUCTS
   ============================================= */
.bento-products {
  padding: 96px 0 64px;
  background: var(--gray-50);
}
.bento-products__header {
  margin-bottom: 52px; max-width: 520px;
}
.bento-products__label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); background: var(--primary-soft);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
}
.bento-products__header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); letter-spacing: -.035em;
  color: var(--dark); margin-bottom: 12px; line-height: 1.15;
}
.bento-products__header p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; }

.bento-products__chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.bento-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--primary-dark);
  background: var(--primary-soft); padding: 6px 14px; border-radius: 50px;
  letter-spacing: .01em;
}
.bento-chip svg { stroke: var(--primary); flex-shrink: 0; }

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

/* Base cell */
.bento-cell {
  display: flex; flex-direction: column;
  padding: 28px 26px 24px;
  background: var(--gray-50);
  border: none;
  border-radius: var(--radius-lg);
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: all .4s var(--ease);
}
.bento-cell:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Tinted backgrounds — intensified to match productos.html visual weight */
.bento-cell--tint-sky     { background: #e3effc; }
.bento-cell--tint-sky:hover     { background: #d4e4f9; }
.bento-cell--tint-amber   { background: #fdf3e1; }
.bento-cell--tint-amber:hover   { background: #fcecd0; }
.bento-cell--tint-rose    { background: #fbe8ec; }
.bento-cell--tint-rose:hover    { background: #f7dae1; }
.bento-cell--tint-emerald { background: #e0f7ea; }
.bento-cell--tint-emerald:hover { background: #cef0dc; }
.bento-cell--tint-teal    { background: #e0f5f5; }
.bento-cell--tint-teal:hover    { background: #cfecec; }
.bento-cell--tint-cyan    { background: #e0f5f7; }
.bento-cell--tint-cyan:hover    { background: #cfecf0; }
.bento-cell--tint-stone   { background: #efece7; }
.bento-cell--tint-stone:hover   { background: #e5e1da; }
.bento-cell--tint-violet  { background: #ece8f5; }
.bento-cell--tint-violet:hover  { background: #e0daef; }
.bento-cell--tint-slate   { background: #ebeae7; }
.bento-cell--tint-slate:hover   { background: #e0dfdb; }
.bento-cell--tint-orange  { background: #fdecdd; }
.bento-cell--tint-orange:hover  { background: #fce2cc; }
.bento-cell--tint-lime    { background: #ebf5d8; }
.bento-cell--tint-lime:hover    { background: #e0efc6; }
.bento-cell--tint-blue    { background: #e2ebfc; }
.bento-cell--tint-blue:hover    { background: #d3e0f9; }

/* Size variants */
.bento-cell--lg {
  padding: 32px 28px 28px;
  min-height: 220px;
}
.bento-cell--wide {
  grid-column: span 2;
}

/* Icon */
.bento-cell__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: all .35s var(--ease);
}
.bento-cell__icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary); transition: stroke .3s var(--ease);
}
.bento-cell:hover .bento-cell__icon {
  background: var(--primary); transform: scale(1.06);
}
.bento-cell:hover .bento-cell__icon svg { stroke: var(--white); }

/* Badge */
.bento-cell__badge {
  position: absolute; top: 16px; right: 16px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--primary); background: var(--primary-soft);
  padding: 4px 10px; border-radius: 50px;
}

/* Title */
.bento-cell__title {
  font-size: 1.1rem; font-weight: 700; color: var(--dark);
  margin-bottom: 6px; letter-spacing: -.01em;
}
.bento-cell--lg .bento-cell__title { font-size: 1.25rem; }

/* Description */
.bento-cell__desc {
  font-size: .88rem; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 0; flex: 1;
}
.bento-cell--lg .bento-cell__desc { font-size: .92rem; }

/* Arrow */
.bento-cell__arrow {
  position: absolute; bottom: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  opacity: 0; transform: translate(-4px, 4px);
}
.bento-cell__arrow svg {
  width: 16px; height: 16px; stroke: var(--primary);
}
.bento-cell:hover .bento-cell__arrow {
  opacity: 1; transform: translate(0, 0);
  background: var(--primary-soft);
}

/* Footer CTAs — banner style */
.bento-banner {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding: 32px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  gap: 24px;
}
.bento-banner__left { display: flex; align-items: center; gap: 24px; flex: 1; }
.bento-banner__text {
  color: rgba(255,255,255,.9); font-size: .92rem; line-height: 1.5;
  max-width: 340px; margin: 0;
}
.bento-banner .btn--white {
  flex-shrink: 0; border-color: rgba(255,255,255,.3);
  color: #fff; background: rgba(255,255,255,.1);
  backdrop-filter: blur(6px);
}
.bento-banner .btn--white:hover {
  background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5);
  color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.bento-banner__right { flex-shrink: 0; }

/* Legacy footer (unused, kept for compat) */
.bento-products__footer {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px; justify-content: center;
}

/* Stagger animation */
.bento-cell.fade-up {
  transition-delay: calc(var(--delay, 0) * .06s);
}

/* Legacy compat — keep unused old classes from breaking */

.hcard {
  display: block; text-decoration: none;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: all .35s var(--ease); position: relative; overflow: hidden;
  background: var(--white);
}
.hcard::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit;
  opacity: 0;
  box-shadow: inset 0 0 0 1.5px var(--primary);
  transition: opacity .35s var(--ease);
}
.hcard::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.hcard:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}
.hcard:hover::before { opacity: 1; }
.hcard:hover::after { transform: scaleX(1); }

.hcard__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all .35s var(--ease);
}
.hcard:hover .hcard__icon { background: var(--primary); transform: scale(1.08); }
.hcard__icon svg { width: 22px; height: 22px; stroke: var(--primary); transition: stroke var(--transition); }
.hcard:hover .hcard__icon svg { stroke: #fff; }

.hcard__title { font-size: 1.15rem; margin-bottom: 10px; color: var(--dark); }
.hcard__text { font-size: .92rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; }
/* Dark featured card */
.hcard--dark {
  background: linear-gradient(160deg, #111827 0%, #1a2332 50%, #0f2027 100%);
  border-color: rgba(255,255,255,.06);
}
.hcard--dark::before { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.1); }
.hcard--dark::after { background: var(--primary); }
.hcard--dark:hover { border-color: transparent; box-shadow: 0 18px 36px -16px rgba(17,24,39,.45); }
.hcard--dark .hcard__title { color: #fff; font-size: 1.3rem; }
.hcard--dark .hcard__text { color: rgba(255,255,255,.55); }
.hcard__icon--dark {
  background: rgba(11,114,133,.18); border: 1px solid rgba(11,114,133,.3);
}
.hcard--dark:hover .hcard__icon--dark { background: var(--primary); border-color: var(--primary); }
.hcard__icon--dark svg { stroke: #fff; }
.hcard--dark:hover .hcard__icon--dark svg { stroke: #fff; }
.hcard__badge--accent {
  background: var(--primary); color: #fff;
}
.hcard__checks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 22px;
}
.hcard__checks li {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.7);
}
.hcard__checks li svg { stroke: rgba(255,255,255,.75); flex-shrink: 0; }
.hcard__link--light { color: rgba(255,255,255,.85); }
.hcard--dark:hover .hcard__link--light { color: #fff; }
/* Tags inline */
.hcard__tags-inline {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.hcard__tags-inline span {
  font-size: .72rem; font-weight: 600; color: var(--primary);
  background: var(--primary-soft); padding: 4px 10px; border-radius: 50px;
  transition: all .25s var(--ease);
}
.hcard:hover .hcard__tags-inline span { background: var(--primary-light); }
/* Highlight box */
.hcard__highlight {
  display: flex; align-items: center; gap: 10px;
  background: var(--primary-soft);
  border: 1px solid rgba(11,114,133,.14);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: .82rem; color: var(--gray-700); line-height: 1.4;
}
.hcard__highlight svg { stroke: var(--primary); flex-shrink: 0; }
.hcard__highlight strong { color: var(--primary-dark); font-weight: 700; }
.hcard:hover .hcard__highlight {
  background: var(--primary-light);
  border-color: rgba(11,114,133,.25);
}
.hcard__link {
  font-size: .82rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.hcard__link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.hcard:hover .hcard__link { gap: 8px; }
.hcard:hover .hcard__link svg { transform: translateX(4px); }

/* =============================================
   WHY US — 3 pillars
   ============================================= */
.why-us {
  padding: 96px 0;
}
.why-us__header {
  margin-bottom: 48px; max-width: 520px;
}
.why-us__label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); background: var(--white);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.why-us__header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); letter-spacing: -.035em;
  color: var(--dark); margin-bottom: 12px; line-height: 1.15;
}
.why-us__header p { color: var(--gray-500); font-size: 1rem; line-height: 1.7; }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-us__pillar {
  text-align: left;
  padding: 32px 30px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all .35s var(--ease);
}
.why-us__pillar:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent;
}
/* First pillar: featured horizontal layout, full width */
.why-us__pillar:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 4px;
  align-items: center;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--white) 70%);
  border-color: rgba(11,114,133,.18);
}
.why-us__pillar:first-child .why-us__icon {
  grid-row: 1 / 3;
  align-self: center;
}
.why-us__pillar:first-child .why-us__title { align-self: end; }
.why-us__pillar:first-child .why-us__text  { align-self: start; }
.why-us__pillar:first-child .why-us__icon {
  margin: 0;
  width: 64px; height: 64px;
}
.why-us__pillar:first-child .why-us__icon svg { width: 28px; height: 28px; }
.why-us__pillar:first-child .why-us__title { font-size: 1.25rem; margin-bottom: 6px; }
.why-us__pillar:first-child .why-us__text { font-size: .95rem; max-width: 60ch; }

.why-us__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center;
  margin: 0 0 18px; transition: all .35s var(--ease);
}
.why-us__pillar:hover .why-us__icon {
  background: var(--primary); transform: scale(1.08);
}
.why-us__icon svg {
  width: 22px; height: 22px; stroke: var(--primary); transition: stroke var(--transition);
}
.why-us__pillar:hover .why-us__icon svg { stroke: #fff; }
.why-us__title { font-size: 1.05rem; margin-bottom: 10px; color: var(--dark); }
.why-us__text { font-size: .88rem; color: var(--gray-500); line-height: 1.65; }

@media (max-width: 720px) {
  .why-us__grid { grid-template-columns: 1fr; }
  .why-us__pillar:first-child {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 14px;
  }
}

/* =============================================
   STATS — standalone counters
   ============================================= */
.stats-section {
  padding: 96px 0;
  background: var(--gray-50);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

/* =============================================
   HOME CONTACT — split layout with form
   ============================================= */
.home-contact {
  padding: 96px 0;
  background: var(--gray-50);
}
.home-contact__inner {
  display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start;
}
.home-contact__text { padding-top: 20px; }
.home-contact__label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); background: var(--white);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 16px;
  border: 1px solid var(--gray-200);
}
.home-contact__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.035em;
  color: var(--dark); margin-bottom: 14px; line-height: 1.15;
}
.home-contact__text > p {
  color: var(--gray-500); font-size: .95rem; line-height: 1.7; margin-bottom: 32px;
}
.home-contact__info {
  display: flex; flex-direction: column; gap: 14px;
}
.home-contact__info-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; color: var(--gray-600); font-weight: 500;
}
.home-contact__info-item svg { stroke: var(--primary); flex-shrink: 0; }
.home-contact__info-item a, .home-contact__info-item span { color: var(--gray-700); text-decoration: none; }
.home-contact__info-item a:hover { color: var(--primary); }

/* CTA bar */
.cta-bar, .cta-section { padding: 40px 0 72px; background: var(--gray-50); }
.cta-bar__text h2 { font-size: 1.55rem; color: #fff; margin-bottom: 10px; letter-spacing: -.025em; }
.cta-bar__text p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; }
.cta-bar__actions .btn svg { flex-shrink: 0; transition: none; }
.cta-bar__actions .btn:hover svg { transform: none; }
.cta-bar__inner {
  background: linear-gradient(135deg, #0a5e6e 0%, var(--primary) 40%, #0d7e8f 100%);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  position: relative; overflow: hidden;
}
.cta-bar__inner::before {
  content: ''; position: absolute;
  top: -80px; right: -50px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-bar__inner::after {
  content: ''; position: absolute;
  bottom: -60px; left: 20%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-bar__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; position: relative; }
.cta-bar__actions .btn--white { background: #fff; color: var(--primary); border-color: transparent; }
.cta-bar__actions .btn--white:hover { background: var(--gray-50); box-shadow: var(--shadow-md); }
.cta-bar__actions .btn--ghost-w { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.cta-bar__actions .btn--ghost-w:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; border-color: transparent; }
.btn--whatsapp:hover { background: #1ebe5a; color: #fff; box-shadow: 0 8px 22px -4px rgba(37,211,102,.45); transform: translateY(-2px); }

/* =============================================
   PAGE HERO — gradient with depth
   ============================================= */
.page-hero {
  position: relative; overflow: hidden;
  height: 340px;
  display: flex; align-items: center;
  padding: 0;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary) 40%, var(--primary-dark) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Per-page background photos — cinematic photo-forward treatment (same as
   the talleres hero): natural colors with a dark directional overlay. */
.page-hero--productos .page-hero__bg,
.page-hero--nosotros  .page-hero__bg,
.page-hero--companias .page-hero__bg,
.page-hero--contacto  .page-hero__bg {
  background-color: #000;
  background-position: center right;
  filter: saturate(1.05) contrast(1.04);
}
.page-hero--productos .page-hero__bg { background-image: url('../img/hero-productos.jpg'); }
.page-hero--nosotros  .page-hero__bg { background-image: url('../img/hero-nosotros.jpg'); }
.page-hero--companias .page-hero__bg { background-image: url('../img/hero-companias.jpg'); }
.page-hero--contacto  .page-hero__bg { background-image: url('../img/hero-contacto.jpg'); }
/* Dark directional overlay — same gradient as the talleres hero */
.page-hero--productos .page-hero__bg::before,
.page-hero--nosotros  .page-hero__bg::before,
.page-hero--companias .page-hero__bg::before,
.page-hero--contacto  .page-hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(6,20,28,.92) 0%, rgba(6,20,28,.78) 38%, rgba(6,20,28,.25) 70%, rgba(6,20,28,.05) 100%),
    linear-gradient(180deg, rgba(6,20,28,.1) 0%, rgba(6,20,28,.55) 100%);
  width: auto; height: auto; top: 0; right: 0; border-radius: 0;
}

/* =============================================
   HERO TALLERES — cinematic, photo-forward
   ============================================= */
.page-hero--talleres {
  height: clamp(520px, 68vh, 640px);
}
.page-hero--talleres .page-hero__bg {
  background-image: url('../img/hero-talleres.jpg');
  background-color: #000;
  background-position: center right;
  filter: saturate(1.05) contrast(1.04);
}
.page-hero--talleres .page-hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(6,20,28,.92) 0%, rgba(6,20,28,.78) 38%, rgba(6,20,28,.25) 70%, rgba(6,20,28,.05) 100%),
    linear-gradient(180deg, rgba(6,20,28,.1) 0%, rgba(6,20,28,.55) 100%);
  width: auto; height: auto; top: 0; right: 0; border-radius: 0;
}
.page-hero--talleres .page-hero__content {
  max-width: 680px;
  position: relative; z-index: 2;
}
.page-hero--talleres .page-hero__title {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -1.5px;
  font-weight: 800;
}
.page-hero--talleres .page-hero__title em {
  font-style: normal;
  color: var(--accent, #ffb300);
  display: inline-block;
}
.page-hero--talleres .page-hero__desc {
  font-size: 1.05rem;
  max-width: 560px;
  color: rgba(255,255,255,.88);
}
.hero-talleres__badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px 8px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 18px;
  font-size: .78rem;
  color: rgba(255,255,255,.92);
  letter-spacing: .2px;
  text-decoration: none;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.hero-talleres__badge:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.3);
}
.hero-talleres__badge-logo {
  height: 26px; width: auto; display: block;
  background: transparent;
}
.hero-talleres__badge-text { font-weight: 600; white-space: nowrap; }
.hero-talleres__badge-text strong { color: #fff; font-weight: 700; }
.hero-talleres__chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 24px;
}
.hero-talleres__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.hero-talleres__chip strong { color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: -.3px; }
.hero-talleres__chip svg { width: 14px; height: 14px; stroke: var(--accent, #ffb300); flex-shrink: 0; }
@media (max-width: 768px) {
  .page-hero--talleres { height: clamp(440px, 75vh, 560px); }
  .page-hero--talleres .page-hero__bg::before {
    background:
      linear-gradient(180deg, rgba(6,20,28,.72) 0%, rgba(6,20,28,.85) 100%),
      linear-gradient(95deg, rgba(6,20,28,.3) 0%, rgba(6,20,28,.1) 100%);
  }
  .hero-talleres__chips { gap: 6px; }
  .hero-talleres__chip { padding: 6px 10px; font-size: .72rem; }
  .hero-talleres__chip strong { font-size: .85rem; }
  .hero-talleres__badge { padding: 6px 12px 6px 8px; font-size: .72rem; }
  .hero-talleres__badge-logo { height: 22px; }
  .hero-talleres__badge-text { white-space: normal; }
}

/* Landing seguro-talleres — compact overrides */
.seguro-talleres .trust__stats { padding-top: 0; }
.why-us__item {
  padding: 32px 26px 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-us__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-us__item .why-us__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.why-us__item:hover .why-us__icon { background: var(--primary); transform: scale(1.06); }
.why-us__item .why-us__icon svg { width: 22px; height: 22px; stroke: var(--primary); transition: stroke var(--transition); }
.why-us__item:hover .why-us__icon svg { stroke: #fff; }
.why-us__item .why-us__title {
  font-size: 1.1rem; font-weight: 700; color: var(--dark);
  margin-bottom: 10px; letter-spacing: -.3px;
}
.why-us__item p { font-size: .92rem; color: var(--gray-600); line-height: 1.65; }
@media (max-width: 768px) {
  .why-us__item { padding: 26px 22px 22px; }
}

.page-hero__bg::before {
  content: ''; position: absolute;
  top: -100px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero__bg::after {
  content: ''; position: absolute;
  bottom: -80px; left: 20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: -80px; right: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
/* Animated gradient overlay — reuse hero keyframes */
.page-hero__gradient-anim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(11,114,133,.14) 0%,
    rgba(11,114,133,.06) 25%,
    transparent 50%,
    rgba(11,114,133,.05) 75%,
    rgba(11,114,133,.1) 100%
  );
  background-size: 300% 300%;
  animation: hero-gradient-shift 12s ease infinite;
  pointer-events: none;
}
.page-hero > .container { width: 100%; position: relative; z-index: 2; }
.page-hero__content {
  position: relative; z-index: 1;
  max-width: 600px;
}
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.page-hero .btn--accent { border-radius: 10px; }
.page-hero .btn--accent:hover { box-shadow: 0 8px 22px -4px rgba(18,184,134,.4); }
.page-hero .btn--ghost-w { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.page-hero .btn--ghost-w:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }
.breadcrumb { display: flex; gap: 6px; font-size: .78rem; margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb__sep { color: rgba(255,255,255,.2); }
.breadcrumb__current { color: rgba(255,255,255,.65); }
.page-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.85); margin-bottom: 10px;
}
.page-hero__tag::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: rgba(255,255,255,.85); border-radius: 1px;
}

.page-hero__title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: #fff; margin-bottom: 12px; font-weight: 800; letter-spacing: -.035em; }
.page-hero__desc { font-size: .95rem; color: rgba(255,255,255,.55); line-height: 1.7; margin: 0; }

/* =============================================
   PRODUCTS HERO — dramatic split (VARIANCE=8)
   ============================================= */
.prod-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.prod-hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary) 40%, var(--primary-dark) 100%);
}
.prod-hero__bg::before {
  content: ''; position: absolute;
  top: -100px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.prod-hero__bg::after {
  content: ''; position: absolute;
  bottom: -80px; left: 20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.03) 0%, transparent 70%);
  border-radius: 50%;
}
.prod-hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center;
}
.prod-hero__stats { align-self: stretch; margin-top: 29px; }
.prod-hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-self: stretch;
  margin-top: 29px;
  min-height: 320px;
}
.prod-hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.prod-hero__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,74,85,.78) 0%, rgba(11,114,133,.55) 40%, rgba(17,24,39,.5) 100%);
  pointer-events: none;
}
.prod-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,.85); margin-bottom: 14px;
}
.prod-hero__tag::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: rgba(255,255,255,.85); border-radius: 1px;
}
.prod-hero__specialty {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700;
  color: #fff; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 18px; letter-spacing: .02em;
  backdrop-filter: blur(6px);
}
.prod-hero__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; color: #fff;
  margin-bottom: 18px; letter-spacing: -.035em; line-height: 1.1;
}
.prod-hero__desc {
  font-size: 1rem; color: rgba(255,255,255,.7);
  margin-bottom: 32px; line-height: 1.75; max-width: 480px;
}
.prod-hero__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
  margin-bottom: 32px;
}
.prod-hero__features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.75);
}
.prod-hero__features li svg { stroke: rgba(255,255,255,.7); flex-shrink: 0; }
.prod-hero__tags-inline {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.prod-hero__tags-inline span {
  font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 12px; border-radius: 50px;
  letter-spacing: .01em;
}
.prod-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.prod-hero .btn--accent { border-radius: 10px; }
.prod-hero .btn--accent:hover { box-shadow: 0 8px 22px -4px rgba(18,184,134,.4); }
.prod-hero .btn--ghost-w { border-color: rgba(255,255,255,.2); color: #fff; background: rgba(255,255,255,.06); border-radius: 10px; backdrop-filter: blur(8px); }
.prod-hero .btn--ghost-w:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }

.prod-hero__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.prod-hero__stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all .35s var(--ease);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.prod-hero__stat:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-3px);
}
.prod-hero__stat-num {
  display: block; font-size: 2.2rem; font-weight: 800;
  color: #fff; letter-spacing: -1px; line-height: 1;
  margin-bottom: 6px;
}
.prod-hero__stat-label {
  font-size: .76rem; color: rgba(255,255,255,.5);
  font-weight: 500; letter-spacing: .02em;
}

/* ---- Hero Logos Mosaic ---- */
.hero-logos {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  align-self: stretch; margin-top: 29px;
}
.hero-logos__item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  min-height: 64px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: all .35s var(--ease);
}
.hero-logos__item:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}
.hero-logos__item img {
  max-height: 30px; max-width: 110px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .3s var(--ease);
}
.hero-logos__item:hover img { opacity: 1; }

/* ---- Product Quick Nav ---- */
.prod-nav {
  position: sticky; top: 72px; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.prod-nav__track {
  display: flex; gap: 8px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.prod-nav__track::-webkit-scrollbar { display: none; }
.prod-nav__pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 50px;
  font-size: .84rem; font-weight: 600;
  color: var(--gray-500); background: var(--gray-100);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.prod-nav__pill svg { stroke: currentColor; flex-shrink: 0; }
.prod-nav__pill:hover { color: var(--primary); background: var(--primary-soft); }
.prod-nav__pill--active {
  color: var(--primary); background: var(--primary-soft);
  border-color: rgba(11,114,133,.15);
}
.prod-nav__pill--highlight {
  background: var(--primary); color: #fff; border-color: var(--primary);
  font-weight: 700;
}
.prod-nav__pill--highlight:hover { background: var(--primary-dark); color: #fff; }
.prod-nav__pill--highlight.prod-nav__pill--active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}

/* =============================================
   SPOTLIGHT — Talleres de automoción
   ============================================= */
.spotlight {
  position: relative; overflow: hidden;
  padding: 64px 0;
}
.spotlight__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #111827 0%, #1a2332 40%, #0f2027 100%);
}
.spotlight__bg::before {
  content: ''; position: absolute;
  top: -80px; right: 10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(11,114,133,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.spotlight__bg::after {
  content: ''; position: absolute;
  bottom: -60px; left: 5%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(11,114,133,.08) 0%, transparent 70%);
  border-radius: 50%;
}
.spotlight__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 56px; align-items: center;
}
.spotlight__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--primary); margin-bottom: 14px;
}
.spotlight__tag::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--primary); border-radius: 1px;
}
.spotlight__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; color: #fff;
  margin-bottom: 18px; letter-spacing: -.035em; line-height: 1.15;
}
.spotlight__desc {
  font-size: .95rem; color: rgba(255,255,255,.55);
  margin-bottom: 28px; line-height: 1.75; max-width: 540px;
}
.spotlight__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  margin-bottom: 32px;
}
.spotlight__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.75);
}
.spotlight__features li svg { stroke: var(--primary); flex-shrink: 0; }
.spotlight__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.spotlight .btn--accent { border-radius: 10px; }
.spotlight .btn--accent:hover { box-shadow: 0 8px 22px -4px rgba(18,184,134,.4); }
.spotlight .btn--ghost-w { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); background: rgba(255,255,255,.04); border-radius: 10px; }
.spotlight .btn--ghost-w:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: #fff; }

.spotlight__aside {
  display: flex; flex-direction: column; gap: 16px;
}
.spotlight__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all .35s var(--ease);
}
.spotlight__card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.spotlight__card-icon {
  margin: 0 auto 10px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.spotlight__card-icon svg { stroke: rgba(255,255,255,.85); }
.spotlight__card-num {
  display: block; font-size: 1.8rem; font-weight: 800;
  color: #fff; letter-spacing: -1px; line-height: 1;
  margin-bottom: 4px;
}
.spotlight__card-label {
  font-size: .76rem; color: rgba(255,255,255,.4);
  font-weight: 500;
}

/* ---- Product Cards v2 ---- */
.prod-featured {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px;
  margin-bottom: 20px;
}
.prod-featured__side {
  display: flex; flex-direction: column; gap: 20px;
}
.prod-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.prod-row--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 740px;
}
.prod-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pcard {
  display: flex; flex-direction: column;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px 26px 28px; transition: all .35s var(--ease);
  position: relative; overflow: hidden; background: var(--white);
  text-decoration: none; color: inherit;
}
.pcard::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.pcard:hover::after { transform: scaleX(1); }

.pcard--large {
  padding: 40px 36px 36px;
  justify-content: flex-end;
}
.pcard--large .pcard__title { font-size: 1.3rem; }
.pcard--large .pcard__desc { font-size: .92rem; }

.pcard--hero {
  grid-column: span 2;
  border: 1.5px solid var(--primary-light);
}
.pcard--hero .pcard__title { font-size: 1.15rem; margin-bottom: 6px; }
.pcard--hero .pcard__desc { font-size: .88rem; }

.pcard__badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--primary); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 14px; border-radius: 20px;
}

.pcard__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px; padding: 12px;
  transition: all .35s var(--ease);
}
.pcard:hover .pcard__icon { background: var(--primary); transform: scale(1.06); }
.pcard__icon img { width: 28px; height: 28px; object-fit: contain; transition: filter var(--transition); }
.pcard:hover .pcard__icon img { filter: brightness(0) invert(1); }
.pcard__icon svg { stroke: var(--primary); transition: stroke var(--transition); }
.pcard:hover .pcard__icon svg { stroke: #fff; }

/* Product card tint backgrounds — intensified to match bento */
.pcard--tint-teal    { background: #e0f5f5; }
.pcard--tint-teal:hover    { background: #cfecec; }
.pcard--tint-amber   { background: #fdf3e1; }
.pcard--tint-amber:hover   { background: #fcecd0; }
.pcard--tint-rose    { background: #fbe8ec; }
.pcard--tint-rose:hover    { background: #f7dae1; }
.pcard--tint-emerald { background: #e0f7ea; }
.pcard--tint-emerald:hover { background: #cef0dc; }
.pcard--tint-sky     { background: #e3effc; }
.pcard--tint-sky:hover     { background: #d4e4f9; }
.pcard--tint-violet  { background: #ece8f5; }
.pcard--tint-violet:hover  { background: #e0daef; }
.pcard--tint-slate   { background: #ebeae7; }
.pcard--tint-slate:hover   { background: #e0dfdb; }
.pcard--tint-orange  { background: #fdecdd; }
.pcard--tint-orange:hover  { background: #fce2cc; }
.pcard--tint-cyan    { background: #e0f5f7; }
.pcard--tint-cyan:hover    { background: #cfecf0; }
.pcard--tint-lime    { background: #ebf5d8; }
.pcard--tint-lime:hover    { background: #e0efc6; }
.pcard--tint-stone   { background: #efece7; border: 1.5px solid var(--gray-200); }
.pcard--tint-stone:hover   { background: #e5e1da; border-color: var(--primary); }
.pcard--tint-blue    { background: #e2ebfc; }
.pcard--tint-blue:hover    { background: #d3e0f9; }

.pcard__title { font-size: .98rem; margin-bottom: 8px; color: var(--dark); }
.pcard__desc { font-size: .84rem; color: var(--gray-500); line-height: 1.65; margin-bottom: 16px; flex-grow: 1; }

.pcard__features {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
}
.pcard__features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 500; color: var(--gray-700);
}
.pcard__features li svg { stroke: var(--primary); flex-shrink: 0; }

.pcard__covers {
  list-style: none; padding: 0; margin: 0 0 16px;
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 14px; margin-top: 4px;
  border-top: 1px solid var(--gray-200);
}
.pcard__covers li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .76rem; color: var(--gray-600);
  line-height: 1.45;
}
.pcard__covers li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 1px;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pcard__cta {
  font-size: .8rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
  margin-top: auto;
}
.pcard__cta svg { width: 14px; height: 14px; transition: transform var(--transition); }
.pcard:hover .pcard__cta { gap: 8px; }
.pcard:hover .pcard__cta svg { transform: translateX(3px); }

/* ---- Process Steps ---- */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 32px 24px 28px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all .35s var(--ease);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.process-step__num {
  font-size: 2.4rem; font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -.04em;
  line-height: 1; margin-bottom: 16px;
  transition: color .35s var(--ease);
}
.process-step:hover .process-step__num { color: var(--primary); }
.process-step__title { font-size: .92rem; margin-bottom: 8px; }
.process-step__text { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

/* ---- Advantages v2 ---- */
.adv-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.adv {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 32px 28px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all .35s var(--ease);
}
.adv:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.adv__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .35s var(--ease);
}
.adv:hover .adv__icon { background: var(--primary); transform: scale(1.08); }
.adv__icon svg { width: 20px; height: 20px; stroke: var(--primary); transition: stroke var(--transition); }
.adv:hover .adv__icon svg { stroke: #fff; }
.adv__title { font-size: .92rem; margin-bottom: 6px; }
.adv__text { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   SECTION
   ============================================= */
.section { padding: 64px 0; }
.section--alt { background: var(--gray-50); }
.section__head { max-width: 520px; margin: 0 0 44px; }
.section__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--primary);
  background: var(--primary-soft); padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.section__title { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin-bottom: 10px; letter-spacing: -.035em; }
.section__desc { color: var(--gray-500); font-size: .92rem; }

/* =============================================
   PRODUCTS — 2 columns (3-col banned)
   ============================================= */
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.prod-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px 26px 28px; transition: all .35s var(--ease);
  position: relative; overflow: hidden; background: var(--white);
}
.prod-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.prod-card:hover::after { transform: scaleX(1); }

.prod-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px; padding: 12px;
  transition: all .35s var(--ease);
}
.prod-card:hover .prod-card__icon { background: var(--primary); transform: scale(1.06); }
.prod-card__icon img { width: 28px; height: 28px; object-fit: contain; transition: filter var(--transition); }
.prod-card:hover .prod-card__icon img { filter: brightness(0) invert(1); }

.prod-card__title { font-size: .98rem; margin-bottom: 8px; }
.prod-card__desc { font-size: .84rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.prod-card__cta {
  font-size: .8rem; font-weight: 600; color: var(--primary);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.prod-card__cta svg { width: 14px; height: 14px; transition: transform var(--transition); }
.prod-card:hover .prod-card__cta { gap: 8px; }
.prod-card:hover .prod-card__cta svg { transform: translateX(3px); }

/* Advantages — 2+1 layout */
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.advantages-grid .advantage:last-child { grid-column: 1 / -1; max-width: 420px; justify-self: center; }
.advantage {
  text-align: center; padding: 36px 28px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all .35s var(--ease);
}
.advantage:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.advantage__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all .35s var(--ease);
}
.advantage:hover .advantage__icon { background: var(--primary); transform: scale(1.08); }
.advantage__icon svg { width: 20px; height: 20px; stroke: var(--primary); transition: stroke var(--transition); }
.advantage:hover .advantage__icon svg { stroke: #fff; }
.advantage__title { font-size: .95rem; margin-bottom: 8px; }
.advantage__text { font-size: .84rem; color: var(--gray-500); line-height: 1.6; }

/* =============================================
   ABOUT
   ============================================= */
.about-intro { padding: 64px 0; }

.about-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: stretch;
}
.about-text {
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 32px;
}
.about-text__top { display: flex; flex-direction: column; }
.about-text h2 { font-size: clamp(1.5rem, 2.5vw, 1.9rem); margin-bottom: 20px; letter-spacing: -.035em; }
.about-text p { font-size: .92rem; color: var(--gray-600); margin-bottom: 14px; line-height: 1.75; }
.about-checks { display: flex; flex-direction: column; gap: 12px; margin-top: 0; }
.about-checks li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: .9rem; color: var(--dark);
  transition: transform var(--transition);
}
.about-checks li:hover { transform: translateX(4px); }
.about-checks li svg { width: 20px; height: 20px; stroke: var(--primary); flex-shrink: 0; }

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 4 / 3;
  align-self: stretch;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,74,85,.78) 0%, rgba(11,114,133,.55) 40%, rgba(17,24,39,.5) 100%);
  pointer-events: none;
}
.about-image--light::after {
  background: linear-gradient(180deg, transparent 40%, rgba(7,74,85,.15) 100%);
}

/* Mission statement */
.about-mission {
  padding: 64px 0;
  background: var(--gray-50);
}
.about-mission__inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.about-mission__label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary); background: var(--white);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
  border: 1px solid var(--gray-200);
}
.about-mission__quote {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600;
  color: var(--dark); line-height: 1.55; letter-spacing: -.01em;
  font-style: normal; border: none; margin: 0; padding: 0;
}

/* Acreditaciones — credentials card */
.creds-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
  will-change: transform;
}
.creds-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.creds-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
}
.creds-card__head { margin-bottom: 22px; }
.creds-card__eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 5px 12px; border-radius: 50px;
  margin-bottom: 14px;
}
.creds-card__title {
  font-size: 1.25rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.025em;
  line-height: 1.25; margin-bottom: 6px;
}
.creds-card__sub {
  font-size: .82rem; color: var(--gray-500); line-height: 1.55;
}
.creds-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.creds-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--gray-200);
}
.creds-item:last-child { padding-bottom: 0; }
.creds-item__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
}
.creds-item__icon svg { stroke: var(--primary); transition: stroke var(--transition); }
.creds-card:hover .creds-item__icon { background: var(--primary); transform: scale(1.06); }
.creds-card:hover .creds-item__icon svg { stroke: #fff; }
.creds-item__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.creds-item__label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-500);
}
.creds-item__value {
  font-size: .98rem; font-weight: 700;
  color: var(--primary-dark); letter-spacing: -.01em;
  line-height: 1.3;
}
.creds-item__desc {
  font-size: .78rem; color: var(--gray-600);
  line-height: 1.55; margin-top: 4px;
}

/* Talleres / Asotecauto section */
.talleres-about {
  padding: 48px 44px;
  background: linear-gradient(135deg, #efece7 0%, #e0f5f5 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}
.talleres-about__title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin-bottom: 16px;
  letter-spacing: -.035em;
}
.talleres-about__text {
  font-size: .92rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 12px;
}
.talleres-about__text strong { color: var(--primary-dark); }
.talleres-about__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
  margin: 20px 0 28px;
}
.talleres-about__list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 600; color: var(--dark);
}
.talleres-about__list li svg { stroke: var(--primary); flex-shrink: 0; }
.talleres-about__icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 180px; height: 180px;
  background: rgba(11,114,133,.06);
  border-radius: 50%;
  flex-shrink: 0;
}
.talleres-about__icon-wrap svg {
  stroke: var(--primary); opacity: .3;
}

/* Values — 2 columns */
.vals-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.val {
  text-align: center; padding: 34px 24px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  background: var(--white); transition: all .35s var(--ease);
}
.val:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.val__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: all .35s var(--ease);
}
.val:hover .val__icon { background: var(--primary); transform: scale(1.08); }
.val__icon svg { width: 20px; height: 20px; stroke: var(--primary); transition: stroke var(--transition); }
.val:hover .val__icon svg { stroke: #fff; }
.val__title { font-size: .92rem; margin-bottom: 6px; }
.val__text { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }
.val--tint-sky    { background: #e3effc; }
.val--tint-sky:hover    { background: #d4e4f9; }
.val--tint-amber  { background: #fdf3e1; }
.val--tint-amber:hover  { background: #fcecd0; }
.val--tint-emerald { background: #e0f7ea; }
.val--tint-emerald:hover { background: #cef0dc; }
.val--tint-rose   { background: #fbe8ec; }
.val--tint-rose:hover   { background: #f7dae1; }
.val--tint-violet { background: #ece8f5; }
.val--tint-violet:hover { background: #e0daef; }
.val--tint-teal   { background: #e0f5f7; }
.val--tint-teal:hover   { background: #cfecf0; }

/* =============================================
   PARTNERS
   ============================================= */
.partners-intro { padding: 64px 0 32px; }

.partners-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.partners-intro-text h2 { font-size: clamp(1.5rem, 2.5vw, 1.85rem); margin-bottom: 16px; letter-spacing: -.035em; }
.partners-intro-text p { font-size: .92rem; color: var(--gray-600); margin-bottom: 12px; line-height: 1.75; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat-box {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 24px 18px; text-align: center; background: var(--white);
  transition: all .35s var(--ease);
}
.stat-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.stat-box__num { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary); letter-spacing: -1px; }
.stat-box__label { font-size: .78rem; color: var(--gray-500); margin-top: 4px; font-weight: 500; }

.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: all .35s var(--ease); background: var(--white);
  position: relative; overflow: hidden;
}
.partner-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.partner-card:hover::after { transform: scaleX(1); }
.partner-card__logo {
  height: 64px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.partner-card__logo img {
  height: 36px; width: auto; max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%); opacity: .6;
  transition: all .4s var(--ease);
}
.partner-card:hover .partner-card__logo img { filter: grayscale(0); opacity: 1; }
.partner-card__name { font-size: .92rem; margin-bottom: 6px; }
.partner-card__desc { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }

/* =============================================
   INSURER DETAIL CARDS — companias.html
   ============================================= */
.insurer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.insurer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 30px 28px;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.insurer-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.insurer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.insurer-card:hover::before { transform: scaleX(1); }

.insurer-card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gray-200);
}
.insurer-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.insurer-card-link:hover .insurer-card {
  box-shadow: var(--shadow-md);
}
.insurer-card__logo {
  height: 44px;
  width: 200px;
  max-width: 100%;
  display: flex; align-items: center; justify-content: flex-start;
  flex-shrink: 0;
  overflow: visible;
}
.insurer-card__logo img {
  --logo-scale: 1;
  --logo-y: 0px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  transform: scale(var(--logo-scale)) translateY(var(--logo-y));
  transform-origin: left center;
  transition: transform .4s var(--ease);
}
.insurer-card:hover .insurer-card__logo img {
  transform: scale(calc(var(--logo-scale) * 1.04)) translateY(var(--logo-y));
}

/* Per-logo optical adjustments (aspect ratios vary between brands) */
.insurer-card__logo img[src*="mapfre"]         { --logo-scale: 1.02; --logo-y: -1px; }
.insurer-card__logo img[src*="reale"]          { --logo-scale: 1.15; }
.insurer-card__logo img[src*="fiatc"]          { --logo-scale: 0.92; }
.insurer-card__logo img[src*="generali"]       { --logo-scale: 1.12; }
.insurer-card__logo img[src*="asisa"]          { --logo-scale: 0.78; }
.insurer-card__logo img[src*="seguropordias"]  { --logo-scale: 0.85; }

@media (max-width: 560px) {
  .insurer-card__logo { height: 38px; width: 170px; }
}
.insurer-card__year {
  flex-shrink: 0;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 5px 11px; border-radius: 50px;
  white-space: nowrap;
}
.insurer-card__name {
  font-size: 1.22rem; font-weight: 700;
  color: var(--dark); letter-spacing: -.025em;
  line-height: 1.2; margin-bottom: 4px;
}
.insurer-card__tagline {
  font-size: .82rem; font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: -.005em;
}
.insurer-card__desc {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 18px;
}
.insurer-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.insurer-tag {
  font-size: .7rem; font-weight: 600;
  color: var(--gray-700);
  background: var(--gray-100, #f1f3f5);
  padding: 5px 11px;
  border-radius: 50px;
  letter-spacing: .01em;
  border: 1px solid var(--gray-200);
}
.insurer-card__list {
  list-style: none; padding: 0; margin: 0 0 0 0;
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}
.insurer-card__list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .8rem; color: var(--gray-700);
  line-height: 1.5;
}
.insurer-card__list li svg {
  width: 16px; height: 16px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Wider section head when it carries a description */
.section__head:has(.section__desc) { max-width: 760px; }

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

/* Siniestros — compromiso note */
.siniestros-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--primary-soft);
  border: 1px solid rgba(11,114,133,.15);
  border-radius: var(--radius-lg);
}
.siniestros-note svg {
  flex-shrink: 0;
  width: 32px; height: 32px;
  stroke: var(--primary);
  margin-top: 2px;
}
.siniestros-note p {
  margin: 0;
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.siniestros-note strong {
  color: var(--primary-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .insurer-grid { grid-template-columns: 1fr; gap: 18px; }
  .insurer-card { padding: 28px 24px 24px; }
  .process-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .siniestros-note { flex-direction: column; gap: 12px; padding: 22px 22px; }
}
@media (max-width: 560px) {
  .process-grid--4 { grid-template-columns: 1fr; }
  .insurer-card__head { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { padding: 64px 0; }

.contact-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 44px; align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.cc {
  display: flex; gap: 16px; padding: 22px;
  background: var(--gray-50); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); transition: all .35s var(--ease);
}
.cc:hover { background: #fff; box-shadow: var(--shadow-lg); border-color: transparent; transform: translateX(4px); }
.cc__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-soft); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all .35s var(--ease);
}
.cc:hover .cc__icon { background: var(--primary); }
.cc__icon svg { width: 18px; height: 18px; stroke: var(--primary); transition: stroke var(--transition); }
.cc:hover .cc__icon svg { stroke: #fff; }
.cc h3 { font-size: .88rem; margin-bottom: 3px; }
.cc p { font-size: .84rem; color: var(--gray-500); line-height: 1.55; }
.cc a { color: var(--gray-600); word-break: break-all; }
.cc a:hover { color: var(--primary); }
.c-schedule {
  position: relative; overflow: hidden;
  padding: 22px 24px; margin-top: 4px;
  background: linear-gradient(160deg, #ffffff 0%, var(--primary-soft) 100%);
  border: 1px solid rgba(10,94,110,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px -18px rgba(10,94,110,.35);
  flex-grow: 1; display: flex; flex-direction: column; gap: 16px;
}
.c-schedule::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  pointer-events: none;
}
.c-schedule__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.c-schedule h4 { font-size: .85rem; color: var(--primary-dark); margin: 0; letter-spacing: -.01em; }
.c-schedule__status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(18,184,134,.12); color: #0b7a55;
  font-size: .7rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid rgba(18,184,134,.25);
}
.c-schedule__status.is-closed { background: rgba(180,70,70,.1); color: #9a3b3b; border-color: rgba(180,70,70,.22); }
.c-schedule__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #12b886;
  box-shadow: 0 0 0 0 rgba(18,184,134,.55);
  animation: cSchedulePulse 2s infinite;
}
.c-schedule__status.is-closed .c-schedule__dot { background: #c44; animation: none; box-shadow: none; }
@keyframes cSchedulePulse {
  0%   { box-shadow: 0 0 0 0 rgba(18,184,134,.55); }
  70%  { box-shadow: 0 0 0 6px rgba(18,184,134,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,184,134,0); }
}
.c-schedule__hours {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.c-schedule__hours li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; font-size: .82rem; color: var(--gray-700);
  border-bottom: 1px dashed rgba(10,94,110,.12);
}
.c-schedule__hours li:last-child { border-bottom: none; }
.c-schedule__hours li span { color: var(--gray-600); }
.c-schedule__hours li strong { color: var(--primary-dark); font-weight: 600; font-variant-numeric: tabular-nums; }
.c-schedule__hours li.is-off strong { color: var(--gray-400); font-weight: 500; }
.c-schedule__items {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 14px; border-top: 1px solid rgba(10,94,110,.12);
}
.c-schedule__item { display: flex; gap: 12px; align-items: flex-start; }
.c-schedule__icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px;
  background: #fff; border: 1px solid rgba(10,94,110,.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); box-shadow: 0 2px 6px rgba(10,94,110,.06);
}
.c-schedule__icon svg { width: 16px; height: 16px; }
.c-schedule__item strong { display: block; font-size: .8rem; color: var(--primary-dark); font-weight: 600; margin-bottom: 2px; }
.c-schedule__item p { margin: 0; font-size: .78rem; color: var(--gray-600); line-height: 1.5; }

.contact-form {
  border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: 40px; background: var(--white); box-shadow: var(--shadow-lg);
  position: relative;
}
.contact-form::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.home-contact .contact-form::before,
.contact-section .contact-form::before { display: none; }
.contact-form h2 { font-size: 1.2rem; margin-bottom: 5px; }
.contact-form .form-sub { color: var(--gray-500); font-size: .86rem; margin-bottom: 28px; }

.fg { margin-bottom: 22px; }
.fg label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 9px;
  letter-spacing: -.005em;
  line-height: 1.3;
}
.fg label .fg__req { color: var(--primary); margin-left: 2px; }
.fg label .fg__hint {
  display: inline-block;
  margin-left: 8px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-size: .9rem; font-family: var(--font);
  color: var(--dark); background: var(--gray-50); outline: none;
  transition:
    border-color .25s var(--ease),
    background-color .25s var(--ease),
    box-shadow .3s var(--ease),
    color .25s var(--ease);
}
.fg input:hover:not(:focus), .fg select:hover:not(:focus), .fg textarea:hover:not(:focus) {
  border-color: var(--gray-300);
  background: #fff;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(11,114,133,.1);
}
.fg input::placeholder, .fg textarea::placeholder {
  color: var(--gray-400);
  transition: color .25s var(--ease);
}
.fg input:focus::placeholder, .fg textarea:focus::placeholder { color: var(--gray-300); }

.fg input:invalid:not(:placeholder-shown),
.fg textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444; background: #fef2f2;
}
.fg input:invalid:not(:placeholder-shown):focus,
.fg textarea:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 4px rgba(239,68,68,.12);
}
.fg input:valid:not(:placeholder-shown) { border-color: var(--primary); }
.fg input:valid:not(:placeholder-shown):focus { box-shadow: 0 0 0 4px rgba(11,114,133,.12); }
.fg textarea { resize: vertical; min-height: 90px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-legal { margin-top: 12px; font-size: .72rem; color: var(--gray-400); text-align: center; }
.form-legal a { color: var(--primary); text-decoration: underline; }

/* -- Siniestro card -- */
.cc--siniestro { text-decoration: none; color: inherit; cursor: pointer; border-color: #fecaca; background: #fef2f2; }
.cc__icon--siniestro { background: rgba(239,68,68,.1); }
.cc__icon--siniestro svg { stroke: #dc2626; width: 18px; height: 18px; }
.cc--siniestro:hover { background: #fff; border-color: transparent; }
.cc--siniestro:hover .cc__icon--siniestro { background: #dc2626; }
.cc--siniestro:hover .cc__icon--siniestro svg { stroke: #fff; }

/* -- Form tabs -- */
.form-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 28px; border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; border: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.form-tab {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 16px; font-size: .84rem; font-weight: 600;
  font-family: var(--font); color: var(--gray-500);
  background: transparent; border: none; cursor: pointer;
  transition: all var(--transition); position: relative;
}
.form-tab::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: transparent; border-radius: 2px;
  transition: all var(--transition);
}
.form-tab:hover { color: var(--primary); background: var(--white); }
.form-tab--active {
  color: var(--primary); background: var(--white);
}
.form-tab--active::after { background: var(--primary); left: 0; right: 0; }
.form-tab svg { flex-shrink: 0; }

/* -- Form panels -- */
.form-panel { display: none; }
.form-panel--active { display: block; }

/* -- Submit button states -- */
.btn__loading, .btn__success { align-items: center; gap: 8px; }
.btn__loading[hidden], .btn__success[hidden] { display: none; }
.btn__loading:not([hidden]), .btn__success:not([hidden]) { display: inline-flex; }
.btn--submitting { pointer-events: none; opacity: .85; }
.btn--success { background: var(--accent) !important; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin .7s linear infinite; }

/* -- FAQ section -- */
.contact-faq {
  padding: 0 0 72px;
}
.contact-faq__title {
  font-size: 1.3rem; letter-spacing: -.025em; color: var(--dark);
  margin-bottom: 28px;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,114,133,.06); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 24px; cursor: pointer; font-size: .88rem; font-weight: 600;
  color: var(--dark); list-style: none; user-select: none;
  transition: color var(--transition);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { content: ''; }
.faq-item__chevron {
  flex-shrink: 0; stroke: var(--gray-400);
  transition: transform .3s var(--ease), stroke var(--transition);
}
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); stroke: var(--primary); }
.faq-item[open] .faq-item__q { color: var(--primary); }
.faq-item__a {
  padding: 0 24px 20px;
}
.faq-item__a p {
  font-size: .86rem; color: var(--gray-600); line-height: 1.7;
}

.contact-map { padding: 0 0 64px; }
.contact-map__wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.contact-map__wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.contact-map__links {
  margin: 14px 0 0;
  text-align: center;
  font-size: .82rem;
  color: var(--gray-500);
}
.contact-map__links a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.contact-map__links a:hover { color: var(--primary-dark); text-decoration: underline; }
.contact-map__sep { margin: 0 10px; color: var(--gray-300); }

/* =============================================
   PRIVACY
   ============================================= */
.privacy { padding: 64px 0 80px; }
.privacy h2 { font-size: 1.08rem; margin: 32px 0 10px; color: var(--primary); border-bottom: 2px solid var(--primary-soft); padding-bottom: 8px; }
.privacy h3 { font-size: .98rem; margin: 22px 0 8px; color: var(--gray-800); font-weight: 700; }
.privacy p, .privacy li { font-size: .9rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 10px; overflow-wrap: anywhere; word-break: break-word; }
.privacy ul { padding-left: 20px; list-style: disc; }
.privacy a { color: var(--primary); text-decoration: underline; overflow-wrap: anywhere; word-break: break-word; }
@media (max-width: 640px) {
  .privacy { padding: 40px 0 56px; }
  .privacy h2 { font-size: 1rem; margin-top: 26px; }
  .privacy h3 { font-size: .92rem; }
  .privacy p, .privacy li { font-size: .86rem; line-height: 1.7; }
  .privacy ul { padding-left: 18px; }
}

/* =============================================
   FOOTER — inspired by Grupo PACC
   ============================================= */
.footer {
  background: #1a1d23;
  color: rgba(255,255,255,.4); padding: 0;
  position: relative;
  overflow-x: clip;
}
.footer * { box-sizing: border-box; min-width: 0; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary);
}
.footer__main {
  display: grid; grid-template-columns: 1.6fr 1fr .6fr 1.3fr; gap: 0;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: stretch;
}
.footer__main > * {
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,.06);
  display: flex; flex-direction: column;
}
.footer__main > *:first-child {
  padding-left: 0;
  border-left: none;
}
.footer__main > *:last-child {
  padding-right: 0;
}
.footer__main > :nth-child(3) { align-self: start; }
.footer__brand .footer__social { margin-top: auto; padding-top: 16px; }
.footer__main > .footer__col:first-of-type > a:last-of-type { margin-top: auto; }
.footer__main > .footer__col:last-child > .footer__contact-item:last-child { margin-top: auto; }
.footer__brand > a:first-child { display: inline-block; margin-bottom: 16px; }
.footer__brand img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer__brand p { font-size: .84rem; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.footer__social a:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-2px);
}
.footer__social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.5); stroke: rgba(255,255,255,.5); transition: all .3s var(--ease); }
.footer__social a:hover svg { fill: #fff; stroke: #fff; }
.footer__col {
  display: flex; flex-direction: column;
}
.footer__col h4 {
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__col a {
  display: block; font-size: .84rem; color: rgba(255,255,255,.35);
  margin-bottom: 10px; transition: all .2s var(--ease);
  position: relative; padding-left: 0;
}
.footer__col a:hover { color: rgba(255,255,255,.85); padding-left: 4px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  min-width: 0;
}
.footer__contact-item svg {
  width: 16px; height: 16px; stroke: rgba(255,255,255,.25);
  flex-shrink: 0; margin-top: 2px;
}
.footer__contact-item a, .footer__contact-item span {
  font-size: .82rem; color: rgba(255,255,255,.4);
  transition: color .2s; line-height: 1.5;
  min-width: 0;
  flex: 1 1 auto;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.footer__contact-item a:hover { color: var(--primary); }
.footer__col, .footer__brand { min-width: 0; }
.footer__brand p { word-break: break-word; overflow-wrap: anywhere; }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(255,255,255,.2);
}


/* =============================================
   ANIMATIONS — premium easing (MOTION=6)
   ============================================= */
.fade-up.animated { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-up.animated.revealed { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .07s; }
.fade-up:nth-child(3) { transition-delay: .14s; }
.fade-up:nth-child(4) { transition-delay: .21s; }
.fade-up:nth-child(5) { transition-delay: .28s; }
.fade-up:nth-child(6) { transition-delay: .35s; }
.fade-up:nth-child(7) { transition-delay: .42s; }
.fade-up:nth-child(8) { transition-delay: .49s; }
.fade-up:nth-child(9) { transition-delay: .56s; }

/* =============================================
   RESPONSIVE
   ============================================= */
/* Navbar collapses earlier — links get cramped before 1024px */
@media (max-width: 1024px) {
  .navbar__menu, .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__menu.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px 16px; box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--gray-200);
  }
  .navbar__menu.open .navbar__link { padding: 12px 14px; border-radius: 8px; color: var(--gray-600); }
  .navbar__menu.open .navbar__link:hover, .navbar__menu.open .navbar__link.active { background: var(--primary-soft); color: var(--primary); }
  /* Talleres — on mobile, separator becomes a top border and the pill stretches full width */
  .navbar__menu.open .navbar__link--talleres {
    margin-left: 0; margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,.08);
    border-left: 0; border-right: 0; border-bottom: 0;
    border-radius: 8px;
    background: rgba(18,184,134,.08);
    color: var(--accent-dark);
  }
  .navbar__menu.open .navbar__link--talleres::before { display: none; }
  .navbar__menu.open .navbar__link--talleres.active,
  .navbar__menu.open .navbar__link--talleres:hover {
    background: rgba(18,184,134,.14); color: var(--accent-dark);
  }
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-cell--wide { grid-column: span 2; }
  .bento-cell--lg { min-height: 180px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .advantages-grid .advantage:last-child { max-width: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 380px; min-height: 260px; }
  .partners-intro-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .vals-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-bar__inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .cta-bar__actions { justify-content: center; }
  .talleres-callout__inner { flex-direction: column; text-align: center; padding: 36px 28px; gap: 24px; }
  .talleres-callout__desc { max-width: none; }
  .taller-banner { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }
  .taller-banner__cta { justify-content: center; }
  .footer__main { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__main > * { padding: 0; border-left: none; }

  .prod-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .prod-hero__stats { grid-template-columns: repeat(4, 1fr); }
  .prod-hero__image { margin-top: 0; min-height: 220px; }
  .hero-logos { grid-template-columns: repeat(4, 1fr); margin-top: 0; }
  .prod-featured { grid-template-columns: 1fr; }
  .prod-row { grid-template-columns: repeat(2, 1fr); }
  .prod-row--3 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr; }
  .spotlight__inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight__aside { flex-direction: row; }
  .spotlight__card { flex: 1; }
  .home-contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .bento-cell--wide { grid-column: span 1; }
  .bento-cell--lg { min-height: auto; }
  .bento-cell { padding: 24px 22px 20px; }
  .bento-cell__arrow { opacity: 1; transform: translate(0,0); }
  .bento-products { padding: 48px 0; }
  .bento-banner {
    flex-direction: column; text-align: center; padding: 28px 24px; gap: 20px;
  }
  .bento-banner__left { flex-direction: column; gap: 16px; }
  .bento-banner__text { max-width: none; }
  .bento-banner .btn { width: 100%; justify-content: center; }
  .bento-products__footer { flex-direction: column; }
  .bento-products__footer .btn { width: 100%; justify-content: center; }
  .why-us { padding: 48px 0; }
  .why-us__grid { grid-template-columns: 1fr; }
  .why-us__pillar { padding: 32px 24px; }
  .stats-section { padding: 48px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .home-contact { padding: 48px 0; }
  .home-contact__inner { grid-template-columns: 1fr; gap: 32px; }
  .home-contact__text { text-align: center; }
  .home-contact__info { align-items: center; }
  .trust-static { grid-template-columns: repeat(4, 1fr); }
  .talleres-about { grid-template-columns: 1fr; padding: 32px 24px; }
  .talleres-about__icon-wrap { display: none; }
  .talleres-about__list { grid-template-columns: 1fr; }
  .topbar__right { display: none; }
  .topbar__left { overflow: hidden; }
  .topbar__left .topbar__item:last-child { display: none; }

  .hero { height: auto; min-height: auto; padding: 48px 0; }
  .hero__content { padding-left: 0; }
  .hero__split { grid-template-columns: 1fr; gap: 32px; }
  .hero__badge { margin-top: 24px; justify-content: center; }
  .hero__badge-logo { height: 26px; }
  .hero__glass {
    flex-direction: row; padding: 20px 24px; gap: 0;
    justify-content: space-around;
  }
  .hero__glass-item { padding: 8px 4px; }
  .hero__glass-num { font-size: 1.3rem; }
  .hero__glass-label { font-size: .65rem; }
  .hero__glass-divider { width: 1px; height: auto; margin: 0; }
  .products-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .fg-row { grid-template-columns: 1fr; }
  .trust__track { gap: 0; }
  .trust__logo-wrap { width: 140px; padding: 8px 16px; }
  /* Per-brand sizes scaled down from desktop, preserving relative proportions
     so optical weight stays balanced across logos. */
  .trust__logo[src*="asisa"]         { height: 26px; max-width: 108px; transform: none; }
  .trust__logo[src*="mapfre"]        { height: 42px; max-width: 130px; transform: none; }
  .trust__logo[src*="seguropordias"] { height: 28px; max-width: 124px; transform: none; }
  .trust__logo[src*="generali"]      { height: 38px; max-width: 124px; transform: none; }
  .trust__logo[src*="occident"]      { height: 36px; max-width: 118px; transform: none; }
  .trust__logo[src*="reale"]         { height: 28px; max-width: 100px; transform: none; }
  .trust__logo[src*="fiatc"]         { height: 28px; max-width:  92px; transform: none; }
  .trust__stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 48px 0; }
  .contact-form { padding: 28px 22px; }
  .contact-form::before { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }

  .page-hero { height: auto; padding: 48px 0 40px; }
  .page-hero__content { max-width: none; }
  .page-hero__title { font-size: clamp(1.5rem, 6vw, 2rem); word-wrap: break-word; }
  .page-hero__actions { flex-direction: column; }
  .page-hero__actions .btn { width: 100%; justify-content: center; }

  .prod-hero { padding: 48px 0 40px; height: auto; }
  .prod-hero__title { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .prod-hero__features { grid-template-columns: 1fr; }
  .prod-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero-logos { grid-template-columns: repeat(2, 1fr); }
  .prod-nav { top: 0; }
  .prod-row { grid-template-columns: 1fr; }
  .prod-row--2 { grid-template-columns: 1fr; max-width: none; }
  .prod-row--3 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .pcard--large { padding: 28px 22px 24px; }
  .pcard--hero { grid-column: span 1; }
  .adv { flex-direction: column; gap: 14px; }
  .spotlight { padding: 52px 0; }
  .spotlight__features { grid-template-columns: 1fr; }
  .spotlight__aside { flex-direction: column; }
  .spotlight__card { padding: 20px 18px; }
  /* Footer mobile — clean centered single column */
  .footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding: 48px 0 36px;
  }
  .footer__brand { text-align: center; align-items: center; }
  .footer__brand p { max-width: 320px; margin-left: auto; margin-right: auto; }
  .footer__social { justify-content: center; margin-top: 18px; padding-top: 0; }
  .footer__col { text-align: center; align-items: center; }
  .footer__col h4 {
    border-bottom: none;
    padding-bottom: 4px;
    margin-bottom: 14px;
    width: auto;
    position: relative;
  }
  .footer__col h4::after {
    content: ''; display: block;
    width: 32px; height: 2px;
    background: rgba(255,255,255,.15);
    margin: 8px auto 0;
    border-radius: 1px;
  }
  .footer__col a { padding-left: 0 !important; }
  .footer__col a:hover { padding-left: 0 !important; color: rgba(255,255,255,.95); }
  .footer__contact-item {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer__contact-item a,
  .footer__contact-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* ============================================= */
/*  EXTRA RESPONSIVE FIXES                          */
/* ============================================= */

/* 1025-1100px — bridge zone where the 4-col footer was cramping */
@media (min-width: 1025px) and (max-width: 1100px) {
  .footer__main { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__main > * { padding: 0; border-left: none; }
  .cta-bar__inner { padding: 44px 36px; gap: 28px; }
}

/* Hide Navegación column on mobile/tablet — already in top navbar */
@media (max-width: 1024px) {
  .footer__main > .footer__brand + .footer__col { display: none; }
}

/* 769-1024px — tablet footer: single centered column (grid 1fr like mobile) */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding: 56px 0 40px;
  }
  .footer__main > * { padding: 0; border-left: none; }
  .footer__brand { text-align: center; align-items: center; }
  .footer__brand p { max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer__social { justify-content: center; margin-top: 18px; padding-top: 0; }
  .footer__col { text-align: center; align-items: center; }
  .footer__col h4 {
    border-bottom: none;
    padding-bottom: 4px;
    margin-bottom: 14px;
    width: auto;
    position: relative;
  }
  .footer__col h4::after {
    content: ''; display: block;
    width: 32px; height: 2px;
    background: rgba(255,255,255,.15);
    margin: 8px auto 0;
    border-radius: 1px;
  }
  .footer__col a { padding-left: 0 !important; }
  .footer__col a:hover { padding-left: 0 !important; color: rgba(255,255,255,.95); }
  .footer__contact-item {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer__contact-item a,
  .footer__contact-item span {
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .footer__bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* 900px — intermediate tablet (iPad portrait, small laptops) */
@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .home-contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-bar__inner { flex-direction: column; text-align: center; padding: 40px 32px; gap: 24px; }
  .cta-bar__actions { justify-content: center; }
}

/* 560px — small tablet portrait / large mobile */
@media (max-width: 560px) {
  /* Hero glass stats: stack vertically, hide dividers */
  .hero__glass {
    flex-direction: column;
    gap: 14px;
    padding: 22px 24px;
  }
  .hero__glass-item { padding: 4px 0; width: 100%; }
  .hero__glass-num { font-size: 1.5rem; }
  .hero__glass-label { font-size: .72rem; }
  .hero__glass-divider { display: none; }

  /* Hero description: tighter type, full width */
  .hero__desc {
    max-width: 100%;
    font-size: .98rem;
    margin-bottom: 28px;
  }
}

/* 480px — mobile */
@media (max-width: 480px) {
  /* CTA bar buttons stack full width */
  .cta-bar__actions { flex-direction: column; gap: 10px; width: 100%; }
  .cta-bar__actions .btn { width: 100%; justify-content: center; }
  .cta-bar__inner { padding: 36px 24px; }

  /* Trust marquee logos a bit smaller */
  .trust__logo { max-width: 100px; max-height: 24px; }
  .trust__logo-wrap { width: 120px; padding: 6px 8px; height: 38px; }
  .trust__logo[src*="asisa"]         { height: 17px; max-width: 90px; transform: none; }
  .trust__logo[src*="mapfre"]        { height: 28px; max-width: 104px; transform: none; }
  .trust__logo[src*="seguropordias"] { height: 19px; max-width: 100px; transform: none; }
  .trust__logo[src*="generali"]      { height: 25px; max-width: 100px; transform: none; }
  .trust__logo[src*="occident"]      { height: 24px; max-width:  96px; transform: none; }
  .trust__logo[src*="reale"]         { height: 19px; max-width:  82px; transform: none; }
  .trust__logo[src*="fiatc"]         { height: 19px; max-width:  76px; transform: none; }
}

/* =============================================
   CHATBOT WIDGET
   ============================================= */
#omap-chat { position: fixed; bottom: 24px; right: 24px; z-index: 9999; font-family: 'Outfit', sans-serif; }

/* ---------- CORPORATE FAB (AXA-style) ---------- */
.omc-toggle {
  position: relative;
  width: 60px; height: 60px;
  border: none; border-radius: 50%; cursor: pointer;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  animation: omcToggleGlow 5s ease-in-out infinite;
}
@keyframes omcToggleGlow {
  0%, 84%, 100% {
    box-shadow:
      0 8px 24px -6px rgba(18,184,134,.5),
      0 2px 6px rgba(0,0,0,.12),
      0 0 0 0 rgba(18,184,134,0);
  }
  88% {
    box-shadow:
      0 8px 24px -6px rgba(18,184,134,.7),
      0 2px 6px rgba(0,0,0,.12),
      0 0 32px 8px rgba(18,184,134,.6);
  }
  94% {
    box-shadow:
      0 8px 24px -6px rgba(18,184,134,.55),
      0 2px 6px rgba(0,0,0,.12),
      0 0 22px 4px rgba(18,184,134,.3);
  }
}
.omc-toggle:hover {
  background: var(--accent-dark);
  box-shadow: 0 12px 30px -6px rgba(18,184,134,.65), 0 4px 10px rgba(0,0,0,.18);
  transform: translateY(-2px);
  animation-play-state: paused;
}
.omc-toggle:active { transform: translateY(0); }
.omc-toggle:focus-visible { outline: 3px solid rgba(18,184,134,.65); outline-offset: 3px; }

.omc-toggle__open, .omc-toggle__close { display: block; }
.omc-toggle__close { display: none; }
.omc-toggle--active .omc-toggle__open { display: none; }
.omc-toggle--active .omc-toggle__close { display: block; }
.omc-toggle--active {
  background: var(--gray-800);
  animation: none;
}
.omc-toggle--active:hover { background: var(--gray-700); }

@media (prefers-reduced-motion: reduce) {
  .omc-toggle { animation: none; }
}

/* ---------- Tooltip "¿Necesitas ayuda?" ---------- */
.omc-tip {
  position: absolute;
  bottom: 14px; right: 74px;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px 10px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  color: var(--dark);
  font-size: .82rem; font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 28px -10px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.06);
  opacity: 0; transform: translateX(8px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.omc-tip::after {
  content: ''; position: absolute; top: 50%; right: -5px;
  width: 10px; height: 10px; transform: translateY(-50%) rotate(45deg);
  background: #fff;
  border-right: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200);
}
.omc-tip--visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.omc-tip__close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; padding: 0;
  border: none; background: var(--gray-100); border-radius: 50%;
  color: var(--gray-500); cursor: pointer;
  transition: background .2s, color .2s;
}
.omc-tip__close:hover { background: var(--gray-200); color: var(--dark); }

@media (prefers-reduced-motion: reduce) {
  .omc-toggle, .omc-tip { transition: none; }
}

.omc-panel {
  position: absolute; bottom: 72px; right: 0;
  width: 370px;
  max-width: calc(100vw - 32px);
  max-height: 520px; border-radius: 16px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-xl);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(16px) scale(.95); pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.omc-panel--open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.omc-header {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: var(--primary); color: #fff;
}
.omc-header__brand {
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex; align-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.omc-header__brand img {
  height: 26px; width: auto; display: block;
  max-width: 120px; object-fit: contain;
}
.omc-header__meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.omc-header__name { font-size: .88rem; font-weight: 600; line-height: 1.2; }
.omc-header__status { font-size: .72rem; opacity: .85; display: flex; align-items: center; gap: 6px; }
.omc-header__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22e27a;
  box-shadow: 0 0 0 0 rgba(34,226,122,.6);
  animation: omcDotPulse 2s ease-in-out infinite;
}
@keyframes omcDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,226,122,.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,226,122,0); }
}
.omc-header__close {
  margin-left: auto; background: none; border: none; color: #fff;
  cursor: pointer; opacity: .7; transition: opacity .2s;
}
.omc-header__close:hover { opacity: 1; }

.omc-body {
  flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 12px;
  min-height: 280px; max-height: 340px; background: var(--gray-50);
}

.omc-msg p {
  padding: 10px 14px; border-radius: 14px; font-size: .85rem; line-height: 1.5;
  margin: 0; max-width: 85%; word-wrap: break-word;
}
.omc-msg--bot { align-self: flex-start; }
.omc-msg--bot p { background: #fff; color: var(--dark); border: 1px solid var(--gray-200); border-bottom-left-radius: 4px; }
.omc-msg--user { align-self: flex-end; }
.omc-msg--user p { background: var(--primary); color: #fff; border-bottom-right-radius: 4px; }

.omc-msg--loading p { display: flex; align-items: center; gap: 2px; padding: 12px 18px; }
.omc-dots span {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gray-400); animation: omcBounce .6s infinite alternate;
}
.omc-dots span:nth-child(2) { animation-delay: .15s; }
.omc-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes omcBounce { to { opacity: .3; transform: translateY(-4px); } }

.omc-input {
  display: flex; gap: 8px; padding: 12px 14px;
  border-top: 1px solid var(--gray-200); background: #fff;
}
.omc-input input {
  flex: 1; border: 1px solid var(--gray-200); border-radius: 8px; padding: 9px 12px;
  font-size: .84rem; outline: none; font-family: inherit; transition: border-color .2s;
}
.omc-input input:focus { border-color: var(--primary); }
.omc-input input:disabled { background: var(--gray-50); cursor: not-allowed; }
.omc-input button {
  width: 38px; height: 38px; border-radius: 8px; border: none; cursor: pointer;
  background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.omc-input button:hover { background: var(--primary-dark); }
.omc-input button:disabled { background: var(--gray-300); cursor: not-allowed; }

@media(max-width:480px) {
  #omap-chat { bottom: 16px; right: 16px; }
  .omc-panel { width: calc(100vw - 32px); right: 0; bottom: 72px; max-height: 70vh; }
  .omc-toggle { width: 56px; height: 56px; }
  /* Tooltip: anchor to the chat container, allow wrapping, cap width */
  .omc-tip {
    right: 68px;
    bottom: 12px;
    font-size: .78rem;
    white-space: normal;
    max-width: calc(100vw - 110px);
    padding: 9px 11px 9px 13px;
  }
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.omap-toast {
  position: fixed; top: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.omap-toast__item {
  pointer-events: auto;
  display: flex; align-items: flex-start; gap: 12px;
  min-width: 280px; max-width: 420px;
  padding: 14px 16px 14px 14px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 14px 40px -12px rgba(10,94,110,.28), 0 4px 12px rgba(10,94,110,.08);
  font-size: .85rem; line-height: 1.5; color: var(--gray-700);
  transform: translateX(calc(100% + 30px)); opacity: 0;
  transition: transform .4s cubic-bezier(0.16,1,0.3,1), opacity .3s ease;
}
.omap-toast__item.is-visible { transform: translateX(0); opacity: 1; }
.omap-toast__item--error { border-left-color: #d14848; }
.omap-toast__item--success { border-left-color: #12b886; }
.omap-toast__icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-soft); color: var(--primary-dark);
}
.omap-toast__item--error .omap-toast__icon { background: rgba(209,72,72,.12); color: #b33838; }
.omap-toast__item--success .omap-toast__icon { background: rgba(18,184,134,.14); color: #0b7a55; }
.omap-toast__msg { flex: 1; padding-top: 5px; }
.omap-toast__close {
  flex-shrink: 0; width: 24px; height: 24px;
  background: transparent; border: none; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: var(--gray-400);
  transition: color .2s ease;
}
.omap-toast__close:hover { color: var(--gray-700); }
@media (max-width: 560px) {
  .omap-toast { top: 16px; right: 12px; left: 12px; }
  .omap-toast__item { min-width: 0; max-width: none; }
}

/* Honeypot field — off-screen so humans never see it, but bots autofill it */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
