/* Aseovia Limpieza — hoja de estilos principal */

:root {
  --ink: #131C1B;
  --ink-soft: #41514F;
  --muted: #5C6B69;
  --line: #E2E8E6;
  --line-soft: #EEF2F1;
  --bg: #F6F8F7;
  --bg-alt: #EDF3F1;
  --panel-line: #D5E1DE;
  --teal: #12736B;
  --teal-dark: #0C4F4A;
  --teal-tint: #EAF2F0;
  --forest: #10201E;
  --forest-tint: #CFE3DF;
  --forest-tint-2: #A9C2BE;
  --gold: #B98A3E;
  --gold-light: #D8B171;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Karla', system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, -apple-system, "Segoe UI", sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

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

input, select, textarea, button { font-family: inherit; font-size: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes slideL { from { transform: translateX(100%); } to { transform: none; } }
.rise-in { animation: riseIn .5s ease both; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--forest);
  color: var(--forest-tint);
  font-size: 13px;
  padding: 9px 0;
}
.topbar .container {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
}
.topbar .topbar-right { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(246,248,247,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora'; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.brand-text { line-height: 1.05; }
.brand-name { font-family: 'Sora'; font-weight: 600; font-size: 17px; color: var(--ink); }
.brand-tag { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.main-nav a {
  padding: 8px 12px; border-radius: 8px; font-size: 15px;
  color: var(--ink-soft); text-decoration: none;
}
.main-nav a:hover { background: #EAF0EE; color: var(--ink-soft); text-decoration: none; }
.main-nav a.active { color: var(--teal); background: var(--teal-tint); }

.cart-btn {
  position: relative; display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--ink); color: #fff; cursor: pointer;
  font-size: 14px; font-weight: 600; border: none;
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--teal); text-decoration: none; }
.cart-count {
  min-width: 22px; height: 22px; border-radius: 999px;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; font-size: 12px; color: #fff;
}

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--panel-line);
  border-radius: 8px; width: 40px; height: 40px; cursor: pointer; flex-shrink: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 26px; border-radius: 12px;
  font-weight: 600; cursor: pointer; border: none; text-decoration: none;
  font-size: 15px; line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--teal); color: #fff; }
.btn-outline { background: #fff; border: 1px solid var(--panel-line); color: var(--ink); }
.btn-outline:hover { border-color: var(--teal); color: var(--ink); }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: var(--teal-tint); color: var(--teal); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,0.5); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-sm { padding: 11px 20px; border-radius: 10px; font-size: 14px; }
.btn-block { width: 100%; display: flex; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.hero .container {
  padding: 72px 24px 64px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--panel-line); font-size: 13px;
  color: var(--teal); font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: 54px; line-height: 1.04; font-weight: 600; }
.hero-lead {
  font-size: 19px; line-height: 1.65; color: var(--ink-soft);
  margin: 22px 0 30px; max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 38px; flex-wrap: wrap; }
.hero-stat-n { font-family: 'Sora'; font-size: 26px; font-weight: 600; color: var(--teal); }
.hero-stat-t { font-size: 13px; color: var(--muted); }

.media-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--panel-line); position: relative;
  background: var(--bg-alt);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-tall { height: 460px; }
.media-med { height: 380px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 64px 24px 20px; }
.section-tight { padding: 20px 24px 60px; }
.section-pad { padding: 60px 24px; }
.section-wide-pad { padding: 56px 24px 70px; }
.eyebrow {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px; margin-bottom: 30px;
}
h2.title-lg { font-size: 36px; font-weight: 600; }
.section-lead { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 0 34px; }

.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; transition: transform .2s, box-shadow .2s;
}
.card-link:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(16,32,30,0.08); text-decoration: none; }
.card-icon {
  width: 42px; height: 42px; border-radius: 11px; background: var(--teal-tint);
  color: var(--teal); display: flex; align-items: center; justify-content: center;
  font-family: 'Sora'; font-weight: 600; margin-bottom: 16px;
}
.card-icon-lg { width: 44px; height: 44px; border-radius: 12px; font-size: 15px; }
.card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.card-from { margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--ink); }

/* ---------- Quote widget ---------- */
.quote-panel {
  background: var(--forest); border-radius: 24px; padding: 46px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; color: var(--teal-tint);
}
.quote-panel h2 { color: #fff; font-size: 32px; font-weight: 600; }
.quote-panel > div:first-child p { color: var(--forest-tint-2); line-height: 1.65; margin-top: 16px; }
.quote-note {
  margin-top: 26px; padding: 18px; border-radius: 14px;
  background: rgba(255,255,255,0.06); font-size: 14px; line-height: 1.6; color: var(--forest-tint);
}
.quote-card { background: #fff; border-radius: 18px; padding: 28px; color: var(--ink); }
.quote-field-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.quote-range { width: 100%; accent-color: var(--teal); margin-bottom: 22px; }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.select-field, .text-field {
  width: 100%; padding: 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--panel-line); background: #fff; color: var(--ink);
}
.select-field { padding: 11px; }
.quote-result {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--line); gap: 16px; flex-wrap: wrap;
}
.quote-price { font-family: 'Sora'; font-size: 34px; font-weight: 600; color: var(--teal); }
.quote-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ---------- Steps ---------- */
.step-tag { font-family: 'Sora'; font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; }
.step-title { font-size: 18px; font-weight: 600; margin: 10px 0 8px; }

/* ---------- Reviews ---------- */
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 15.5px; line-height: 1.7; color: #2C3937; margin: 0 0 18px; }
.review-name { font-size: 14px; font-weight: 600; }
.review-city { font-size: 13px; color: var(--muted); }

/* ---------- Page heads ---------- */
.page-head { max-width: 1200px; margin: 0 auto; padding: 56px 24px 0; }
.page-title { font-size: 44px; font-weight: 600; }
.page-lead { font-size: 18px; line-height: 1.7; color: var(--ink-soft); max-width: 720px; margin: 18px 0 40px; }

/* ---------- Servicios ---------- */
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.service-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.service-head h3 { font-size: 21px; font-weight: 600; }
.service-card p.long { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.service-list { margin: 0 0 18px; padding-left: 20px; color: var(--muted); font-size: 14.5px; line-height: 1.9; }
.service-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap; gap: 12px; }
.service-price-label { font-size: 13px; color: var(--muted); }
.service-price { font-family: 'Sora'; font-size: 20px; font-weight: 600; color: var(--teal); }

/* ---------- Precios ---------- */
.plan-card { border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fff; }
.plan-card.dark { background: var(--forest); color: var(--teal-tint); border-color: var(--forest); }
.plan-badge { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--gold); }
.plan-card.dark .plan-badge { color: var(--gold-light); }
.plan-name { font-size: 24px; font-weight: 600; margin: 12px 0 6px; }
.plan-price { font-family: 'Sora'; font-size: 36px; font-weight: 600; margin: 10px 0 4px; }
.plan-unit { font-size: 13.5px; opacity: 0.75; margin-bottom: 20px; }
.plan-list { margin: 0 0 26px; padding-left: 20px; font-size: 14.5px; line-height: 1.95; }
.plan-cta { margin-top: auto; }
.extras-list { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.extra-row { display: flex; justify-content: space-between; gap: 20px; padding: 18px 24px; border-bottom: 1px solid var(--line-soft); }
.extra-row:last-child { border-bottom: none; }
.extra-name { font-weight: 600; font-size: 16px; }
.extra-desc { font-size: 14px; color: var(--muted); }
.extra-price { font-family: 'Sora'; font-weight: 600; white-space: nowrap; color: var(--teal); }

/* ---------- Tienda ---------- */
.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-pill {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--panel-line);
  background: #fff; color: var(--ink-soft); font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block;
}
.cat-pill.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.product-img { height: 180px; background: var(--bg-alt); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.product-name { font-size: 17px; font-weight: 600; margin: 8px 0; }
.product-desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: 'Sora'; font-size: 19px; font-weight: 600; }
.add-btn { padding: 10px 16px; border-radius: 10px; background: var(--teal); color: #fff; font-size: 13.5px; font-weight: 600; cursor: pointer; border: none; }
.add-btn:hover { background: var(--teal-dark); }
.perk-card { background: var(--bg-alt); border-radius: 16px; padding: 24px; }
.perk-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.perk-card p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); }

/* ---------- Cobertura ---------- */
.city-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.city-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.city-state { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.city-zones { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.city-eta { font-size: 13.5px; color: var(--teal); font-weight: 600; }

/* ---------- Nosotros ---------- */
.about-copy { max-width: 1000px; margin: 0 auto; padding: 56px 24px 70px; }
.about-copy p.lead { font-size: 18.5px; line-height: 1.75; color: var(--ink-soft); margin: 20px 0 18px; }
.about-copy p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 18px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.value-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.team-photo { height: 220px; border-radius: 16px; border: 1px solid var(--panel-line); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 600; margin-top: 12px; font-size: 16px; }
.team-role { font-size: 14px; color: var(--muted); }

/* ---------- Blog ---------- */
.blog-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px 70px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.post-card:hover { box-shadow: 0 14px 34px rgba(16,32,30,0.08); text-decoration: none; }
.post-thumb { height: 150px; background: var(--bg-alt); overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-tag { font-size: 12px; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.post-title { font-size: 18px; font-weight: 600; margin: 8px 0 10px; color: var(--ink); }
.post-lead { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.post-meta { margin-top: auto; font-size: 13px; color: var(--muted); }

.post-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 70px; }
.back-link { color: var(--teal); font-weight: 600; margin-bottom: 22px; display: inline-block; }
.post-hero-tag { font-size: 12.5px; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.post-h1 { font-size: 38px; font-weight: 600; margin: 12px 0 14px; }
.post-meta-line { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.post-cover { border-radius: 18px; margin-bottom: 32px; overflow: hidden; height: 300px; background: var(--bg-alt); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-content h2 { font-size: 24px; font-weight: 600; margin: 32px 0 12px; }
.post-content p { font-size: 17px; line-height: 1.8; color: #2C3937; margin: 0 0 18px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; margin: 0 auto; padding: 56px 24px 70px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q {
  padding: 20px 24px; display: flex; justify-content: space-between; gap: 16px;
  cursor: pointer; font-weight: 600; font-size: 16.5px; border: none; background: none;
  width: 100%; text-align: left; color: var(--ink); align-items: center;
}
.faq-q .sign { color: var(--teal); font-size: 20px; flex-shrink: 0; }
.faq-a { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- Contacto ---------- */
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px 70px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; display: block; }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.checkbox-row input { margin-top: 3px; accent-color: var(--teal); }
.success-box { background: var(--teal-tint); border: 1px solid #B9D3CF; border-radius: 16px; padding: 28px; }
.success-box h3 { font-size: 21px; font-weight: 600; color: var(--teal-dark); margin-bottom: 10px; }
.success-box p { font-size: 15.5px; line-height: 1.7; color: #2C3937; }
.contact-card { background: var(--forest); color: var(--teal-tint); border-radius: 18px; padding: 28px; }
.contact-card h3 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.contact-card .lines { font-size: 15px; line-height: 2; color: var(--forest-tint); }
.map-frame {
  height: 240px; border-radius: 18px; border: 1px solid var(--panel-line);
  background: var(--bg-alt); display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end; padding: 20px; gap: 8px;
}
.map-frame .addr { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.map-frame a { font-weight: 600; }

/* ---------- Legal ---------- */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-updated { font-size: 14px; color: var(--muted); margin-bottom: 34px; }
.legal-wrap h1 { font-size: 38px; font-weight: 600; margin: 12px 0 8px; }
.legal-wrap h2 { font-size: 22px; font-weight: 600; margin: 30px 0 12px; }
.legal-wrap p { font-size: 16.5px; line-height: 1.8; color: #2C3937; margin: 0 0 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--teal); }
.cta-band .container { padding: 52px 24px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.cta-band h2 { font-size: 30px; font-weight: 600; color: #fff; }
.cta-band p { color: #C9E3DF; font-size: 16.5px; margin: 10px 0 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: var(--forest-tint-2); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-mark { width: 32px; height: 32px; border-radius: 9px; background: var(--teal); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Sora'; font-weight: 700; }
.footer-brand-name { font-family: 'Sora'; font-weight: 600; color: #fff; font-size: 16px; }
.footer-desc { font-size: 14.5px; line-height: 1.7; margin: 0 0 16px; }
.footer-lines { font-size: 14px; line-height: 1.9; }
.footer-col-title { color: #fff; font-family: 'Sora'; font-weight: 600; margin-bottom: 14px; font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-links a { color: var(--forest-tint-2); }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  max-width: var(--container); margin: 34px auto 0; padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap;
  gap: 14px; justify-content: space-between; font-size: 13px;
}

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(16,32,30,0.5); border: none; padding: 0; cursor: pointer; }
.cart-drawer {
  position: relative; width: 420px; max-width: 100%; height: 100%; background: #fff;
  display: flex; flex-direction: column; animation: slideL .25s ease both;
  box-shadow: -20px 0 60px rgba(16,32,30,0.2);
}
.cart-head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-head h3 { font-size: 20px; font-weight: 600; }
.cart-close { cursor: pointer; color: var(--muted); font-size: 22px; line-height: 1; background: none; border: none; }
.cart-lines { flex: 1; overflow: auto; padding: 18px 24px; }
.cart-empty { padding: 40px 0; text-align: center; color: var(--muted); }
.cart-empty p { font-size: 15.5px; line-height: 1.7; }
.cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line-thumb { width: 66px; height: 66px; border-radius: 10px; background: var(--bg-alt); flex-shrink: 0; overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-weight: 600; font-size: 15px; }
.cart-line-price { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--panel-line); display: flex; align-items: center; justify-content: center; cursor: pointer; background: #fff; }
.cart-line-rm { margin-left: auto; font-size: 13px; color: #9AA7A5; cursor: pointer; background: none; border: none; }
.cart-line-total { font-family: 'Sora'; font-weight: 600; font-size: 15px; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); background: var(--bg); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted); margin-bottom: 6px; }
.cart-total-row { display: flex; justify-content: space-between; font-family: 'Sora'; font-size: 20px; font-weight: 600; margin-bottom: 14px; }
.cart-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; line-height: 1.55; }

/* ---------- Carrito / checkout page ---------- */
.checkout-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px 70px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
.checkout-lines { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 10px 24px; }
.checkout-summary { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; align-self: start; position: sticky; top: 100px; }

/* ---------- Cookies banner ---------- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 16px; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1100px; margin: 0 auto; background: #fff; border: 1px solid var(--panel-line);
  border-radius: 16px; padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between; box-shadow: 0 18px 44px rgba(16,32,30,0.16);
}
.cookie-inner p { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); max-width: 680px; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button, .cookie-actions a {
  padding: 11px 18px; border-radius: 10px; border: 1px solid var(--panel-line);
  font-size: 14px; font-weight: 600; cursor: pointer; background: #fff; color: var(--ink);
}
.cookie-actions .accept { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ---------- Avisos de formulario ---------- */
.form-error-notice {
  background: #FDEDED; border: 1px solid #F3B8B8; color: #8A2E2E;
  border-radius: 12px; padding: 14px 18px; font-size: 14.5px; display: none;
}
.form-error-notice.show { display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- 404 ---------- */
.error-wrap { max-width: 640px; margin: 0 auto; padding: 100px 24px; text-align: center; }
.error-code { font-family: 'Sora'; font-size: 90px; font-weight: 700; color: var(--teal); }

/* ---------- Skip link / a11y ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--teal); color: #fff;
  padding: 12px 18px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 44px; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding: 48px 20px 44px; }
  .hero h1 { font-size: 40px; }
  .media-tall { height: 320px; }
  .media-med { height: 280px; }
  .quote-panel { grid-template-columns: 1fr; padding: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}

@media (max-width: 720px) {
  .topbar { font-size: 12px; }
  .topbar .container { justify-content: center; text-align: center; }
  .main-nav { display: none; width: 100%; margin-left: 0; flex-direction: column; gap: 2px; order: 3; }
  .main-nav.open { display: flex; }
  .site-header .container { flex-wrap: wrap; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav a { padding: 12px 14px; width: 100%; }
  .hero h1 { font-size: 32px; }
  .page-title { font-size: 32px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  section, .section, .section-tight, .section-pad, .section-wide-pad { padding-left: 16px; padding-right: 16px; }
  .cart-drawer { width: 100%; }
  h1 { font-size: 30px !important; }
}
