/*
Theme Name: Termiatek
Theme URI: https://www.termiatek.es
Description: Tema personalizado para Termiatek - Instaladores de aerotermia en Madrid
Version: 1.0
Author: Termiatek
Text Domain: termiatek
*/

/* ── TOKENS ──────────────────────────────── */
:root {
  --ink:        #0F1A14;
  --surface:    #F7F5F0;
  --white:      #FFFFFF;
  --accent:     #1B6B3A;
  --accent-lt:  #D4EDE0;
  --warm:       #E8824A;
  --muted:      #6B7B72;
  --border:     #D8DDD9;
  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --r:          6px;
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--ff-body); background: var(--surface); color: var(--ink); font-size: 16px; line-height: 1.6; }
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; text-decoration: none; }

/* ── LAYOUT ──────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section    { padding: 80px 0; }

/* ── NAV ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 70px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-menu     { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-menu a   { font-size: .9rem; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav-menu a:hover { color: var(--accent); }
.nav-menu .nav-cta {
  background: var(--warm); color: var(--white) !important;
  padding: 10px 20px; border-radius: var(--r);
  font-weight: 600 !important; font-size: .88rem !important;
  transition: background .2s;
}
.nav-menu .nav-cta:hover { background: #c9692e !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: all .3s; }

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  background: var(--warm); color: var(--white);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 600; font-size: 1rem; border: none;
  cursor: pointer; transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: #c9692e; transform: translateY(-1px); color: var(--white); }

.btn-ghost {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 600; font-size: 1rem;
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer; transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.05); color: var(--white); }

.btn-white {
  background: var(--white); color: var(--accent);
  padding: 14px 28px; border-radius: var(--r);
  font-weight: 600; font-size: 1rem;
  display: inline-block; transition: background .2s;
}
.btn-white:hover { background: var(--accent-lt); color: var(--accent); }

/* ── SECTION HEADERS ─────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-eyebrow {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.12; letter-spacing: -.5px; margin-bottom: 16px;
}
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ── HERO ────────────────────────────────── */
.hero {
  background: var(--ink); color: var(--white);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(105deg, transparent, transparent 60px, rgba(27,107,58,.07) 60px, rgba(27,107,58,.07) 61px);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 60px; align-items: center; position: relative;
}
.hero-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-lt); background: rgba(27,107,58,.25);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -1px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--warm); }
.hero-sub {
  font-size: 1.1rem; color: #B0BDB5;
  max-width: 520px; margin-bottom: 40px; line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 36px 32px;
}
.stat-item    { margin-bottom: 28px; }
.stat-item:last-child { margin-bottom: 0; }
.stat-num {
  font-family: var(--ff-display); font-size: 3rem;
  font-weight: 800; color: var(--white); line-height: 1;
}
.stat-num span { color: var(--warm); }
.stat-label   { font-size: .85rem; color: #8FA497; margin-top: 4px; }
.stat-divider { height: 1px; background: rgba(255,255,255,.08); margin: 24px 0; }

/* ── TRUST BAR ───────────────────────────── */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 500; color: var(--muted); }
.trust-icon {
  width: 32px; height: 32px; background: var(--accent-lt);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--accent); font-size: 1rem;
}

/* ── SERVICES ────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px 28px;
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; background: var(--accent-lt);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.25rem; margin-bottom: 10px; letter-spacing: -.2px;
}
.service-card p { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ── PROCESO ─────────────────────────────── */
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .section-eyebrow { color: var(--accent-lt); }
.section-dark h2 { color: var(--white); }
.section-dark .section-header p { color: #8FA497; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; width: 80%;
  height: 1px; background: rgba(255,255,255,.1);
}
.step { padding: 0 20px; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: var(--ff-display);
  font-weight: 800; font-size: 1.3rem; color: var(--white);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.step p   { font-size: .88rem; color: #8FA497; line-height: 1.6; }

/* ── BENEFICIOS ──────────────────────────── */
.section-accent { background: var(--accent); color: var(--white); }
.benefits-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits-text h2 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05;
  letter-spacing: -.5px; margin-bottom: 20px;
}
.benefits-text p { font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 32px; }
.benefits-list  { display: flex; flex-direction: column; gap: 20px; }
.benefit-item {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 20px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item h4 { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.benefit-item p  { font-size: .88rem; color: rgba(255,255,255,.75); margin-bottom: 0; }

/* ── TESTIMONIOS ─────────────────────────── */
.section-white { background: var(--white); }
.testimonios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; }
.stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: .95rem; color: var(--ink); line-height: 1.65; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-lt); display: flex; align-items: center;
  justify-content: center; font-family: var(--ff-display);
  font-weight: 700; font-size: 1rem; color: var(--accent); flex-shrink: 0;
}
.author-name     { font-weight: 600; font-size: .9rem; }
.author-location { font-size: .8rem; color: var(--muted); }

/* ── FAQ ─────────────────────────────────── */
.faq-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.faq-item   { border-top: 1px solid var(--border); padding: 24px 0; }
.faq-item h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.faq-item p  { font-size: .93rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACTO ────────────────────────────── */
.section-ink   { background: var(--ink); color: var(--white); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contacto-info h2 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1; letter-spacing: -.5px; margin-bottom: 20px;
}
.contacto-info > p { color: #8FA497; font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px; background: rgba(27,107,58,.3);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .95rem; font-weight: 600; }
.contact-detail-text span   { font-size: .88rem; color: #8FA497; }
.form-card { background: var(--white); border-radius: 14px; padding: 40px 36px; }
.form-card h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin-bottom: 6px; }
.form-sub     { font-size: .88rem; color: var(--muted); margin-bottom: 28px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group   { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--r);
  font-family: var(--ff-body); font-size: .92rem;
  color: var(--ink); background: var(--surface);
  transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%; background: var(--warm); color: var(--white);
  border: none; padding: 14px; border-radius: var(--r);
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background .2s; margin-top: 8px;
}
.form-submit:hover { background: #c9692e; }
.form-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 12px; }

/* ── PÁGINA DE MUNICIPIO ─────────────────── */
.municipio-hero {
  background: var(--ink); color: var(--white);
  padding: 80px 0 64px; position: relative; overflow: hidden;
}
.municipio-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(105deg, transparent, transparent 60px, rgba(27,107,58,.07) 60px, rgba(27,107,58,.07) 61px);
  pointer-events: none;
}
.municipio-hero-inner { position: relative; max-width: 780px; }
.municipio-hero h1 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.06; letter-spacing: -.5px; margin-bottom: 20px;
}
.municipio-hero h1 em { font-style: normal; color: var(--warm); }
.municipio-hero p { font-size: 1.1rem; color: #8FA497; line-height: 1.7; margin-bottom: 32px; max-width: 620px; }
.municipio-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.municipio-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 56px;
}
.municipio-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 20px 24px;
}
.municipio-stat-num {
  font-family: var(--ff-display); font-weight: 800;
  font-size: 2.2rem; color: var(--warm); line-height: 1;
}
.municipio-stat-label { font-size: .82rem; color: #8FA497; margin-top: 4px; }

.municipio-content { padding: 72px 0 80px; }
.municipio-layout  { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.municipio-body h2 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.6rem; line-height: 1.2; letter-spacing: -.3px;
  margin: 40px 0 16px; color: var(--ink);
}
.municipio-body h2:first-child { margin-top: 0; }
.municipio-body p  { font-size: 1rem; line-height: 1.75; color: #2A3A30; margin-bottom: 20px; }
.municipio-body ul { margin: 0 0 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.municipio-body li { font-size: 1rem; line-height: 1.65; color: #2A3A30; }
.highlight-box {
  background: var(--accent-lt); border-left: 4px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0; padding: 20px 24px; margin: 28px 0;
}
.highlight-box p { color: var(--ink); margin: 0; font-weight: 500; }
.highlight-box strong { color: var(--accent); }
.inline-cta {
  background: var(--accent); color: var(--white);
  border-radius: 12px; padding: 32px; margin: 40px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.inline-cta-text h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 6px; }
.inline-cta-text p  { font-size: .9rem; color: rgba(255,255,255,.8); margin: 0; }
.inline-cta a {
  background: var(--white); color: var(--accent);
  padding: 12px 24px; border-radius: var(--r);
  font-weight: 600; font-size: .95rem;
  white-space: nowrap; flex-shrink: 0; transition: background .2s;
}
.inline-cta a:hover { background: var(--accent-lt); color: var(--accent); }

/* Municipio sidebar */
.municipio-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.sidebar-card h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.sidebar-card p  { font-size: .85rem; color: var(--muted); margin-bottom: 14px; line-height: 1.55; }
.sidebar-card-accent { background: var(--accent); border-color: transparent; }
.sidebar-card-accent h3 { color: var(--white); }
.sidebar-card-accent p  { color: rgba(255,255,255,.8); }
.sidebar-btn {
  display: block; text-align: center; padding: 12px;
  border-radius: var(--r); font-weight: 600; font-size: .9rem; transition: background .2s;
}
.sidebar-btn-warm { background: var(--warm); color: var(--white); }
.sidebar-btn-warm:hover { background: #c9692e; color: var(--white); }
.sidebar-btn-white { background: var(--white); color: var(--accent); }
.sidebar-btn-white:hover { background: var(--accent-lt); color: var(--accent); }
.municipios-nearby { list-style: none; display: flex; flex-direction: column; gap: 0; }
.municipios-nearby li { border-top: 1px solid var(--border); }
.municipios-nearby li:first-child { border-top: none; }
.municipios-nearby a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 0; font-size: .88rem; color: var(--ink);
  transition: color .2s;
}
.municipios-nearby a:hover { color: var(--accent); }

/* ── BLOG ────────────────────────────────── */
.blog-hero {
  background: var(--ink); color: var(--white);
  padding: 64px 0 56px; position: relative; overflow: hidden;
}
.blog-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(105deg, transparent, transparent 60px, rgba(27,107,58,.07) 60px, rgba(27,107,58,.07) 61px);
}
.blog-hero h1 {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08;
  letter-spacing: -.5px; margin-bottom: 16px; position: relative;
}
.blog-hero h1 em { font-style: normal; color: var(--warm); }
.blog-hero p { color: #8FA497; font-size: 1.05rem; position: relative; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; padding: 64px 0; }
.blog-grid   { display: flex; flex-direction: column; gap: 28px; }
.article-featured {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  transition: box-shadow .25s;
}
.article-featured:hover { box-shadow: 0 8px 40px rgba(0,0,0,.09); }
.featured-image {
  background: linear-gradient(135deg, var(--accent) 0%, #0d3d21 100%);
  min-height: 280px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.featured-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.article-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  display: grid; grid-template-columns: 200px 1fr;
  transition: box-shadow .25s, transform .25s;
}
.article-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.card-image {
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.card-image.green  { background: linear-gradient(135deg, #1B6B3A, #0d3d21); }
.card-image.blue   { background: linear-gradient(135deg, #1a4a6b, #0d2135); }
.card-image.orange { background: linear-gradient(135deg, #6b3a1a, #3d1f0d); }
.card-image.teal   { background: linear-gradient(135deg, #1a6b5a, #0d3530); }
.card-image.purple { background: linear-gradient(135deg, #4a1a6b, #250d3d); }
.card-body { padding: 24px; display: flex; flex-direction: column; }
.article-tag {
  display: inline-block; font-size: .72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent); background: var(--accent-lt);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 12px;
}
.article-tag.orange { color: var(--warm); background: #FDE8D8; }
.article-tag.blue   { color: #1a4a6b; background: #D4E5ED; }
.article-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.1rem; line-height: 1.25; letter-spacing: -.2px;
  margin-bottom: 10px; color: var(--ink);
}
.featured-body .article-title { font-size: 1.5rem; margin-bottom: 12px; }
.article-excerpt { font-size: .9rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.article-meta    { display: flex; align-items: center; gap: 16px; font-size: .78rem; color: var(--muted); margin-bottom: 16px; }
.read-more       { display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; font-weight: 600; color: var(--accent); transition: gap .2s; }
.read-more:hover { gap: 10px; color: var(--accent); }
.blog-sidebar    { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 80px; }
.sidebar-cta     { background: var(--accent); color: var(--white); border-radius: 12px; padding: 28px 24px; }
.sidebar-cta h3  { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
.sidebar-cta p   { font-size: .85rem; color: rgba(255,255,255,.8); margin-bottom: 18px; line-height: 1.55; }
.sidebar-cta a   { display: block; background: var(--white); color: var(--accent); padding: 12px; border-radius: var(--r); font-weight: 600; font-size: .9rem; text-align: center; transition: background .2s; }
.sidebar-cta a:hover { background: var(--accent-lt); color: var(--accent); }
.popular-list    { list-style: none; }
.popular-list li { border-top: 1px solid var(--border); }
.popular-list li:first-child { border-top: none; }
.popular-list a  { display: flex; align-items: flex-start; gap: 10px; padding: 12px 0; font-size: .88rem; font-weight: 500; color: var(--ink); line-height: 1.4; transition: color .2s; }
.popular-list a:hover { color: var(--accent); }
.popular-num     { font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; color: var(--accent-lt); flex-shrink: 0; }

/* ── BREADCRUMB ──────────────────────────── */
.breadcrumb      { font-size: .8rem; color: #8FA497; margin-bottom: 20px; position: relative; }
.breadcrumb a    { color: #8FA497; transition: color .2s; }
.breadcrumb a:hover { color: var(--accent-lt); }
.breadcrumb span { margin: 0 8px; }

/* ── FOOTER ──────────────────────────────── */
.site-footer { background: #080F0B; color: #5A6B60; padding: 48px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .7; }
.footer-brand p { font-size: .88rem; line-height: 1.65; max-width: 300px; }
.footer-col h4  {
  font-family: var(--ff-display); font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #8FA497; margin-bottom: 16px;
}
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a   { font-size: .88rem; color: #5A6B60; transition: color .2s; }
.footer-col a:hover { color: var(--accent-lt); }
.footer-bottom  {
  border-top: 1px solid rgba(255,255,255,.05); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p  { font-size: .8rem; }
.footer-legal     { display: flex; gap: 24px; }
.footer-legal a   { font-size: .8rem; color: #5A6B60; transition: color .2s; }
.footer-legal a:hover { color: var(--accent-lt); }

/* ── FLOATING PHONE ──────────────────────── */
.floating-phone {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: var(--warm); color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 24px rgba(232,130,74,.4);
  transition: transform .2s, box-shadow .2s;
}
.floating-phone:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(232,130,74,.55); color: var(--white); }

/* ── COOKIE BANNER ───────────────────────── */
#cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0F1A14; color: #fff;
  padding: 20px 24px; border-top: 2px solid #1B6B3A;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.cookie-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-text  { flex: 1; min-width: 260px; font-size: .88rem; line-height: 1.6; color: #B0BDB5; margin: 0; }
.cookie-text a { color: #D4EDE0; text-decoration: underline; }
.cookie-btns  { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-reject {
  background: transparent; color: #8FA497;
  border: 1px solid #3A4A40; padding: 9px 18px;
  border-radius: 6px; font-family: inherit; font-size: .85rem; cursor: pointer;
}
.cookie-accept {
  background: #1B6B3A; color: #fff; border: none;
  padding: 9px 18px; border-radius: 6px;
  font-family: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .hero-grid        { grid-template-columns: 1fr; }
  .hero-stat-card   { display: none; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .steps            { grid-template-columns: 1fr 1fr; }
  .steps::before    { display: none; }
  .benefits-grid    { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .faq-grid         { grid-template-columns: 1fr; }
  .contacto-grid    { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .nav-menu         { display: none; }
  .nav-toggle       { display: block; }
  .nav-menu.open    { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 16px; }
  .municipio-layout { grid-template-columns: 1fr; }
  .municipio-sidebar { display: none; }
  .municipio-stats  { grid-template-columns: 1fr 1fr; }
  .blog-layout      { grid-template-columns: 1fr; }
  .blog-sidebar     { display: none; }
  .article-featured { grid-template-columns: 1fr; }
  .article-card     { grid-template-columns: 1fr; }
  .card-image       { min-height: 160px; }
  .inline-cta       { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  section           { padding: 56px 0; }
  .services-grid    { grid-template-columns: 1fr; }
  .steps            { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .municipio-stats  { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
