/* ==========================================================================
   WOODX SKIN · Reforma Bennis
   Base del kit "Woodx" con color secundario azul.
   Paleta y tipografías extraídas del CSS global del tema.
   ========================================================================== */

:root {
  /* Paleta Woodx */
  --wood:        #1565C0;  /* azul principal (botones)          */
  --wood-dark:   #0D47A1;  /* azul oscuro (hover)               */
  --wood-soft:   #1E88E5;  /* azul secundario                   */
  --wood-bright: #64B5F6;  /* azul claro sobre fondo oscuro     */
  --espresso:    #26211E;  /* casi negro cálido (títulos/dark)  */
  --text:        #3B3B3B;  /* texto cuerpo                      */
  --cream:       #F0EDDF;  /* fondo crema                       */
  --cream-light: #F5F3EC;  /* fondo crema claro                 */
  --white:       #FFFFFF;
  --line:        #E7E1D3;  /* bordes suaves                     */
  --pop:         #FF0025;  /* rojo de acento (uso puntual)      */

  --heading-font: "Rethink Sans", sans-serif;
  --body-font:    "Golos Text", sans-serif;

  --radius: 8px;
  --shadow-sm: 0 6px 20px rgba(38, 33, 30, 0.06);
  --shadow-md: 0 18px 40px rgba(38, 33, 30, 0.10);
  --shadow-lg: 0 30px 60px rgba(38, 33, 30, 0.14);
  --container: 1240px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--espresso);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--wood-dark); }

img { max-width: 100%; height: auto; }

p { margin-bottom: 1rem; }

::selection { background: var(--wood); color: #fff; }

.container { max-width: var(--container); }

/* Secciones */
.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-cream-light { background: var(--cream-light); }
.bg-espresso { background: var(--espresso); color: #d9d2c7; }
.bg-espresso h1,.bg-espresso h2,.bg-espresso h3,.bg-espresso h4 { color: #fff; }

/* Eyebrow (etiqueta superior con línea de madera) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wood-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--wood);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--wood-bright); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.section-lead { font-size: 1.08rem; color: var(--text); max-width: 620px; }
.text-center .eyebrow, .text-center .section-lead { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */
.btn-wood, .btn-espresso, .btn-outline-wood, .btn-light-wood {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.7,.3,1);
  text-align: center;
  line-height: 1;
}
.btn-wood { background: var(--wood); color: #fff; }
.btn-wood:hover { background: var(--wood-dark); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-espresso { background: var(--espresso); color: #fff; }
.btn-espresso:hover { background: var(--wood); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-outline-wood { background: transparent; color: var(--espresso); border-color: var(--wood); }
.btn-outline-wood:hover { background: var(--wood); color: #fff; transform: translateY(-3px); }

.btn-light-wood { background: #fff; color: var(--espresso); }
.btn-light-wood:hover { background: var(--wood); color: #fff; transform: translateY(-3px); }

.btn-outline-light { background: transparent; color:#fff; border:2px solid rgba(255,255,255,.6); display:inline-flex; align-items:center; gap:10px; font-family:var(--heading-font); font-weight:700; padding:15px 30px; border-radius:var(--radius); transition:all .3s ease; }
.btn-outline-light:hover { background:#fff; color:var(--espresso); }

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--espresso);
  color: #cabfae;
  font-size: .9rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.topbar .topbar-info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar .topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar iconify-icon { color: var(--wood-bright); }
.topbar a { color: #cabfae; }
.topbar a:hover { color: #fff; }
.topbar .topbar-social { display: flex; gap: 14px; align-items: center; }

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.woodx-nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 18px rgba(38,33,30,.06);
}
.woodx-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--espresso);
  line-height: 1;
}
.brand .brand-mark {
  width: 44px; height: 44px;
  background: var(--wood);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand .brand-mark iconify-icon { font-size: 26px; }
.brand .brand-text { display: flex; flex-direction: column; }
.brand .brand-text .l1 { font-size: 1.05rem; letter-spacing: .015em; }
.brand .brand-text .l2 { font-size: .72rem; font-weight: 600; letter-spacing: .22em; color: var(--wood-dark); font-family: var(--body-font); }

.woodx-menu { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.woodx-menu a {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--espresso);
  position: relative;
  padding: 6px 0;
}
.woodx-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--wood); transition: width .3s ease;
}
.woodx-menu a:hover, .woodx-menu a.active { color: var(--wood-dark); }
.woodx-menu a:hover::after, .woodx-menu a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: var(--cream);
  border: none; border-radius: 8px;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  color: var(--espresso); cursor: pointer;
}
.nav-toggle iconify-icon { font-size: 26px; }

/* Menú móvil */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto;
  width: min(330px, 86vw);
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .35s ease, visibility .35s ease;
  box-shadow: -20px 0 60px rgba(0,0,0,.2);
  padding: 28px 26px;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu .close-btn { align-self: flex-end; background: none; border: none; font-size: 30px; color: var(--espresso); cursor: pointer; }
.mobile-menu ul { list-style: none; margin: 24px 0 0; padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 16px 4px; font-family: var(--heading-font); font-weight: 600; font-size: 1.15rem; color: var(--espresso); }
.mobile-menu .btn-wood { margin-top: 26px; justify-content: center; color: #fff; }
.menu-backdrop { position: fixed; inset: 0; background: rgba(38,33,30,.55); z-index: 1040; opacity: 0; visibility: hidden; transition: .35s; }
.menu-backdrop.open { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
/* Estilo Woodx: banner con imagen de fondo a pantalla completa y texto encima */
.hero {
  position: relative;
  background: url("images/hero-reformas-bennis.png") center center / cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 90px 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,33,30,.72) 0%, rgba(38,33,30,.62) 45%, rgba(38,33,30,.85) 100%);
}
.hero .container { position: relative; z-index: 2; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: 50px;
  padding: 9px 20px; font-family: var(--heading-font); font-weight: 600;
  font-size: .92rem; color: #fff; backdrop-filter: blur(6px);
  margin-bottom: 26px;
}
.hero-pill .stars { color: var(--wood-bright); display: inline-flex; align-items: center; }

.hero-title {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 800; color: #fff;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.28);
}
.hero-title .accent { color: var(--wood-bright); text-shadow: 0 2px 16px rgba(0,0,0,.55); }
.hero-title .owner-name {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 650;
  letter-spacing: .22em;
  line-height: 1.25;
}
.hero-desc { font-size: 1.14rem; color: #ffffff; max-width: 660px; margin: 0 auto 32px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.hero-phone { display: inline-flex; align-items: center; gap: 13px; }
.hero-phone .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--wood); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-phone .ph-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: #aecbf0; font-weight: 600; text-align: left; }
.hero-phone .ph-num { font-family: var(--heading-font); font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1.1; }

/* Badges flotantes sobre el banner */
.hero-badge {
  position: absolute; z-index: 2; background: #fff; border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge.left  { left: 4%; bottom: 9%; }
.hero-badge.right { right: 4%; bottom: 18%; }
.hero-badge .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--cream); color: var(--wood-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge .ic iconify-icon { font-size: 26px; }
.hero-badge .num { font-family: var(--heading-font); font-weight: 800; font-size: 2rem; color: var(--wood); line-height: 1; }
.hero-badge .stars { color: var(--wood); font-size: .95rem; display: block; line-height: 1; margin-bottom: 4px; }
.hero-badge .lbl { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--espresso); line-height: 1.25; }

/* Tira de características bajo el hero */
.hero-strip { background: var(--espresso); }
.hero-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; padding: 26px 0; }
.hero-strip .item { display: flex; align-items: center; gap: 14px; color: #ddd5c8; }
.hero-strip .item iconify-icon { font-size: 34px; color: var(--wood-bright); }
.hero-strip .item .t { font-family: var(--heading-font); font-weight: 700; color: #fff; font-size: 1.02rem; line-height: 1.2; }
.hero-strip .item .s { font-size: .85rem; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-img-wrap { position: relative; padding-right: 18px; }
.about-img-wrap img { border-radius: 16px; box-shadow: var(--shadow-md); width: 100%; }
.about-img-wrap .exp-badge {
  position: absolute; right: -10px; bottom: -22px;
  background: var(--wood); color: #fff;
  border-radius: 14px; padding: 20px 26px; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-wrap .exp-badge .n { font-family: var(--heading-font); font-weight: 800; font-size: 2.1rem; line-height: 1; }
.about-img-wrap .exp-badge .t { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }

.feature-list { list-style: none; padding: 0; margin: 26px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-weight: 500; color: var(--espresso); }
.feature-list .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(21,101,192,.16); color: var(--wood-dark);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feature-list .tick iconify-icon { font-size: 16px; }

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .img { height: 210px; overflow: hidden; position: relative; }
.service-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .img img { transform: scale(1.08); }
.service-card .img .num {
  position: absolute; top: 14px; left: 14px;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(38,33,30,.78); color: var(--wood-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font); font-weight: 800;
}
.service-card .body { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.service-card h3 { font-size: 1.32rem; font-weight: 800; margin-bottom: 14px; }
.service-card .svc-list { list-style: none; padding: 0; margin: 0 0 22px; }
.service-card .svc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--text); margin-bottom: 9px; }
.service-card .svc-list iconify-icon { color: var(--wood); font-size: 18px; flex-shrink: 0; margin-top: 3px; }
.service-card .svc-cta {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--heading-font); font-weight: 700; color: var(--espresso);
}
.service-card .svc-cta iconify-icon { transition: transform .3s ease; }
.service-card:hover .svc-cta { color: var(--wood-dark); }
.service-card:hover .svc-cta iconify-icon { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Gallery / proyectos
   -------------------------------------------------------------------------- */
.gallery-item {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 290px; display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(38,33,30,.82) 0%, rgba(38,33,30,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 1; transition: .4s ease;
}
.gallery-item .caption .tag { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--wood); font-weight: 700; }
.gallery-item .caption .t { font-family: var(--heading-font); font-weight: 700; color: #fff; font-size: 1.25rem; }
.gallery-item .caption .plus {
  position: absolute; top: 18px; right: 18px;
  width: 42px; height: 42px; border-radius: 50%; background: var(--wood); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.6); transition: .35s ease;
}
.gallery-item:hover .caption .plus { opacity: 1; transform: scale(1); }

/* --------------------------------------------------------------------------
   CTA band (Convierte tus ideas...)
   -------------------------------------------------------------------------- */
.cta-band { background: var(--espresso); color: #d9d2c7; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,.22), transparent 70%);
}
.cta-benefit { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.cta-benefit .ic {
  flex-shrink: 0; width: 54px; height: 54px; border-radius: 12px;
  background: rgba(21,101,192,.16); color: var(--wood-bright);
  display: flex; align-items: center; justify-content: center;
}
.cta-benefit .ic iconify-icon { font-size: 28px; }
.cta-benefit h4 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.cta-benefit p { margin: 0; font-size: .95rem; }

/* --------------------------------------------------------------------------
   Why choose us
   -------------------------------------------------------------------------- */
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 28px; height: 100%; transition: all .35s ease;
}
.why-card:hover { background: var(--espresso); border-color: transparent; transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card .ic {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--cream); color: var(--wood-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: all .35s ease;
}
.why-card .ic iconify-icon { font-size: 34px; }
.why-card:hover .ic { background: var(--wood); color: #fff; }
.why-card h3 { font-size: 1.22rem; margin-bottom: 12px; transition: color .35s ease; }
.why-card p { font-size: .96rem; margin: 0; transition: color .35s ease; }
.why-card:hover h3 { color: #fff; }
.why-card:hover p { color: #c9bfb0; }

.rating-card {
  background: var(--wood); color: #fff; border-radius: 16px;
  padding: 34px 28px; height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.rating-card .stars { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.rating-card .big { font-family: var(--heading-font); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.rating-card .lbl { font-weight: 600; }

/* --------------------------------------------------------------------------
   Testimonios
   -------------------------------------------------------------------------- */
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 36px 32px; height: 100%; position: relative;
}
.testi-card .quote-ic { color: var(--wood); font-size: 46px; opacity: .35; line-height: 1; }
.testi-card .stars { color: var(--wood); margin: 8px 0 16px; font-size: 1.1rem; }
.testi-card p { color: var(--text); font-size: 1.04rem; }
.testi-card .who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testi-card .who .av {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--cream); color: var(--wood-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font); font-weight: 800; font-size: 1.2rem;
}
.testi-card .who .name { font-family: var(--heading-font); font-weight: 700; color: var(--espresso); line-height: 1.1; }
.testi-card .who .loc { font-size: .85rem; color: var(--wood-dark); }

.testimonial-swiper { padding-bottom: 56px !important; }
.testimonial-swiper .swiper-pagination-bullet { background: var(--wood); opacity: .3; }
.testimonial-swiper .swiper-pagination-bullet-active { opacity: 1; width: 26px; border-radius: 5px; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 26px; font-family: var(--heading-font); font-weight: 700;
  font-size: 1.08rem; color: var(--espresso); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q iconify-icon { color: var(--wood); font-size: 24px; transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q iconify-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 26px 24px; color: var(--text); }
.faq-item.open .faq-a { max-height: 320px; }

/* --------------------------------------------------------------------------
   Contact CTA (fondo imagen)
   -------------------------------------------------------------------------- */
.contact-cta {
  position: relative; background-size: cover; background-position: center;
  padding: 120px 0; text-align: center; color: #fff;
}
.contact-cta::before { content: ""; position: absolute; inset: 0; background: rgba(38,33,30,.78); }
.contact-cta .container { position: relative; z-index: 1; }
.contact-cta h2 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; margin-bottom: 18px; }
.contact-cta p { font-size: 1.15rem; color: #e7e0d4; max-width: 620px; margin: 0 auto 34px; }
.contact-cta .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.woodx-footer { background: var(--espresso); color: #b6ab9b; padding: 80px 0 0; }
.woodx-footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 22px; }
.woodx-footer .brand { color: #fff; margin-bottom: 20px; }
.woodx-footer .brand .brand-text .l1 { color: #fff; }
.woodx-footer p { color: #b6ab9b; }
.woodx-footer ul { list-style: none; padding: 0; margin: 0; }
.woodx-footer ul li { margin-bottom: 11px; }
.woodx-footer ul a { color: #b6ab9b; }
.woodx-footer ul a:hover { color: var(--wood-bright); padding-left: 5px; }
.woodx-footer .foot-contact li { display: flex; align-items: flex-start; gap: 12px; }
.woodx-footer .foot-contact iconify-icon { color: var(--wood-bright); font-size: 20px; margin-top: 3px; flex-shrink: 0; }
.woodx-footer .foot-social { display: flex; gap: 12px; margin-top: 22px; }
.woodx-footer .foot-social a {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; color: #cabfae;
}
.woodx-footer .foot-social a:hover { background: var(--wood); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 64px; padding: 24px 0; text-align: center; font-size: .9rem; color: #9d9384; }

/* --------------------------------------------------------------------------
   WhatsApp flotante
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1060;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wood); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(21,101,192,.5);
  transition: all .3s ease;
  animation: wa-pulse 2.4s infinite;
}
.whatsapp-float:hover { background: var(--espresso); transform: scale(1.1); color: #fff; }
.whatsapp-float .wa-icon {
  width: 38px;
  height: 38px;
  fill: #fff;
  display: block;
}
.whatsapp-float iconify-icon {
  width: 38px;
  height: 38px;
  font-size: 38px;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(21,101,192,.55); }
  70% { box-shadow: 0 0 0 18px rgba(21,101,192,0); }
  100% { box-shadow: 0 0 0 0 rgba(21,101,192,0); }
}

/* --------------------------------------------------------------------------
   AOS fallback (por si AOS no carga)
   -------------------------------------------------------------------------- */
[data-aos] { opacity: 1; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .woodx-menu { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 70px 0; }
  .hero { min-height: auto; padding: 80px 0; }
  .hero-badge { display: none; }
  .about-img-wrap { padding-right: 0; margin-bottom: 48px; }
  .hero-strip .container { justify-content: flex-start; gap: 28px; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .topbar .topbar-info { gap: 16px; font-size: .82rem; }
  .topbar .topbar-social { display: none; }
  .hero { background-position: 82% center !important; }
  .hero-actions { gap: 14px; }
  .hero-actions .btn-wood { width: 100%; justify-content: center; }
  .hero-phone { width: 100%; justify-content: center; }
  .contact-cta { padding: 80px 0; }
}

@media (max-width: 480px) {
  .topbar .topbar-info span:nth-child(2) { display: none; }
}

/* --------------------------------------------------------------------------
   SEO local: páginas de zonas y directorio de municipios
   -------------------------------------------------------------------------- */
.zones-section { background: var(--cream-light); }
.zones-showcase { display: grid; grid-template-columns: minmax(290px, .75fr) minmax(0, 1.55fr); border-radius: 22px; overflow: hidden; box-shadow: 0 22px 55px rgba(38,33,30,.11); }
.zones-intro { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(34px, 5vw, 64px); background: var(--espresso); color: #fff; }
.zones-intro h2 { color: #fff; font-size: clamp(2rem, 3.5vw, 3.25rem); margin: 12px 0 18px; }
.zones-intro p { color: #d8cfc2; font-size: 1.05rem; }
.zones-count { display: flex; align-items: center; gap: 14px; margin: 16px 0 30px; }
.zones-count strong { color: var(--wood-bright); font-size: 3rem; line-height: 1; }
.zones-count span { max-width: 170px; color: #fff; line-height: 1.3; }
.zones-directory { padding: clamp(28px, 4vw, 52px); background: #fff; }
.zone-group + .zone-group { padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--line); }
.zone-group h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 1.12rem; color: var(--espresso); }
.zone-group h3 span { color: var(--wood); font-size: .78rem; letter-spacing: .14em; }
.zone-mini-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 22px; }
.zone-mini-grid a { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 44px; padding: 9px 0; border-bottom: 1px solid #eee9e2; color: var(--espresso); font-weight: 650; line-height: 1.25; }
.zone-mini-grid a b { color: var(--wood); transition: transform .2s ease; }
.zone-mini-grid a:hover { color: var(--wood-dark); }
.zone-mini-grid a:hover b { transform: translateX(4px); }
.zone-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.zone-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 94px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--espresso);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.zone-link span { color: var(--text); font-size: .9rem; }
.zone-link:hover { color: var(--wood-dark); border-color: var(--wood); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(38,33,30,.08); }
.local-hero { position: relative; min-height: 620px; padding: 70px 0 100px; display: flex; align-items: center; background-size: cover; background-position: center; color: #fff; }
.local-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(38,33,30,.93) 0%, rgba(38,33,30,.77) 55%, rgba(38,33,30,.52) 100%); }
.local-hero .container { position: relative; z-index: 1; }
.local-hero-content { max-width: 800px; padding-top: 55px; }
.local-hero h1 { color: #fff; font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: 1.05; margin: 16px 0 24px; }
.local-hero p { max-width: 720px; color: #eee7dd; font-size: 1.2rem; line-height: 1.75; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; color: #ded3c4; font-size: .92rem; }
.breadcrumbs a { color: #fff; }
.local-heading { max-width: 780px; }
.local-heading p { font-size: 1.08rem; }
.local-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 38px; }
.local-service-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: 0 10px 28px rgba(38,33,30,.045); }
.local-service-card > span { color: var(--wood); font-weight: 800; letter-spacing: .1em; }
.local-service-card h3 { font-size: 1.25rem; margin: 13px 0 10px; }
.local-service-card p { min-height: 76px; margin-bottom: 16px; }
.local-service-card a { color: var(--wood-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.local-process { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 38px; }
.local-process article { padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(255,255,255,.07); color: #fff; }
.local-process b { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: var(--wood); color: #fff; }
.local-process h3 { color: #fff; font-size: 1.25rem; margin: 18px 0 10px; }
.local-process p { color: #ded3c4; margin: 0; }
.local-project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 36px; }
.local-project-grid article { position: relative; padding: 32px; border-radius: 14px; background: #fff; border: 1px solid var(--line); overflow: hidden; }
.local-project-grid article > b { position: absolute; right: 22px; top: 18px; color: rgba(21,101,192,.14); font-size: 2.6rem; }
.local-project-grid h3 { position: relative; padding-right: 25px; font-size: 1.28rem; margin-bottom: 14px; }
.local-project-grid p { position: relative; margin: 0; }
.local-guide-heading { max-width: 820px; }
.local-guide-heading > p { max-width: 780px; font-size: 1.08rem; line-height: 1.75; }
.local-guidance-grid article { border-top: 4px solid var(--wood); }
.local-guidance-grid article > p { line-height: 1.72; }
.service-area-note { display: grid; grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr); gap: 28px; align-items: center; margin-top: 28px; padding: 26px 30px; border: 1px solid rgba(21,101,192,.22); border-radius: 14px; background: rgba(21,101,192,.055); }
.service-area-note div { display: flex; flex-direction: column; gap: 4px; }
.service-area-note span { color: var(--wood); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-area-note strong { color: var(--espresso); font-size: 1.12rem; }
.service-area-note p { margin: 0; line-height: 1.65; }
.content-review { margin: 18px 0 0; color: #756d64; font-size: .88rem; }
.brand-mark svg { width: 25px; height: 25px; }
.nav-toggle span { font-size: 24px; line-height: 1; }
.related-zones { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.local-nav-cta { margin-left: auto; }

@media (max-width: 991px) {
  .zones-showcase { grid-template-columns: 1fr; }
  .zone-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zone-links-grid, .local-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-process, .local-project-grid { grid-template-columns: 1fr; }
  .local-nav-cta { display: inline-flex; }
}
@media (max-width: 767px) {
  .zone-links-grid, .local-services-grid, .related-zones { grid-template-columns: 1fr; }
  .zones-intro, .zones-directory { padding: 30px 22px; }
  .zone-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 14px; }
  .zone-mini-grid a { font-size: .89rem; }
  .zone-group + .zone-group { padding-top: 22px; margin-top: 22px; }
  .local-hero { min-height: auto; padding: 54px 0 72px; }
  .local-hero-content { padding-top: 34px; }
  .local-hero p { font-size: 1.05rem; }
  .local-service-card p { min-height: 0; }
  .service-area-note { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
}

@media (max-width: 420px) {
  .zone-mini-grid { grid-template-columns: 1fr; }
}
