/* ============================================================
   EmpleadasPorHoras.es — Hoja de estilos principal
   v2: nuevo modelo sin pago previo, 57 €, two-path hero
   Paleta: Blanco + Mint #2A9D8F | Tipografía: Inter
   ============================================================ */

/* ----------------------------------------------------------
   1. VARIABLES + RESET
   ---------------------------------------------------------- */
:root {
  --c-primary:      #2A9D8F;
  --c-primary-d:    #21867A;
  --c-primary-xd:   #196860;
  --c-primary-l:    #E8F5F3;
  --c-primary-xl:   #F2FBFA;
  --c-dark:         #264653;
  --c-text:         #111827;
  --c-text-s:       #4B5563;
  --c-text-m:       #9CA3AF;
  --c-border:       #E5E7EB;
  --c-border-l:     #F3F4F6;
  --c-white:        #FFFFFF;
  --c-bg:           #F9FAFB;
  --c-success:      #059669;
  --c-warning:      #D97706;

  --sh-sm:  0 1px 3px rgba(0,0,0,.08);
  --sh:     0 4px 10px rgba(0,0,0,.08);
  --sh-md:  0 6px 18px rgba(0,0,0,.10);
  --sh-lg:  0 12px 30px rgba(0,0,0,.12);

  --r-sm:   8px;
  --r:      12px;
  --r-lg:   18px;
  --r-xl:   28px;

  --font:   'Inter', system-ui, -apple-system, sans-serif;
  --tr:     all .2s ease;
  --tr-s:   all .35s ease;

  --max-w:  1140px;
  --pad-x:  1.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--c-primary-d); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

/* ----------------------------------------------------------
   2. TIPOGRAFÍA
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.45rem, 3vw, 2.125rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.125rem; color: var(--c-text-s); line-height: 1.7; }
.small { font-size: .875rem; }
.muted { color: var(--c-text-m); }
strong { font-weight: 600; }

/* ----------------------------------------------------------
   3. LAYOUT
   ---------------------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p  { color: var(--c-text-s); max-width: 600px; margin: 0 auto; font-size: 1.0625rem; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-primary-l);
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.bg-mint  { background: var(--c-primary-xl); }
.bg-dark  { background: var(--c-dark); }
.bg-white { background: var(--c-white); }
.bg-light { background: var(--c-bg); }

.bg-dark h2, .bg-dark h3, .bg-dark p, .bg-dark .lead { color: var(--c-white); }
.bg-dark .section-tag { background: rgba(255,255,255,.15); color: var(--c-white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }

.flex { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.align-start  { align-items: flex-start; }

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

/* ----------------------------------------------------------
   4. BOTONES
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: var(--tr);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.btn-primary:hover {
  background: var(--c-primary-d);
  border-color: var(--c-primary-d);
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(42,157,143,.35);
}
.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn-outline:hover {
  background: var(--c-primary-l);
  color: var(--c-primary-d);
}
.btn-white {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}
.btn-white:hover {
  background: var(--c-primary-xl);
  color: var(--c-primary-d);
}
.btn-dark {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}
.btn-dark:hover { opacity: .88; color: var(--c-white); }

.btn-lg  { padding: 1rem 2.25rem; font-size: 1.0625rem; border-radius: var(--r); }
.btn-sm  { padding: .55rem 1.125rem; font-size: .875rem; }
.btn-full { width: 100%; }

.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ----------------------------------------------------------
   5. HEADER + NAVEGACIÓN
   ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--c-primary);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-main   { font-size: 1rem; font-weight: 800; color: var(--c-text); letter-spacing: -.02em; }
.nav-logo-sub    { font-size: .6875rem; font-weight: 600; color: var(--c-primary); letter-spacing: .04em; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .125rem;
  flex: 1;
}
.nav-links a {
  padding: .5rem .875rem;
  color: var(--c-text-s);
  font-size: .9375rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--c-primary);
  background: var(--c-primary-xl);
}

/* CTA derecha */
.nav-actions { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: var(--tr);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 1rem var(--pad-x);
  gap: .25rem;
}
.mobile-nav a {
  display: block;
  padding: .75rem 1rem;
  color: var(--c-text-s);
  font-weight: 500;
  border-radius: var(--r-sm);
}
.mobile-nav a:hover { background: var(--c-primary-xl); color: var(--c-primary); }
.mobile-nav .mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--c-border);
  margin-top: .5rem;
}
.site-header.nav-open .mobile-nav { display: flex; }
.site-header.nav-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.site-header.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.nav-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ----------------------------------------------------------
   6. BANNER DE COOKIES
   ---------------------------------------------------------- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 1rem var(--pad-x);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,.15);
}
.cookie-banner p { color: rgba(255,255,255,.85); font-size: .875rem; margin: 0; }
.cookie-banner a { color: var(--c-primary); }
.cookie-actions { display: flex; gap: .625rem; flex-shrink: 0; }

/* ----------------------------------------------------------
   7. HÉROE — PÁGINA PRINCIPAL
   ---------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--c-primary-xl) 0%, var(--c-white) 60%);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(42,157,143,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-primary-l);
  color: var(--c-primary-d);
  font-size: .8125rem;
  font-weight: 600;
  padding: .35rem .875rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.hero-badge span { width: 6px; height: 6px; background: var(--c-primary); border-radius: 50%; }
.hero h1 { margin-bottom: 1.125rem; }
.hero .lead { margin-bottom: 2rem; max-width: 520px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  font-size: .875rem;
  color: var(--c-text-s);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .375rem;
}
.hero-trust-item svg { width: 16px; height: 16px; fill: var(--c-primary); flex-shrink: 0; }

.hero-visual {
  background: var(--c-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 2rem;
  width: 300px;
  flex-shrink: 0;
}
.hero-visual-title {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--c-text-m);
  margin-bottom: 1rem;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--c-border-l);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-icon {
  width: 40px; height: 40px;
  background: var(--c-primary-l);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 20px; height: 20px; fill: var(--c-primary); }
.hero-stat-num { font-size: 1.25rem; font-weight: 800; color: var(--c-text); line-height: 1; }
.hero-stat-label { font-size: .8125rem; color: var(--c-text-m); }

/* Héroe interior (páginas interiores) */
.page-hero {
  background: linear-gradient(135deg, var(--c-primary-xl) 0%, var(--c-white) 70%);
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--c-border);
}
.page-hero h1 { margin-bottom: .625rem; }
.page-hero .lead { max-width: 640px; }

/* ----------------------------------------------------------
   8. BARRA DE ZONAS / TRUST STRIP
   ---------------------------------------------------------- */
.zones-strip {
  background: var(--c-dark);
  padding: .875rem 0;
  overflow: hidden;
}
.zones-strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.zones-strip span {
  font-size: .8125rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.zones-strip a {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--c-primary);
  background: rgba(42,157,143,.18);
  padding: .3rem .75rem;
  border-radius: 50px;
  white-space: nowrap;
}
.zones-strip a:hover { background: rgba(42,157,143,.35); color: #7DDCD3; }
.zones-sep { color: rgba(255,255,255,.25) !important; font-weight: 300 !important; }

/* ----------------------------------------------------------
   9. CÓMO FUNCIONA — PASOS
   ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step {
  text-align: center;
  position: relative;
  padding: 2rem 1.5rem;
}
.step::before {
  content: '';
  position: absolute;
  top: 2.75rem; left: calc(50% + 2rem);
  width: calc(100% - 4rem);
  height: 2px;
  background: linear-gradient(to right, var(--c-primary-l), var(--c-primary-l));
  pointer-events: none;
}
.step:last-child::before { display: none; }
.step-num {
  width: 56px; height: 56px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p  { color: var(--c-text-s); font-size: .9375rem; }

/* Tracks (familias / trabajadoras) */
.track-tabs { display: flex; gap: 0; border-radius: var(--r); overflow: hidden; border: 1px solid var(--c-border); margin-bottom: 3rem; width: fit-content; }
.track-tab {
  padding: .75rem 2rem;
  font-weight: 600;
  font-size: .9375rem;
  background: var(--c-white);
  color: var(--c-text-s);
  cursor: pointer;
  border: none;
  transition: var(--tr);
}
.track-tab.active, .track-tab:focus-visible {
  background: var(--c-primary);
  color: var(--c-white);
  outline: none;
}

/* ----------------------------------------------------------
   10. TARJETAS DE SERVICIO
   ---------------------------------------------------------- */
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: var(--tr-s);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--c-primary-l);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.service-card-icon svg { width: 26px; height: 26px; fill: var(--c-primary); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.service-card p  { color: var(--c-text-s); font-size: .9375rem; }

/* ----------------------------------------------------------
   11. TARJETAS DE ZONA
   ---------------------------------------------------------- */
.zone-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  transition: var(--tr-s);
  display: flex;
  flex-direction: column;
  gap: .625rem;
  text-decoration: none;
}
.zone-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
  background: var(--c-primary-xl);
}
.zone-card-name { font-size: 1.0625rem; font-weight: 700; color: var(--c-text); }
.zone-card:hover .zone-card-name { color: var(--c-primary); }
.zone-card-desc { font-size: .875rem; color: var(--c-text-s); }
.zone-card-arrow { margin-top: auto; font-size: .875rem; font-weight: 600; color: var(--c-primary); }

/* ----------------------------------------------------------
   12. TARJETAS DE CONFIANZA / FEATURES
   ---------------------------------------------------------- */
.feature-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.feature {
  text-align: center;
  padding: 1.5rem 1rem;
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--c-primary-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--c-primary); }
.feature h4 { margin-bottom: .375rem; font-size: 1rem; }
.feature p  { color: var(--c-text-s); font-size: .875rem; }

/* Precio destacado */
.price-box {
  background: var(--c-white);
  border: 2px solid var(--c-primary);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.price-amount { font-size: 3.5rem; font-weight: 800; color: var(--c-primary); line-height: 1; }
.price-currency { font-size: 1.5rem; vertical-align: super; font-weight: 700; }
.price-label { color: var(--c-text-s); font-size: .9375rem; margin-top: .5rem; }
.price-features { list-style: none; text-align: left; margin-top: 1.75rem; display: flex; flex-direction: column; gap: .625rem; }
.price-features li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9375rem; }
.price-features li::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  background: var(--c-primary-l);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232A9D8F'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: .15rem;
}

/* ----------------------------------------------------------
   13. FAQ
   ---------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 760px; margin: 0 auto; }
details.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
}
details.faq-item[open] { border-color: var(--c-primary); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.375rem;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: var(--tr);
}
details.faq-item[open] summary::after { content: '−'; }
.faq-body { padding: 0 1.375rem 1.25rem; color: var(--c-text-s); font-size: .9375rem; }
.faq-body p { margin-bottom: .625rem; }

/* ----------------------------------------------------------
   14. FORMULARIOS
   ---------------------------------------------------------- */
.form-wrapper {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--sh);
}
.form-title { font-size: 1.375rem; font-weight: 700; margin-bottom: .5rem; }
.form-subtitle { color: var(--c-text-s); margin-bottom: 2rem; font-size: .9375rem; }
.form-section-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-primary);
  margin: 2rem 0 1rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid var(--c-primary-l);
}
.form-section-title:first-child { margin-top: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid-1 { grid-template-columns: 1fr; }
.col-span-2 { grid-column: span 2; }

.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text);
}
.form-group label .req { color: var(--c-primary); margin-left: .25rem; }
.form-group small { font-size: .8125rem; color: var(--c-text-m); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: .9375rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: var(--tr);
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(42,157,143,.15);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239CA3AF'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 120px; }

/* Checkboxes y radios personalizados */
.check-group, .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}
.check-item, .radio-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  font-size: .9375rem;
  user-select: none;
}
.check-item input[type="checkbox"],
.radio-item input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--c-primary);
  cursor: pointer;
  flex-shrink: 0;
}

/* Checkbox de consentimiento */
.consent-box {
  background: var(--c-primary-xl);
  border: 1px solid var(--c-primary-l);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.consent-box input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--c-primary);
  flex-shrink: 0;
  margin-top: .15rem;
}
.consent-box label { font-size: .875rem; cursor: pointer; }

.form-note {
  background: var(--c-primary-xl);
  border-left: 3px solid var(--c-primary);
  padding: .875rem 1.125rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .875rem;
  color: var(--c-text-s);
}
.form-note strong { color: var(--c-text); }

/* ----------------------------------------------------------
   15. AVISO LEGAL / PÁGINAS DE TEXTO
   ---------------------------------------------------------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.25rem; margin: 2.5rem 0 .75rem; color: var(--c-primary); }
.legal-content h3 { font-size: 1.05rem; margin: 1.75rem 0 .5rem; }
.legal-content p, .legal-content li { color: var(--c-text-s); font-size: .9375rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: .375rem; }
.legal-content .alert-box {
  background: #FEF9EC;
  border: 1px solid #F6C944;
  border-radius: var(--r-sm);
  padding: 1.125rem 1.375rem;
  margin: 2rem 0;
}
.legal-content .alert-box strong { color: #92400E; }
.legal-content .alert-box p { color: #78350F; margin: 0; }
.legal-updated { font-size: .8125rem; color: var(--c-text-m); margin-bottom: 2rem; }

/* ----------------------------------------------------------
   16. PÁGINA DE GRACIAS
   ---------------------------------------------------------- */
.thanks-hero {
  padding: 6rem 0;
  text-align: center;
}
.thanks-icon {
  width: 80px; height: 80px;
  background: var(--c-primary-l);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
}
.thanks-icon svg { width: 40px; height: 40px; fill: var(--c-primary); }
.thanks-hero h1 { margin-bottom: .875rem; }
.thanks-hero .lead { margin-bottom: 2rem; }

/* ----------------------------------------------------------
   17. BREADCRUMBS
   ---------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--c-text-m);
  padding: .875rem 0;
}
.breadcrumb a { color: var(--c-text-m); }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb .sep { color: var(--c-border); }
.breadcrumb .current { color: var(--c-text-s); font-weight: 500; }

/* ----------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--c-text);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo-main { color: var(--c-white); font-size: 1.0625rem; }
.footer-brand .nav-logo-icon { background: var(--c-primary); }
.footer-brand p { font-size: .875rem; margin-top: 1rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-col h5 {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: var(--c-primary); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8125rem;
}
.footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--c-primary); }

/* Disclaimer pie */
.footer-disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.05);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   19b. DOS CAMINOS — sección de elección de perfil
   ---------------------------------------------------------- */
.path-section { padding: 2.5rem 0; background: var(--c-bg); }
.path-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.path-card {
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex; flex-direction: column; gap: 1.125rem;
}
.path-card-family { background: var(--c-primary-xl); border: 2px solid var(--c-primary-l); }
.path-card-worker { background: var(--c-dark); border: 2px solid var(--c-dark); }
.path-card-worker h3, .path-card-worker p { color: var(--c-white); }
.path-card-worker p { opacity: .82; }
.path-card-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.path-card-family .path-card-label { color: var(--c-primary-d); }
.path-card-worker .path-card-label { color: rgba(255,255,255,.55); }
.path-card h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.path-card p  { font-size: .9375rem; }
.path-card .btn { align-self: flex-start; }

/* Barra flotante trabajadoras en móvil */
.worker-float {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--c-dark);
  padding: .875rem 1.25rem;
  align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}
.worker-float p { color: rgba(255,255,255,.85); font-size: .875rem; margin: 0; }

@media (max-width: 640px) {
  .path-cards { grid-template-columns: 1fr; }
  .worker-float { display: flex; }
  body { padding-bottom: 72px; }
}

/* ----------------------------------------------------------
   19. SECCIÓN CTA FINAL
   ---------------------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-xd) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--c-white);
}
.cta-section h2, .cta-section p { color: var(--c-white); }
.cta-section p { opacity: .88; font-size: 1.0625rem; margin-bottom: 2rem; }

/* ----------------------------------------------------------
   20. UTILIDADES
   ---------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 50px;
}
.badge-mint { background: var(--c-primary-l); color: var(--c-primary-d); }
.badge-dark { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.badge-green { background: #D1FAE5; color: #065F46; }
.divider { border: none; border-top: 1px solid var(--c-border); margin: 2rem 0; }
.w-full { width: 100%; }

/* ----------------------------------------------------------
   21. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 380px; }

  .steps { grid-template-columns: 1fr; }
  .step::before { display: none; }

  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .feature-strip { grid-template-columns: repeat(2,1fr); }

  .form-grid { grid-template-columns: 1fr; }
  .col-span-2 { grid-column: span 1; }
  .form-wrapper { padding: 1.75rem; }

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

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0; }

  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }

  .cta-group { flex-direction: column; align-items: flex-start; }
  .cta-group .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .price-box { padding: 1.75rem; }
  .price-amount { font-size: 2.75rem; }

  .hero-visual { display: none; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }

  .track-tabs { width: 100%; }
  .track-tab { flex: 1; padding: .75rem 1rem; text-align: center; }
}
