/* ============================================================
   Paisajismo Barrios Cerrados — Estilos de producción
   Paleta premium: verde bosque · beige · tierra · salvia
   Tipografías: Archivo (titulares) + Manrope (texto)
   ============================================================ */

:root {
  --verde: #173D2A;
  --verde-oscuro: #0F2B1D;
  --beige: #E8DDC8;
  --fondo: #FAF8F3;
  --tierra: #9A6B3F;
  --salvia-claro: #A8C08A;
  --salvia-medio: #6F7F4F;
  --texto: #1F2A24;
  --texto-2: #5B6158;
  --texto-3: #3A423B;
  --wa: #25D366;
  --wa-hover: #1EBE5A;
  --dorado: #E9C46A;
  --borde-input: #D8CFBF;
  --max: 1200px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--fondo);
  color: var(--texto);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img, video { max-width: 100%; }
a { color: var(--verde); }
a:hover { color: var(--verde-oscuro); }
input, select, textarea { box-sizing: border-box; font-family: inherit; }
h1, h2, h3 { font-family: 'Archivo', system-ui, sans-serif; }
.container { max-width: var(--max); margin: 0 auto; padding-left: clamp(14px,4vw,40px); padding-right: clamp(14px,4vw,40px); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ----- Barra de utilidad ----- */
.utilbar { background: var(--verde); color: #fff; }
.utilbar__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 8px clamp(14px,4vw,40px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 6px 20px; font-size: 12.5px; font-weight: 600;
}
.utilbar__zona { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); }
.utilbar__dot { width: 6px; height: 6px; background: var(--salvia-claro); border-radius: 50%; }
.utilbar__contacto { display: inline-flex; align-items: center; gap: 18px; }
.utilbar a { color: #fff; text-decoration: none; font-weight: 700; }

/* ----- Header ----- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige);
}
.header__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 10px clamp(14px,4vw,40px);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.header__logo { display: flex; align-items: center; text-decoration: none; }
.header__logo img { height: clamp(48px,9vw,64px); width: auto; display: block; mix-blend-mode: multiply; }
.nav-desktop { display: flex; align-items: center; gap: 20px; font-size: 15px; font-weight: 600; }
.nav-desktop a { color: var(--texto); text-decoration: none; }
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--verde); }
.nav-desktop a.is-active { font-weight: 700; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.btn-hamburguesa {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; background: var(--verde); border: none; border-radius: 10px;
  cursor: pointer; padding: 0 13px;
}
.btn-hamburguesa span { display: block; height: 2px; background: #fff; border-radius: 2px; }

/* ----- Botones ----- */
.btn { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; border-radius: 9px; cursor: pointer; font-weight: 800; border: none; text-align: center; }
.btn--verde { background: var(--verde); color: #fff; font-size: 15px; padding: 11px 20px; border-radius: 8px; font-weight: 700; white-space: nowrap; }
.btn--verde:hover { background: var(--verde-oscuro); color: #fff; }
.btn--blanco { background: #fff; color: var(--verde); font-size: 15px; padding: 15px 28px; }
.btn--blanco:hover { background: #F0EDE4; color: var(--verde-oscuro); }
.btn--outline { border: 1.5px solid rgba(255,255,255,.6); color: #fff; font-size: 15px; font-weight: 700; padding: 14px 26px; }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* ----- Menú mobile ----- */
.menu-mobile {
  position: fixed; inset: 0; z-index: 200; background: var(--fondo);
  display: none; flex-direction: column;
  padding: 18px clamp(16px,5vw,28px) 28px; overflow-y: auto;
}
.menu-mobile.is-open { display: flex; }
.menu-mobile__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.menu-mobile__top img { height: 52px; width: auto; mix-blend-mode: multiply; }
.menu-mobile__close {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--beige);
  background: #fff; color: var(--verde); font-size: 28px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.menu-mobile__nav { display: flex; flex-direction: column; font-family: 'Archivo', sans-serif; font-weight: 700; }
.menu-mobile__nav a {
  color: var(--texto); text-decoration: none; font-size: 20px;
  padding: 16px 4px; border-bottom: 1px solid var(--beige);
}
.menu-mobile__nav a.is-active { color: var(--verde); }
.menu-mobile__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.menu-mobile__cta a { text-align: center; text-decoration: none; border-radius: 10px; }
.menu-mobile__cta .primary { background: var(--verde); color: #fff; font-size: 16px; font-weight: 800; padding: 16px 20px; }
.menu-mobile__cta .secondary { border: 1.5px solid var(--verde); color: var(--verde); font-size: 16px; font-weight: 700; padding: 15px 20px; }

/* ----- Secciones genéricas ----- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(52px,8vw,88px) clamp(14px,4vw,40px); }
.section--tight { padding: clamp(40px,6vw,60px) clamp(14px,4vw,40px); }
.band { background: var(--verde); }
.band--beige { background: var(--beige); }
.band--blanco { background: #fff; border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
.band__inner { max-width: var(--max); margin: 0 auto; padding: clamp(52px,8vw,88px) clamp(14px,4vw,40px); }

.eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--tierra); margin: 0 0 12px; }
.eyebrow--salvia { color: var(--salvia-claro); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-weight: 800; font-size: clamp(30px,4.6vw,46px); line-height: 1.1; letter-spacing: -.02em; color: var(--verde); margin: 0 0 14px; text-wrap: balance; }
.section-head h2.claro { color: #fff; }
.section-head p { font-size: clamp(17px,1.2vw,18px); line-height: 1.7; color: var(--texto-2); margin: 0; text-wrap: pretty; }

/* ----- Hero home ----- */
.hero { position: relative; overflow: hidden; background: var(--verde); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media video {
  position: absolute; top: 50%; left: 50%;
  width: 116%; height: 116%; transform: translate(-52%,-52%); object-fit: cover;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,43,29,.46) 0%, rgba(15,43,29,.26) 45%, rgba(15,43,29,.1) 100%); }
.hero__inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  padding: clamp(40px,6vw,72px) clamp(14px,4vw,40px) clamp(48px,7vw,80px);
  display: grid; grid-template-columns: 1fr; gap: clamp(28px,4vw,44px); align-items: center;
}
.hero__copy { max-width: 640px; }
.badge-estrellas {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px; padding: 7px 14px; margin-bottom: 20px;
}
.badge-estrellas .stars { color: var(--dorado); font-size: 13px; letter-spacing: 2px; }
.badge-estrellas span:last-child { font-size: 12.5px; font-weight: 700; color: #fff; }
.hero h1 {
  font-weight: 900; font-size: clamp(34px,6vw,58px); line-height: 1.05; letter-spacing: -.02em;
  color: #fff; margin: 0 0 16px; text-wrap: balance; text-shadow: 0 6px 28px rgba(0,0,0,.45);
}
.hero__lead { font-size: clamp(17px,2vw,20px); line-height: 1.65; color: rgba(255,255,255,.9); margin: 0 0 26px; max-width: 52ch; text-wrap: pretty; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 20px; }
.hero__mini { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.8); margin: 0; letter-spacing: .01em; text-wrap: pretty; }

/* ----- Tarjeta formulario ----- */
.form-card { background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.28); padding: clamp(22px,3vw,30px); max-width: 480px; width: 100%; }
.form-card h2 { font-size: clamp(20px,3vw,24px); font-weight: 800; letter-spacing: -.01em; color: var(--verde); margin: 0 0 4px; }
.form-card__sub { font-size: 13.5px; color: var(--texto-2); margin: 0 0 18px; }
.form-fields { display: flex; flex-direction: column; gap: 12px; }
.form-fields input, .form-fields select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--borde-input); border-radius: 9px;
  font-size: 15.5px; color: var(--texto); background: #FAF9F5; outline-color: var(--verde);
}
.form-note { font-size: 11.5px; line-height: 1.5; color: var(--texto-2); margin: 0; text-align: center; }

/* ----- Trust bar ----- */
.trustbar { background: #fff; border-bottom: 1px solid var(--beige); }
.trustbar__inner { max-width: var(--max); margin: 0 auto; padding: 22px clamp(14px,4vw,40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item__icon { width: 40px; height: 40px; background: var(--beige); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--verde); font-size: 18px; flex-shrink: 0; }
.trust-item h3 { font-size: 14.5px; font-weight: 800; color: var(--verde); margin: 0; line-height: 1.15; }
.trust-item p { font-size: 12.5px; color: var(--texto-2); margin: 2px 0 0; line-height: 1.3; }

/* ----- Grid tarjetas servicios ----- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 16px; }
.card { background: #fff; border: 1px solid var(--beige); border-radius: 14px; padding: 28px 26px; }
.card__icon { width: 48px; height: 48px; background: var(--verde); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 18px; }
.card h3 { font-size: 18px; font-weight: 800; color: var(--texto); margin: 0 0 8px; text-wrap: balance; }
.card p { font-size: 16px; line-height: 1.65; color: var(--texto-2); margin: 0; text-wrap: pretty; }
.aviso-beige { margin-top: 20px; background: var(--beige); border-radius: 12px; padding: 18px 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; text-align: center; }
.aviso-beige p { font-size: 16px; font-weight: 600; color: var(--texto); margin: 0; }
.aviso-beige strong { color: var(--verde); }

/* ----- Proyectos ----- */
.proyecto { background: var(--fondo); border-radius: 16px; overflow: hidden; }
.proyecto__head { padding: 20px clamp(18px,3vw,26px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.proyecto__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.proyecto__meta h3 { font-size: clamp(19px,3vw,24px); font-weight: 800; letter-spacing: -.01em; color: var(--verde); margin: 0; }
.chip-zona { display: inline-flex; align-items: center; gap: 6px; background: var(--beige); color: var(--verde); font-size: 12.5px; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.proyecto__tipo { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--tierra); }
.btn-galeria { display: inline-flex; align-items: center; gap: 9px; background: var(--verde); color: #fff; border: none; cursor: pointer; font-size: 13.5px; font-weight: 800; padding: 11px 20px; border-radius: 8px; white-space: nowrap; }
.btn-galeria:hover { background: var(--verde-oscuro); }
.proyecto__thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 8px; padding: 0 clamp(18px,3vw,26px) clamp(18px,3vw,26px); }
.thumb { position: relative; padding: 0; border: none; background: none; cursor: pointer; display: block; border-radius: 10px; overflow: hidden; }
.thumb img { width: 100%; height: clamp(220px,26vw,270px); object-fit: cover; display: block; transition: transform .4s ease; }
.thumb:hover img { transform: scale(1.04); }
.thumb__etapa { position: absolute; top: 12px; left: 12px; background: rgba(15,43,29,.86); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; }
.thumb__more { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(15,43,29,.58); color: #fff; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; }

/* ----- Por qué elegirnos / razones ----- */
.razones { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 14px; }
.razon { display: flex; gap: 13px; align-items: flex-start; background: #fff; border: 1px solid var(--beige); border-radius: 12px; padding: 18px; }
.razon__check { width: 26px; height: 26px; background: var(--salvia-medio); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.razon h3 { font-size: 16px; font-weight: 800; color: var(--texto); margin: 0 0 4px; }
.razon p { font-size: 15px; line-height: 1.55; color: var(--texto-2); margin: 0; }

/* ----- Proceso / pasos ----- */
.pasos { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 16px; }
.paso { background: var(--fondo); border-radius: 14px; padding: 30px 26px; position: relative; }
.paso__num { font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 900; color: #fff; background: var(--verde); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.paso h3 { font-size: 18px; font-weight: 800; color: var(--texto); margin: 0 0 8px; }
.paso p { font-size: 16px; line-height: 1.65; color: var(--texto-2); margin: 0; text-wrap: pretty; }
.center-cta { text-align: center; margin-top: 32px; }

/* ----- Banda de guías (home) ----- */
.guias-band { background: #fff; border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
.guias-band__inner { max-width: 1080px; margin: 0 auto; padding: clamp(32px,4.5vw,48px) clamp(14px,4vw,40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: clamp(22px,3vw,44px); align-items: center; }
.guias-band h2 { font-weight: 800; font-size: clamp(23px,2.8vw,30px); line-height: 1.14; letter-spacing: -.015em; color: var(--verde); margin: 0 0 12px; text-wrap: balance; }
.guias-band__desc { font-size: 16px; line-height: 1.62; color: var(--texto-2); margin: 0 0 16px; max-width: 52ch; text-wrap: pretty; }
.link-flecha { display: inline-flex; align-items: center; gap: 7px; color: var(--salvia-medio); text-decoration: none; font-size: 14px; font-weight: 700; }
.link-flecha:hover { color: var(--verde); }
.guia-destacada { text-decoration: none; display: flex; align-items: center; gap: 16px; background: var(--fondo); border: 1px solid var(--beige); border-radius: 14px; padding: 14px 16px; transition: border-color .2s, background .2s; }
.guia-destacada:hover { border-color: var(--salvia-claro); background: #F6F2E9; }
.guia-destacada img { width: 92px; height: 92px; flex-shrink: 0; object-fit: cover; border-radius: 10px; display: block; }
.guia-destacada__tag { font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--tierra); margin: 0 0 5px; }
.guia-destacada h3 { font-size: 16px; font-weight: 800; line-height: 1.22; letter-spacing: -.01em; color: var(--verde); margin: 0 0 6px; text-wrap: balance; }
.guia-destacada p { font-size: 13.5px; line-height: 1.5; color: var(--texto-2); margin: 0 0 8px; text-wrap: pretty; }
.guia-destacada .leer { display: inline-flex; align-items: center; gap: 6px; color: var(--verde); font-size: 13.5px; font-weight: 800; }

/* ----- Reseñas ----- */
.valores { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.valor { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--beige); border-radius: 999px; padding: 10px 17px; font-size: 15px; font-weight: 700; color: var(--texto); }
.valor .v { color: var(--salvia-medio); font-weight: 800; }
.testimonios { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 16px; }
.testimonio { background: #fff; border: 1px solid var(--beige); border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.testimonio__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.testimonio__top .stars { color: var(--dorado); font-size: 15px; letter-spacing: 2px; }
.tag-ejemplo { background: var(--beige); color: var(--texto); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 5px; }
.testimonio p.quote { font-size: 16px; line-height: 1.65; color: var(--texto); margin: 0; text-wrap: pretty; }
.testimonio p.autor { font-size: 14px; font-weight: 700; color: var(--texto-2); margin: 0; }
.stars-big { color: var(--dorado); font-size: 22px; letter-spacing: 3px; }

/* ----- Zonas ----- */
.zonas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.zona-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--verde); color: #fff; font-size: 15.5px; font-weight: 700; padding: 11px 20px; border-radius: 999px; }

/* ----- FAQ ----- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq { background: #fff; border: 1px solid var(--beige); border-radius: 12px; overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; cursor: pointer; text-align: left; padding: 19px 22px; font-family: 'Manrope', sans-serif; font-size: 16.5px; font-weight: 700; color: var(--texto); }
.faq__q .icon { color: var(--tierra); font-size: 22px; font-weight: 500; line-height: 1; flex-shrink: 0; }
.faq__a { display: none; font-size: 16px; line-height: 1.7; color: var(--texto-2); margin: 0; padding: 0 22px 20px; max-width: 68ch; text-wrap: pretty; }
.faq.is-open .faq__a { display: block; }

/* ----- CTA final ----- */
.cta-final { background: var(--verde); }
.cta-final__inner { max-width: 1000px; margin: 0 auto; padding: clamp(56px,9vw,90px) clamp(14px,4vw,40px); text-align: center; }
.cta-final h2 { font-weight: 900; font-size: clamp(30px,5vw,50px); line-height: 1.08; letter-spacing: -.02em; color: #fff; margin: 0 0 16px; text-wrap: balance; }
.cta-final p { font-size: clamp(17px,1.2vw,18px); line-height: 1.7; color: rgba(255,255,255,.85); margin: 0 auto 30px; max-width: 48ch; text-wrap: pretty; }
.cta-final__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-final__mini { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.72); margin: 22px 0 0; }

/* ----- Footer ----- */
.footer { background: var(--fondo); border-top: 1px solid var(--beige); }
.footer__inner { max-width: var(--max); margin: 0 auto; padding: 40px clamp(14px,4vw,40px) 44px; }
.footer__brand { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
.footer__brand img { height: 78px; width: auto; display: block; mix-blend-mode: multiply; }
.footer__brand .datos { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; }
.footer__brand .datos a { color: var(--verde); text-decoration: none; font-weight: 700; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 26px; padding-top: 4px; padding-bottom: 28px; margin-bottom: 24px; border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
.footer__cols h3 { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--verde); margin: 0 0 14px; }
.footer__cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__cols a { font-size: 14.5px; color: var(--texto-2); text-decoration: none; font-weight: 600; }
.footer__cols a:hover { color: var(--verde); }
.footer__cols .soon { font-size: 14.5px; color: #A8A296; font-weight: 500; }
.footer__cols .soon em { font-style: normal; font-size: 11px; color: #B9B2A5; }
.footer__legal-text { font-size: 12px; line-height: 1.7; color: var(--texto-2); margin: 0; max-width: 82ch; }
.footer__legal-text + .footer__legal-text { margin-top: 8px; }
.footer__copy { font-size: 12px; color: var(--texto-2); margin: 14px 0 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 14px 0 0; }
.footer__links a { font-size: 12.5px; color: var(--texto-2); text-decoration: none; font-weight: 600; }
.footer__links a:hover { color: var(--verde); }

/* ----- Botón flotante WhatsApp ----- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 62px; height: 62px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,.45); text-decoration: none;
}
.wa-float:hover { background: var(--wa-hover); }

/* ----- Modal lead ----- */
.modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(15,43,29,.6); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay.is-open { display: flex; }
.modal { background: #fff; border-radius: 16px; width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto; padding: clamp(24px,4vw,32px); }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.modal__head h3 { font-size: 21px; font-weight: 800; letter-spacing: -.01em; color: var(--verde); margin: 0; }
.modal__close { background: none; border: none; cursor: pointer; font-size: 22px; line-height: 1; color: var(--texto-2); padding: 2px 4px; }
.modal__sub { font-size: 13.5px; color: var(--texto-2); margin: 0 0 20px; }

/* ----- Lightbox galería ----- */
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(10,26,18,.94); display: none; flex-direction: column; padding: clamp(12px,3vw,28px); }
.lightbox.is-open { display: flex; }
.lightbox__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.lightbox__title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lightbox__title h3 { font-weight: 800; font-size: clamp(18px,3vw,25px); color: #fff; margin: 0; letter-spacing: -.01em; }
.lightbox__etapa { background: rgba(255,255,255,.16); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; }
.lightbox__desc { font-size: 13.5px; color: rgba(255,255,255,.72); margin: 6px 0 0; }
.lightbox__close { flex-shrink: 0; background: rgba(255,255,255,.14); border: none; color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.lightbox__close:hover { background: rgba(255,255,255,.28); }
.lightbox__stage { position: relative; flex: 1; min-height: 0; display: flex; align-items: center; justify-content: center; }
.lightbox__stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 10px; display: block; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(255,255,255,.16); border: none; color: #fff; width: clamp(46px,6vw,58px); height: clamp(46px,6vw,58px); border-radius: 50%; cursor: pointer; font-size: 30px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.lightbox__nav:hover { background: rgba(255,255,255,.32); }
.lightbox__nav.prev { left: 0; }
.lightbox__nav.next { right: 0; }
.lightbox__foot { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 14px; }
.lightbox__counter { color: rgba(255,255,255,.82); font-size: 13.5px; font-weight: 700; letter-spacing: .04em; }
.lightbox__cta { background: #fff; color: var(--verde); text-decoration: none; font-size: 13px; font-weight: 800; padding: 9px 16px; border-radius: 8px; }
.lightbox__cta:hover { background: #F0EDE4; color: var(--verde-oscuro); }

/* ----- Breadcrumbs ----- */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.62); margin-bottom: 22px; }
.breadcrumbs a { color: rgba(255,255,255,.62); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .current { color: var(--salvia-claro); }

/* ----- Hero interno (hub, guía, legales) ----- */
.hero-interno { background: var(--verde); position: relative; overflow: hidden; }
.hero-interno__glow { position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(168,192,138,.16) 0%, rgba(168,192,138,0) 70%); border-radius: 50%; pointer-events: none; }
.hero-interno__inner { position: relative; max-width: 1000px; margin: 0 auto; padding: clamp(30px,5vw,58px) clamp(14px,4vw,40px) clamp(44px,7vw,72px); }
.hero-interno .badge-estrellas { margin-bottom: 20px; }
.hero-interno h1 { font-weight: 900; font-size: clamp(32px,5.4vw,54px); line-height: 1.06; letter-spacing: -.02em; color: #fff; margin: 0 0 18px; text-wrap: balance; text-shadow: 0 6px 28px rgba(0,0,0,.35); }
.hero-interno__lead { font-size: clamp(17px,2vw,20px); line-height: 1.65; color: rgba(255,255,255,.88); margin: 0; max-width: 62ch; text-wrap: pretty; }

/* ----- Hub guías: cards ----- */
.guias-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.guia-card { text-decoration: none; background: #fff; border: 1px solid var(--beige); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 12px 30px rgba(15,43,29,.08); transition: box-shadow .25s; }
.guia-card:hover { box-shadow: 0 18px 44px rgba(15,43,29,.16); }
.guia-card__media { position: relative; overflow: hidden; }
.guia-card__media img { width: 100%; height: 230px; object-fit: cover; display: block; }
.guia-card__badge { position: absolute; top: 12px; left: 12px; background: rgba(15,43,29,.86); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; }
.guia-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.guia-card__body h2 { font-size: clamp(20px,2.4vw,24px); font-weight: 800; letter-spacing: -.01em; color: var(--verde); margin: 0 0 12px; line-height: 1.15; text-wrap: balance; }
.guia-card__body p { font-size: 16px; line-height: 1.65; color: var(--texto-2); margin: 0 0 22px; text-wrap: pretty; }
.guia-card__leer { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--verde); font-size: 15px; font-weight: 800; }
.guia-soon { border: 1.5px dashed var(--borde-input); border-radius: 16px; padding: 30px 28px; display: flex; flex-direction: column; justify-content: center; gap: 10px; background: rgba(255,255,255,.4); }
.guia-soon h3 { font-size: 18px; font-weight: 800; color: var(--tierra); margin: 0; }
.guia-soon p { font-size: 15px; line-height: 1.6; color: #7A7568; margin: 0; text-wrap: pretty; }

/* ----- Guía: hero con figura ----- */
.guia-hero__inner { position: relative; max-width: var(--max); margin: 0 auto; padding: clamp(30px,5vw,58px) clamp(14px,4vw,40px) clamp(44px,7vw,74px); display: grid; grid-template-columns: 1fr; gap: clamp(30px,5vw,56px); align-items: center; }
.guia-hero__copy { max-width: 640px; }
.guia-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 0 0 22px; }
.guia-hero__mini { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.78); margin: 0; text-wrap: pretty; }
.guia-hero__fig { margin: 0; position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.12); }
.guia-hero__fig img { width: 100%; height: clamp(280px,42vw,460px); object-fit: cover; display: block; }
.guia-hero__fig figcaption { position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(15,43,29,.82); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; padding: 8px 14px; border-radius: 8px; }

/* ----- Guía: intro centrada ----- */
.intro-centro { max-width: 900px; margin: 0 auto; padding: clamp(52px,8vw,84px) clamp(14px,4vw,40px); text-align: center; }
.intro-centro h2 { font-weight: 800; font-size: clamp(28px,4vw,40px); line-height: 1.14; letter-spacing: -.02em; color: var(--verde); margin: 0 0 20px; text-wrap: balance; }
.intro-centro p { font-size: clamp(17px,1.4vw,19px); line-height: 1.7; color: #4A524B; margin: 0 auto; max-width: 62ch; text-wrap: pretty; }

/* ----- Guía: qué es (cards numeradas) ----- */
.que-es-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 16px; }
.que-es-card { background: var(--fondo); border: 1px solid var(--beige); border-radius: 14px; padding: 28px 24px; }
.que-es-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.que-es-card__icon { width: 46px; height: 46px; background: var(--verde); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.que-es-card__num { font-family: 'Archivo', sans-serif; font-size: 13px; font-weight: 900; color: var(--tierra); }
.que-es-card h3 { font-size: 17px; font-weight: 800; color: var(--texto); margin: 0 0 8px; text-wrap: balance; }
.que-es-card p { font-size: 15.5px; line-height: 1.62; color: var(--texto-2); margin: 0; text-wrap: pretty; }

/* ----- Guía: diferencias ----- */
.diferencias { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; }
.diferencia { background: #fff; border: 1px solid var(--beige); border-radius: 14px; padding: 30px 26px; border-top: 3px solid var(--verde); }
.diferencia h3 { font-size: 19px; font-weight: 800; color: var(--verde); margin: 0 0 10px; }
.diferencia p { font-size: 16px; line-height: 1.65; color: var(--texto-2); margin: 0; text-wrap: pretty; }
.aviso-destacado { margin-top: 20px; background: var(--beige); border-radius: 14px; padding: 22px 26px; display: flex; align-items: flex-start; gap: 14px; }
.aviso-destacado .mark { font-size: 20px; line-height: 1.2; flex-shrink: 0; }
.aviso-destacado p { font-size: 15px; line-height: 1.55; font-weight: 600; color: var(--texto); margin: 0; text-wrap: pretty; }
.aviso-destacado strong { color: var(--verde); }

/* ----- Guía: trabajos ----- */
.trabajos { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 14px; }
.trabajo { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--beige); border-radius: 12px; padding: 20px; }
.trabajo__icon { width: 30px; height: 30px; background: var(--salvia-medio); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.trabajo p { font-size: 16px; line-height: 1.5; font-weight: 600; color: var(--texto); margin: 0; text-wrap: pretty; }

/* ----- Guía: bloque presupuesto ----- */
.bloque-verde { background: var(--verde); border-radius: 20px; overflow: hidden; padding: clamp(32px,5vw,56px) clamp(24px,4vw,52px); }
.bloque-verde h2 { font-weight: 800; font-size: clamp(28px,3.8vw,40px); line-height: 1.12; letter-spacing: -.02em; color: #fff; margin: 0 0 18px; text-wrap: balance; }
.bloque-verde p { font-size: clamp(17px,2vw,19px); line-height: 1.7; color: rgba(255,255,255,.86); margin: 0 0 26px; max-width: 60ch; text-wrap: pretty; }

/* ----- Guía: proyectos relacionados ----- */
.proy-rel { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 18px; }
.proy-rel-card { text-decoration: none; background: var(--fondo); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 12px 30px rgba(15,43,29,.1); transition: box-shadow .25s; }
.proy-rel-card:hover { box-shadow: 0 18px 44px rgba(15,43,29,.18); }
.proy-rel-card__media { position: relative; overflow: hidden; }
.proy-rel-card__media img { width: 100%; height: 220px; object-fit: cover; display: block; }
.proy-rel-card__badge { position: absolute; top: 12px; left: 12px; background: rgba(15,43,29,.86); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 6px; }
.proy-rel-card__body { padding: 22px 22px 24px; }
.proy-rel-card__body h3 { font-size: 20px; font-weight: 800; letter-spacing: -.01em; color: var(--verde); margin: 0 0 6px; }
.proy-rel-card__zona { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--texto-2); margin: 0 0 16px; }
.proy-rel-card__leer { display: inline-flex; align-items: center; gap: 8px; color: var(--verde); font-size: 14px; font-weight: 800; }

/* ----- Páginas legales ----- */
.legal-hero__inner { position: relative; max-width: 860px; margin: 0 auto; padding: clamp(30px,5vw,54px) clamp(14px,4vw,40px) clamp(38px,6vw,62px); }
.legal-hero h1 { font-weight: 900; font-size: clamp(30px,5vw,50px); line-height: 1.08; letter-spacing: -.02em; color: #fff; margin: 0; text-wrap: balance; text-shadow: 0 6px 28px rgba(0,0,0,.32); }
.legal-content { max-width: 860px; margin: 0 auto; padding: clamp(40px,6vw,68px) clamp(14px,4vw,40px); }
.legal-content .fecha { font-size: 12.5px; font-weight: 700; color: var(--tierra); margin: 0 0 26px; }
.legal-content h2 { font-weight: 800; font-size: clamp(23px,2.6vw,31px); line-height: 1.16; letter-spacing: -.015em; color: var(--verde); margin: 40px 0 14px; }
.legal-content p { font-size: clamp(17px,1.2vw,18px); line-height: 1.75; color: var(--texto-3); margin: 0 0 16px; max-width: 72ch; text-wrap: pretty; }
.legal-content a { color: var(--verde); font-weight: 700; }
.legal-list { margin: 4px 0 20px; padding-left: 4px; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal-list li { position: relative; padding-left: 22px; font-size: clamp(16px,1.1vw,17px); line-height: 1.6; color: var(--texto-3); max-width: 70ch; }
.legal-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--salvia-medio); border-radius: 50%; }
.legal-list strong { color: var(--verde); }
.legal-caja { margin-top: 40px; padding: 24px 26px; background: var(--beige); border-radius: 14px; }
.legal-caja p.titulo { font-size: 15px; font-weight: 700; color: var(--verde); margin: 0 0 6px; }
.legal-caja p { font-size: clamp(16px,1.1vw,17px); line-height: 1.6; color: var(--texto-3); margin: 0; }

/* ----- 404 ----- */
.error-404 { max-width: 720px; margin: 0 auto; padding: clamp(60px,10vw,120px) clamp(14px,4vw,40px); text-align: center; }
.error-404 .code { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(72px,16vw,140px); line-height: 1; color: var(--verde); margin: 0; letter-spacing: -.03em; }
.error-404 h1 { font-weight: 800; font-size: clamp(26px,4vw,38px); color: var(--verde); margin: 8px 0 16px; text-wrap: balance; }
.error-404 p { font-size: clamp(17px,1.2vw,18px); line-height: 1.7; color: var(--texto-2); margin: 0 auto 30px; max-width: 52ch; }
.error-404__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn--verde-lg { background: var(--verde); color: #fff; font-size: 15px; padding: 15px 30px; }
.btn--verde-lg:hover { background: var(--verde-oscuro); color: #fff; }
.btn--outline-verde { border: 1.5px solid var(--verde); color: var(--verde); background: transparent; font-size: 15px; font-weight: 700; padding: 14px 28px; }
.btn--outline-verde:hover { background: var(--beige); }

/* ----- Banner de cookies ----- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--beige);
  box-shadow: 0 -8px 30px rgba(15,43,29,.12);
  display: none; padding: 20px clamp(14px,4vw,40px);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 24px; }
.cookie-banner__text { flex: 1 1 340px; min-width: 0; }
.cookie-banner__text h3 { font-size: 15px; font-weight: 800; color: var(--verde); margin: 0 0 4px; }
.cookie-banner__text p { font-size: 13.5px; line-height: 1.55; color: var(--texto-2); margin: 0; }
.cookie-banner__text a { color: var(--verde); font-weight: 700; }
.cookie-banner__btns { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cookie-btn { border-radius: 8px; font-size: 14px; font-weight: 700; padding: 11px 20px; cursor: pointer; border: none; text-decoration: none; white-space: nowrap; }
.cookie-btn--aceptar { background: var(--verde); color: #fff; }
.cookie-btn--aceptar:hover { background: var(--verde-oscuro); }
.cookie-btn--rechazar { background: var(--beige); color: var(--verde); }
.cookie-btn--rechazar:hover { background: #DFD3BA; }
.cookie-btn--config { background: transparent; color: var(--verde); border: 1.5px solid var(--borde-input); }
.cookie-btn--config:hover { border-color: var(--verde); }

/* Panel de configuración de cookies */
.cookie-config-overlay { position: fixed; inset: 0; z-index: 95; background: rgba(15,43,29,.6); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); display: none; align-items: center; justify-content: center; padding: 16px; }
.cookie-config-overlay.is-open { display: flex; }
.cookie-config { background: #fff; border-radius: 16px; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto; padding: clamp(24px,4vw,32px); }
.cookie-config__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.cookie-config__head h3 { font-size: 20px; font-weight: 800; color: var(--verde); margin: 0; }
.cookie-config__sub { font-size: 13.5px; color: var(--texto-2); margin: 0 0 20px; }
.cookie-opt { display: flex; align-items: flex-start; gap: 12px; padding: 16px 0; border-top: 1px solid var(--beige); }
.cookie-opt__info { flex: 1; }
.cookie-opt__info h4 { font-size: 15px; font-weight: 800; color: var(--texto); margin: 0 0 4px; }
.cookie-opt__info p { font-size: 13px; line-height: 1.5; color: var(--texto-2); margin: 0; }
.cookie-opt input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--verde); margin-top: 2px; cursor: pointer; }
.cookie-opt input:disabled { opacity: .5; cursor: not-allowed; }
.cookie-config__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* ============================================================
   Responsive — breakpoint de navegación 1040px
   ============================================================ */
@media (min-width: 700px) {
  .hero__inner { grid-template-columns: 1.2fr .8fr; }
  .guia-hero__inner { grid-template-columns: 1.1fr .9fr; }
}
@media (max-width: 1039px) {
  .nav-desktop { display: none; }
  .header__actions .btn--verde { display: none; }
  .btn-hamburguesa { display: flex; }
}
@media (min-width: 1040px) {
  .menu-mobile { display: none !important; }
}
@media (max-width: 560px) {
  .utilbar__contacto .mail { display: none; }
  .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .cookie-banner__btns { width: 100%; }
  .cookie-btn { flex: 1 1 auto; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .thumb img { transition: none; }
}
