/* ============================================================
   RIEGOS Y EQUIPOS — styles.css
   Versión: 1.0
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:        #1a4d24;
  --verde-mid:    #2d7a3a;
  --verde-light:  #4a9e5c;
  --verde-bg:     #eaf3de;
  --verde-soft:   #c0dd97;
  --texto:        #111;
  --gris:         #f6f7f5;
  --borde:        #e2e5df;
  --muted:        #6b7168;
  --blanco:       #ffffff;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --transition:   all 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── PAGE TRANSITIONS ── */
.page {
  display: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.page.active {
  display: block;
  visibility: visible;
  min-height: 70vh;
  opacity: 0;
  transform: translateY(10px);
  animation: pageIn 0.32s ease forwards;
}
@keyframes pageIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── NAVBAR ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borde);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--verde);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; }
.nav-logo-text { font-size: 15px; font-weight: 600; color: var(--texto); letter-spacing: -0.01em; }

.nav-center { display: flex; gap: 2px; }
.nav-link {
  background: none; border: none;
  padding: 7px 12px; border-radius: 8px;
  font-size: 14px; color: var(--muted);
  transition: var(--transition);
}
.nav-link:hover { background: var(--gris); color: var(--texto); }
.nav-link.active { color: var(--verde); font-weight: 600; background: var(--verde-bg); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-social { display: flex; gap: 6px; }
.nav-social-btn {
  width: 32px; height: 32px;
  background: var(--gris); border: 1px solid var(--borde);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.nav-social-btn:hover { background: var(--verde-bg); border-color: var(--verde-light); }
.nav-social-btn svg { width: 15px; height: 15px; fill: none; stroke: var(--muted); stroke-width: 2; }
.nav-social-btn:hover svg { stroke: var(--verde); }

.nav-cta {
  background: var(--verde); color: #fff; border: none;
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 8px;
  display: flex; align-items: center; gap: 7px;
  transition: var(--transition); white-space: nowrap;
}
.nav-cta:hover { background: var(--verde-mid); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; }

/* Hamburger */
.nav-hamburger {
  display: none; background: none; border: none;
  padding: 6px; flex-direction: column; gap: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--texto); border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--blanco); border-top: 1px solid var(--borde);
  padding: 10px 1.5rem 14px;
}
.nav-mobile .nav-link {
  text-align: left; width: 100%; padding: 10px 12px;
  font-size: 15px;
}

/* ── SHARED SECTION STYLES ── */
.page-inner {
  padding: 3.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.page-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--borde);
  margin-bottom: 2.5rem;
}
.eyebrow {
  font-size: 11px; font-weight: 700;
  color: var(--verde-mid);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.page-header h1 {
  font-family: 'Fraunces', serif;
  font-size: 38px; font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 8px;
}
.page-header p { font-size: 16px; color: var(--muted); max-width: 560px; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 580px;
  max-height: 860px;
  overflow: hidden;
  background: #071a0d;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/img/hero/hero-principal.jpg');
  background-size: cover; background-position: center;
  opacity: 0.42;
  animation: heroZoom 14s ease-out forwards;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  z-index: 0;
}

.hero-content {
  z-index: 3;
}

.hero-stats {
  z-index: 3;
}

@keyframes heroZoom {
  from { transform: scale(1.10); }
  to   { transform: scale(1.00); }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 24px;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.7s ease both;
}
.hero-badge svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 6.5vw, 76px);
  font-weight: 300; color: #fff;
  line-height: 1.06; letter-spacing: -0.03em;
  margin-bottom: 1.25rem; max-width: 700px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-content h1 em {
  font-style: italic; color: var(--verde-soft);
}
.hero-tagline {
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.78);
  max-width: 480px; line-height: 1.6;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.7s 0.18s ease both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.26s ease both;
}
.btn-hero-primary {
  background: var(--verde-mid); color: #fff; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--verde-light); transform: translateY(-2px); }
.btn-hero-primary svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2.5; }
.btn-hero-secondary {
  background: rgba(255,255,255,0.10); color: #fff;
  border: 1px solid rgba(255,255,255,0.38);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.20); transform: translateY(-2px); }
.btn-hero-secondary svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center;
  animation: fadeUp 0.7s 0.34s ease both;
}
.hero-stat {
  background: rgba(0,0,0,0.50);
  backdrop-filter: blur(8px);
  padding: 16px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.58); margin-top: 4px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── INICIO BODY ── */
.inicio-body { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 700; color: var(--verde-mid); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px; }
.section-title { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 300; line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.01em; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 2rem; max-width: 520px; line-height: 1.65; }

/* Servicios mini */
.servicios-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 4.5rem; }
.mini-card {
  background: var(--blanco); border: 1px solid var(--borde);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition); display: flex; flex-direction: column; gap: 12px;
}
.mini-card:hover { border-color: var(--verde-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mini-icon { width: 46px; height: 46px; background: var(--verde-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.mini-icon svg { width: 24px; height: 24px; stroke: var(--verde); fill: none; stroke-width: 1.7; }
.mini-card h3 { font-size: 16px; font-weight: 600; }
.mini-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.btn-mini-contacto {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--verde-mid); font-size: 13px; font-weight: 600;
  background: none; border: none; padding: 0;
  transition: var(--transition); margin-top: 4px; align-self: flex-start;
}
.btn-mini-contacto:hover { color: var(--verde); gap: 10px; }
.btn-mini-contacto svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }

/* Quiénes somos */
.quienes-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; align-items: start; }
.quienes-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.valores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.valor-item { display: flex; align-items: center; gap: 9px; background: var(--verde-bg); border-radius: 9px; padding: 9px 13px; }
.valor-item svg { width: 15px; height: 15px; stroke: var(--verde); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.valor-item span { font-size: 13px; color: var(--verde); font-weight: 600; }
.quienes-aside { display: flex; flex-direction: column; gap: 11px; }
.aside-card { border: 1px solid var(--borde); border-radius: var(--radius-md); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 13px; transition: var(--transition); }
.aside-card:hover { border-color: var(--verde-light); }
.aside-icon { width: 40px; height: 40px; background: var(--verde); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.aside-icon svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 2; }
.aside-label { font-size: 11px; color: var(--muted); }
.aside-val { font-size: 14px; font-weight: 600; margin-top: 1px; }

/* CTA Strip */
.cta-strip {
  background: var(--verde); border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.cta-strip-text h3 { color: #fff; font-size: 20px; font-weight: 600; }
.cta-strip-text p { color: rgba(255,255,255,0.72); font-size: 14px; margin-top: 4px; }
.cta-strip-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-wa {
  background: #25d366; color: #fff; border: none;
  padding: 10px 18px; border-radius: 9px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 7px; transition: var(--transition);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-wa svg { width: 17px; height: 17px; fill: #fff; }
.btn-form-outline {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
  padding: 10px 18px; border-radius: 9px; font-size: 14px;
  transition: var(--transition);
}
.btn-form-outline:hover { background: rgba(255,255,255,0.22); }

/* ── SERVICIOS PAGE ── */
.servicios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.serv-card {
  border: 1px solid var(--borde); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.serv-card:hover { border-color: var(--verde-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.serv-img { height: 160px; overflow: hidden; background: var(--verde-bg); display: flex; align-items: center; justify-content: center; }
.serv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.serv-card:hover .serv-img img { transform: scale(1.04); }
.serv-img svg { width: 48px; height: 48px; stroke: var(--verde); fill: none; stroke-width: 1.3; opacity: 0.5; }
.serv-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.serv-body h3 { font-size: 17px; font-weight: 700; }
.serv-body p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { background: var(--gris); color: var(--muted); font-size: 11px; padding: 4px 10px; border-radius: 20px; border: 1px solid var(--borde); }
.btn-servicio-contacto {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--verde-bg); color: var(--verde); border: 1px solid var(--verde-soft);
  padding: 10px 18px; border-radius: 8px; font-size: 13px; font-weight: 600;
  width: 100%; transition: var(--transition); margin-top: 4px;
}
.btn-servicio-contacto:hover { background: var(--verde); color: #fff; border-color: var(--verde); }
.btn-servicio-contacto svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }

/* ── CATÁLOGO PAGE ── */
.cat-filters { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-btn {
  background: var(--gris); border: 1px solid var(--borde);
  border-radius: 24px; padding: 7px 16px;
  font-size: 13px; font-weight: 500; color: var(--muted);
  transition: var(--transition);
}
.cat-btn:hover { border-color: var(--verde-light); color: var(--verde); }
.cat-btn.active { background: var(--verde); color: #fff; border-color: var(--verde); }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prod-card {
  border: 1px solid var(--borde); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.prod-card:hover { border-color: var(--verde-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prod-img {
  height: 180px; background: var(--verde-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-img-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 100%; }
.prod-img-placeholder svg { width: 42px; height: 42px; stroke: var(--verde); fill: none; stroke-width: 1.4; opacity: 0.5; }
.prod-img-placeholder-txt { font-size: 11px; font-weight: 600; color: var(--verde-mid); text-transform: uppercase; letter-spacing: 0.6px; opacity: 0.7; }
.prod-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-cat-tag { font-size: 10px; font-weight: 700; color: var(--verde-mid); text-transform: uppercase; letter-spacing: 0.8px; }
.prod-body h4 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.prod-body p { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.btn-cotizar {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--verde); color: #fff; border: none;
  padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600;
  width: 100%; transition: var(--transition); margin-top: 6px;
}
.btn-cotizar:hover { background: var(--verde-mid); }
.btn-cotizar svg { width: 14px; height: 14px; fill: none; stroke: #fff; stroke-width: 2.5; }

/* ── GALERÍA PAGE ── */
.galeria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gal-item {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--gris); aspect-ratio: 4/3;
  border: 1px solid var(--borde); position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gal-item:hover { border-color: var(--verde-light); transform: scale(1.02); box-shadow: var(--shadow-md); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gal-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.gal-placeholder svg { width: 32px; height: 32px; stroke: var(--borde); fill: none; stroke-width: 1.5; }
.gal-note { font-size: 14px; color: var(--muted); text-align: center; margin-top: 1.5rem; padding: 1rem; background: var(--gris); border-radius: var(--radius-md); }

/* ── BLOG PAGE ── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.blog-card {
  border: 1px solid var(--borde); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); cursor: pointer;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--verde-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-img { height: 170px; overflow: hidden; background: var(--verde-bg); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-img svg { width: 40px; height: 40px; stroke: var(--verde); fill: none; stroke-width: 1.3; opacity: 0.5; }
.blog-img-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.blog-img-placeholder span { font-size: 11px; font-weight: 600; color: var(--verde-mid); text-transform: uppercase; letter-spacing: 0.6px; opacity: 0.7; }
.blog-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.blog-cat { font-size: 11px; color: var(--verde-mid); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; }
.blog-body h3 { font-size: 15px; font-weight: 700; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; }
.blog-meta { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-top: 8px; }
.blog-meta svg { width: 13px; height: 13px; stroke: var(--muted); fill: none; stroke-width: 2; }

/* ── ARTÍCULO DE BLOG (página completa) ── */
.articulo-inner { max-width: 760px; }
.btn-volver-blog {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: none; color: var(--verde-mid);
  font-size: 13px; font-weight: 600; padding: 0; margin-bottom: 1.75rem;
  transition: var(--transition);
}
.btn-volver-blog:hover { color: var(--verde); gap: 10px; }
.btn-volver-blog svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.articulo-header { margin-bottom: 1.5rem; }
.articulo-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.articulo-tags .tag { background: var(--verde-bg); color: var(--verde); border-color: var(--verde-soft); }
.articulo-header h1 {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(26px, 4vw, 36px); line-height: 1.2;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.articulo-meta { font-size: 13px; color: var(--muted); }
.articulo-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 2rem; background: var(--verde-bg);
}
.articulo-img-wrap img { width: 100%; max-height: 420px; object-fit: cover; }
.articulo-cuerpo { font-size: 15px; color: #2a2f28; line-height: 1.8; }
.articulo-cuerpo p { margin-bottom: 1.1rem; }
.articulo-cuerpo .art-h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 21px; color: var(--verde); margin: 1.75rem 0 0.75rem;
}
.articulo-cuerpo .art-h4 {
  font-size: 15px; font-weight: 700; color: var(--texto);
  margin: 1.25rem 0 0.5rem;
}
.articulo-cuerpo .art-lista { margin: 0 0 1.1rem 1.25rem; }
.articulo-cuerpo .art-lista li { margin-bottom: 0.5rem; }
.articulo-cta {
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--borde);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.articulo-cta p { font-size: 14px; font-weight: 600; color: var(--texto); }

/* ── CONTACTO PAGE ── */
.contacto-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info h2 { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 300; margin-bottom: 4px; }
.contact-info-sub { font-size: 15px; color: var(--muted); margin-bottom: 8px; line-height: 1.6; }
.contact-row { display: flex; align-items: flex-start; gap: 13px; }
.contact-icon { width: 38px; height: 38px; background: var(--verde-bg); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--verde); fill: none; stroke-width: 2; }
.contact-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.contact-val { font-size: 14px; font-weight: 600; margin-top: 1px; line-height: 1.4; }
.btn-wa-full {
  background: #25d366; color: #fff; border: none;
  padding: 13px 18px; border-radius: 9px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; margin-top: 4px; transition: var(--transition);
}
.btn-wa-full:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-wa-full svg { width: 18px; height: 18px; fill: #fff; }

/* Formulario */
.form-card {
  background: var(--gris); border: 1px solid var(--borde);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 14px;
}
.form-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-size: 12px; color: var(--muted); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.form-required { color: #d85a30; font-size: 13px; }
.form-input, .form-textarea, .form-select {
  background: var(--blanco); border: 1px solid var(--borde);
  border-radius: 9px; padding: 10px 14px;
  font-size: 14px; color: var(--texto); font-family: inherit;
  outline: none; transition: var(--transition); width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--verde-light); box-shadow: 0 0 0 3px rgba(74,158,92,0.12); }
.form-input.error, .form-textarea.error { border-color: #d85a30; }
.form-textarea { height: 100px; resize: vertical; }
.form-nota { font-size: 12px; color: var(--muted); }
.btn-enviar {
  background: var(--verde); color: #fff; border: none;
  padding: 12px; border-radius: 9px; font-size: 15px; font-weight: 700;
  transition: var(--transition);
}
.btn-enviar:hover { background: var(--verde-mid); transform: translateY(-1px); }
.form-success {
  display: none; background: #eaf3de; border: 1px solid var(--verde-soft);
  border-radius: 9px; padding: 14px 16px; font-size: 14px;
  color: var(--verde); font-weight: 500; text-align: center;
}

/* ── FOOTER ── */
.footer {
  position: relative; overflow: hidden;
  background: #0b2210;
  padding: 2.5rem 2rem;
}
.footer-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/img/footer-bg.jpg');
  background-size: cover; background-position: center 70%;
  opacity: 0.18;
}
.footer-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem;
}
.footer-brand { color: #fff; font-size: 16px; font-weight: 700; }
.footer-copy { color: rgba(255,255,255,0.42); font-size: 12px; margin-top: 3px; }
.footer-nav { display: flex; gap: 1.25rem; }
.footer-nav button { background: none; border: none; color: rgba(255,255,255,0.65); font-size: 13px; transition: color .15s; }
.footer-nav button:hover { color: #fff; }
.footer-social { display: flex; gap: 8px; }
.fsoc { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.10); border: none; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.fsoc:hover { background: rgba(255,255,255,0.22); }
.fsoc svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; }

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  transition: var(--transition); z-index: 200;
  text-decoration: none;
}
.wa-fab:hover { transform: scale(1.10); background: #1ebe5a; }
.wa-fab svg { width: 28px; height: 28px; fill: #fff; }

/* ── BOTONES GENERALES ── */
.btn-primary {
  background: var(--verde); color: #fff; border: none;
  padding: 11px 22px; border-radius: 9px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--verde-mid); transform: translateY(-1px); }
.btn-primary svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2.5; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-center, .nav-right .nav-social { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content h1 { font-size: 38px; }
  .hero-tagline { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { padding: 12px 20px; }
  .servicios-mini, .quienes-row, .servicios-grid,
  .contacto-grid, .blog-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip { flex-direction: column; text-align: center; }
  .cta-strip-btns { flex-wrap: wrap; justify-content: center; }
  .inicio-body, .page-inner { padding: 2.5rem 1.25rem; }
  .hero-content { padding: 0 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .prod-grid, .galeria-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
}
/* ── MINI CARDS CON IMAGEN ── */
.mini-card {
  padding: 0;
  overflow: hidden;
}
.mini-card-img {
  height: 160px;
  overflow: hidden;
}
.mini-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.mini-card:hover .mini-card-img img { transform: scale(1.05); }
.mini-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 10px;
  text-align: center; align-items: center;
}

/* ── NOSOTROS FOTO ── */
.nosotros-img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

/* ── MÓVIL: fix botón hero ── */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}
.mini-icon { display: none; }

/* ── GALERÍA OVERLAY ── */
.gal-item { cursor: pointer; }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end;
  padding: 10px; transition: background 0.25s;
  border-radius: var(--radius-md);
}
.gal-overlay span { display: none; }
  color: #fff; font-size: 12px; font-weight: 500;
  opacity: 0; transition: opacity 0.25s;
  background: rgba(0,0,0,0.5); padding: 4px 8px; border-radius: 6px;
}
.gal-item:hover .gal-overlay { background: rgba(0,0,0,0.30); }
.gal-item:hover .gal-overlay span { opacity: 1; }

/* ── TABLA DE PRODUCTOS ── */
.prod-tabla {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.prod-tabla th {
  background: #1a4d24;
  color: #fff;
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
}
.prod-tabla td {
  padding: 7px 12px;
  border-bottom: 1px solid #e2e5df;
  color: #444;
}
.prod-tabla tr:nth-child(even) td {
  background: #f6f7f5;
}

/* ── RESPONSIVE: ARTÍCULO DE BLOG ── */
@media (max-width: 768px) {
  .articulo-cta { flex-direction: column; align-items: flex-start; }
  .articulo-img-wrap img { max-height: 260px; }
}
