/* ==========================================================================
   Limpiezas Illescas — style.css
   ========================================================================== */

:root {
  --green-dark: #2e7d32;
  --green-darker: #1b5e20;
  --green-light: #66bb6a;
  --green-pale: #E8F5E9;
  --white: #ffffff;
  --bg-soft: #F5F8F5;
  --dark: #16241a;
  --text: #24322a;
  --muted: #5b6b5d;
  --border: #DCE6DD;
  --whatsapp: #25D366;
  --radius: 12px;
  --radius-lg: 18px;
  --header-h: 72px;
  --shadow-sm: 0 2px 12px rgba(27, 94, 32, 0.07);
  --shadow-md: 0 10px 30px rgba(27, 94, 32, 0.12);
  --shadow-lg: 0 20px 46px rgba(27, 94, 32, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

section { padding: 84px 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--bg-soft); }

.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  background: var(--green-pale);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow svg { width: 14px; height: 14px; }
.section-head h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 800; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.01em; }
.section-head p { color: var(--muted); font-size: 1.03rem; }

h1, h2, h3, h4 { color: var(--dark); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }

/* ==========================================================================
   Botones — rectangulares redondeados, no píldora completa
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(46, 125, 50, 0.28);
}
.btn-primary:hover { background: var(--green-darker); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
}
.btn-outline:hover { background: var(--green-pale); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ==========================================================================
   Header — logo izquierda, nav horizontal, sin sidebar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 500;
}
.header-inner {
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 19px; height: 19px; color: var(--white); }
.logo .logo-a { color: var(--dark); }
.logo .logo-b { color: var(--green-dark); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { background: var(--green-pale); color: var(--green-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 11px 22px; font-size: 0.92rem; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--dark);
}
.menu-toggle svg { width: 24px; height: 24px; }
.menu-toggle:hover { background: var(--bg-soft); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* Mobile dropdown panel (no sidebar) */
.mobile-panel {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  z-index: 490;
}
.mobile-panel.open { max-height: 520px; }
.mobile-panel-inner { padding: 18px 24px 26px; display: flex; flex-direction: column; gap: 4px; }
.mobile-panel a.nav-link {
  padding: 13px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.mobile-panel a.nav-link:hover, .mobile-panel a.nav-link.active { background: var(--green-pale); color: var(--green-dark); }
.mobile-panel .btn { margin-top: 12px; }

.panel-overlay {
  position: fixed; inset: 0;
  background: rgba(22, 36, 26, 0.35);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 480;
}
.panel-overlay.open { opacity: 1; pointer-events: auto; }

body.panel-locked { overflow: hidden; }

/* ==========================================================================
   Hero partido (home)
   ========================================================================== */
.hero {
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: var(--bg-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy .eyebrow { background: var(--white); }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 18px; }
.hero-sub { color: var(--muted); font-size: 1.12rem; margin-bottom: 30px; max-width: 480px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 1.5rem; color: var(--green-dark); font-weight: 800; }
.hero-stat span { color: var(--muted); font-size: 0.86rem; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .icon-circle { width: 42px; height: 42px; }
.hero-badge strong { display: block; font-size: 0.95rem; color: var(--dark); }
.hero-badge span { color: var(--muted); font-size: 0.8rem; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-badge { left: 12px; bottom: -18px; }
}
@media (max-width: 600px) {
  .hero-media { max-width: 100%; }
  .hero-media img { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Page hero (páginas internas) — franja verde clara, sin foto
   ========================================================================== */
.page-hero {
  padding: calc(var(--header-h) + 46px) 0 56px;
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--bg-soft) 100%);
}
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 18px; font-size: 0.85rem; }
.breadcrumb a { color: var(--muted); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb span.sep { color: #A9BCA9; }
.breadcrumb span.current { color: var(--green-dark); font-weight: 700; }
.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 760px; margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 620px; }

/* ==========================================================================
   Icon circle
   ========================================================================== */
.icon-circle {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.icon-circle svg { width: 25px; height: 25px; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 24px;
}
.trust-row-item { display: flex; align-items: center; gap: 12px; }
.trust-row-item svg { width: 22px; height: 22px; color: var(--green-dark); flex-shrink: 0; }
.trust-row-item span { font-weight: 600; font-size: 0.9rem; color: var(--text); }
@media (max-width: 900px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Servicios — tarjetas con icono (sin foto) en home
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.service-card .icon-circle { margin-bottom: 18px; width: 58px; height: 58px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green-dark); font-weight: 700; font-size: 0.9rem; }
.service-card .card-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

/* ==========================================================================
   Detalle de servicio (páginas individuales) — imagen + texto
   ========================================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.service-detail.reverse .detail-media { order: 2; }
.detail-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-md); }
.detail-content .price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.detail-content h2 { font-size: 1.7rem; margin-bottom: 14px; }
.detail-content > p.lead { color: var(--muted); margin-bottom: 22px; font-size: 1.02rem; }
.detail-list { margin-bottom: 26px; display: grid; gap: 4px; }
.detail-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.97rem; border-bottom: 1px dashed var(--border); }
.detail-list li:last-child { border-bottom: none; }
.detail-list svg { width: 19px; height: 19px; color: var(--green-dark); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 860px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .detail-media { order: 0; }
}

/* ==========================================================================
   Proceso (3 pasos, con línea conectora)
   ========================================================================== */
.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-step::before {
  content: "";
  position: absolute;
  top: 27px; left: -50%;
  width: 100%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step:first-child::before { display: none; }
.process-num {
  width: 54px; height: 54px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--green-dark);
  background: var(--white);
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 700px) {
  .process-row { grid-template-columns: 1fr; gap: 36px; }
  .process-step::before { display: none; }
}

/* ==========================================================================
   Lista de precios (franjas horizontales, no tabla)
   ========================================================================== */
.price-list { max-width: 720px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--bg-soft); }
.price-row .price-name { font-weight: 700; color: var(--dark); font-size: 0.98rem; }
.price-row .price-name small { display: block; color: var(--muted); font-weight: 500; font-size: 0.82rem; margin-top: 2px; }
.price-row .price-value { font-weight: 800; color: var(--green-dark); font-size: 1.15rem; white-space: nowrap; flex-shrink: 0; }
.price-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 18px; }

@media (max-width: 560px) {
  .price-row { padding: 16px 18px; }
}

/* ==========================================================================
   Packs de vehículos
   ========================================================================== */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pack-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pack-card.highlight { border: 2px solid var(--green-dark); box-shadow: var(--shadow-md); }
.pack-tag {
  position: absolute;
  top: -13px; left: 26px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 999px;
}
.pack-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.pack-card .pack-desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 16px; }
.pack-card .pack-price { font-size: 2.1rem; font-weight: 800; color: var(--dark); margin-bottom: 18px; }
.pack-card .pack-price span { font-size: 0.95rem; color: var(--muted); font-weight: 600; }
.pack-list { margin-bottom: 22px; flex-grow: 1; display: grid; gap: 2px; }
.pack-list li { display: flex; align-items: flex-start; gap: 9px; padding: 6px 0; font-size: 0.9rem; }
.pack-list svg { width: 17px; height: 17px; color: var(--green-dark); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .packs-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ==========================================================================
   Zonas
   ========================================================================== */
.zone-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.zone-chip {
  background: var(--white);
  border: 1.5px solid var(--green-dark);
  color: var(--green-dark);
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.zone-chip:hover { background: var(--green-dark); color: var(--white); }

.zones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zone-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.zone-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.zone-card .icon-circle { margin-bottom: 14px; }
.zone-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.zone-card p { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; }

@media (max-width: 900px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .zones-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonios — carrusel con scroll-snap
   ========================================================================== */
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.testi-track::-webkit-scrollbar { height: 6px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.testi-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.testi-stars { display: flex; gap: 3px; color: #F5A623; margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; }
.testi-card p.quote { font-size: 0.95rem; color: var(--text); margin-bottom: 18px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.88rem;
}
.testi-person .name { font-weight: 700; font-size: 0.9rem; }
.testi-person .loc { color: var(--muted); font-size: 0.8rem; }

/* ==========================================================================
   FAQ — lista con divisores, sin tarjetas
   ========================================================================== */
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  text-align: left;
}
.faq-question svg { width: 20px; height: 20px; color: var(--green-dark); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 4px 22px; color: var(--muted); font-size: 0.95rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ==========================================================================
   CTA final — degradado verde
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--green-darker) 0%, var(--green-dark) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }
.cta-trust { display: flex; justify-content: center; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.cta-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.88rem; font-weight: 600; }
.cta-trust-item svg { width: 18px; height: 18px; color: var(--green-light); }

/* ==========================================================================
   WhatsApp float — cuadrado redondeado, no círculo
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 400;
}
.wa-float.wa-visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.wa-float svg { width: 28px; height: 28px; color: var(--white); }
.wa-float:hover { transform: scale(1.06); }

/* ==========================================================================
   Footer — 3 columnas
   ========================================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer-col .logo-mark { background: var(--green-light); }
.footer-col .logo .logo-a { color: var(--white); }
.footer-col .logo .logo-b { color: var(--green-light); }
.footer-col { }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 16px 0 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; }
.footer-social a:hover { background: var(--green-dark); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--green-light); }
.footer-nap-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-nap-item svg { width: 16px; height: 16px; color: var(--green-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ==========================================================================
   Cookies — barra completa inferior
   ========================================================================== */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 18px 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-bar p { font-size: 0.86rem; max-width: 640px; }
.cookie-bar p a { color: var(--green-light); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions button { padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 0.86rem; white-space: nowrap; }
.cookie-accept { background: var(--green-light); color: var(--dark); }
.cookie-accept:hover { background: var(--white); }
.cookie-necessary { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.3) !important; }
.cookie-necessary:hover { background: rgba(255,255,255,0.08); }

@media (max-width: 640px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}

/* ==========================================================================
   Formulario de contacto
   ========================================================================== */
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 46px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font-size: 0.96rem;
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green-dark); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-status { display: none; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 9px; font-weight: 600; font-size: 0.92rem; margin-bottom: 18px; }
.form-status.success { display: flex; background: var(--green-pale); color: var(--green-darker); }
.form-status.error { display: flex; background: #FDECEA; color: #B91C1C; }

.spinner { width: 17px; height: 17px; border: 2.5px solid rgba(255,255,255,0.4); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.submitting .spinner { display: inline-block; }
.submitting .btn-label { opacity: 0.85; }

.success-box { display: none; text-align: center; padding: 46px 20px; background: var(--green-pale); border-radius: var(--radius-lg); }
.success-box.show { display: block; }
.success-box .icon-circle { width: 60px; height: 60px; background: var(--white); margin: 0 auto 16px; }
.success-box h3 { margin-bottom: 6px; }
.success-box p { color: var(--muted); }

.contact-side { background: var(--dark); border-radius: var(--radius-lg); padding: 34px; color: rgba(255,255,255,0.85); }
.contact-side-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-side-item:last-child { margin-bottom: 0; }
.contact-side-item .icon-circle { background: rgba(102,187,106,0.16); color: var(--green-light); }
.contact-side-item h4 { color: var(--white); font-size: 0.96rem; margin-bottom: 4px; }
.contact-side-item p, .contact-side-item a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.contact-side-item a { color: var(--green-light); font-weight: 700; }
.contact-side-item ul { display: flex; flex-wrap: wrap; gap: 6px 8px; }
.contact-side-item ul li { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.contact-side-item ul li::after { content: ","; }
.contact-side-item ul li:last-child::after { content: "."; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 26px; }
}

/* ==========================================================================
   Legal
   ========================================================================== */
.legal-body { max-width: 800px; margin: 0 auto; }
.legal-body h2 { font-size: 1.25rem; margin: 34px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text); margin-bottom: 13px; font-size: 0.97rem; }
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body .updated { color: var(--muted); font-size: 0.87rem; margin-bottom: 36px; }

/* ==========================================================================
   Honeypot (visualmente oculto, técnica segura)
   ========================================================================== */
.hp-field { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ==========================================================================
   Skip link
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 9px;
  z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   fadeUp animation
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1.visible { transition-delay: 0.1s; }
.fade-up-delay-2.visible { transition-delay: 0.2s; }
.fade-up-delay-3.visible { transition-delay: 0.3s; }

/* ==========================================================================
   Responsive general
   ========================================================================== */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .cta-band { padding: 50px 0; }
  .packs-grid, .zones-grid { gap: 18px; }
}
