/* =============================================================
   Paisajismo Moisés León · Córdoba Capital
   Paleta verde follaje + tierra + crema + Playfair Display + Nunito Sans
   ============================================================= */

:root {
  --verde: #2E7D32;
  --verde-claro: #66BB6A;
  --verde-oscuro: #1B5E20;
  --tierra: #6D4C41;
  --tierra-oscura: #4E342E;
  --crema: #F1F8E9;
  --crema-profundo: #DCEDC8;
  --crema-oscuro: #C5E1A5;
  --dorado: #F9A825;
  --dorado-oscuro: #F57F17;
  --texto: #2D342E;
  --texto-suave: #4A5248;
  --blanco: #FFFFFF;

  --sombra-suave: 0 8px 30px rgba(46, 125, 50, 0.10);
  --sombra-card: 0 12px 40px rgba(46, 125, 50, 0.08);
  --sombra-hover: 0 20px 50px rgba(46, 125, 50, 0.16);

  --radio: 14px;
  --radio-sm: 8px;
  --radio-pill: 999px;

  --maxw: 1200px;

  --ff-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --ff-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--verde); text-decoration: none; }
a:hover { color: var(--verde-oscuro); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Focus visible ---------- */
:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Visually hidden ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--verde-oscuro);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); }
p { color: var(--texto); }
em { font-style: italic; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
  font-weight: 700;
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--verde-oscuro);
  font-weight: 600;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section-alt { background: var(--crema-profundo); }
.section-head-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.4rem, 5vw, 3.5rem);
}
.section-head-center h2 { margin-bottom: 0.8rem; }
.section-head-center p { font-size: 1.1rem; color: var(--texto-suave); }
.section-cta-center {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radio-sm);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary {
  background: var(--verde-oscuro);
  color: var(--blanco);
  box-shadow: var(--sombra-suave);
}
.btn-primary:hover {
  background: var(--verde);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(46, 125, 50, 0.22);
}
.btn-outline {
  background: transparent;
  color: var(--verde-oscuro);
  border-color: var(--verde);
}
.btn-outline:hover {
  background: var(--verde-oscuro);
  color: var(--blanco);
  transform: translateY(-2px);
}
.btn-tierra {
  background: var(--tierra);
  color: var(--blanco);
  box-shadow: 0 8px 30px rgba(109, 76, 65, 0.22);
}
.btn-tierra:hover {
  background: var(--tierra-oscura);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(241, 248, 233, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 125, 50, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(241, 248, 233, 0.98);
  box-shadow: 0 6px 24px rgba(46, 125, 50, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: 8px;
}
.brand img {
  width: clamp(190px, 30vw, 280px);
  height: auto;
}

/* ---------- Nav ---------- */
.nav-main { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  display: flex;
  gap: 0.3rem;
  padding: 0;
}
.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radio-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto);
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-list a:hover { color: var(--verde-oscuro); background: rgba(102, 187, 106, 0.14); }
.nav-list a[aria-current="page"] { color: var(--verde-oscuro); font-weight: 700; }
.nav-list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 2px;
  background: var(--verde);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  border-radius: var(--radio-sm);
  position: relative;
  z-index: 1100;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2.4px;
  background: var(--verde-oscuro);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27, 94, 32, 0.40);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1050;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--crema) 0%, var(--crema-profundo) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 187, 106, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero-content { position: relative; z-index: 2; }
.hero-content .eyebrow { display: block; margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1.1rem; }
.hero-content h1 em { color: var(--tierra); font-weight: 600; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--texto-suave);
  max-width: 480px;
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radio);
  box-shadow: 0 20px 60px rgba(46, 125, 50, 0.16);
}
.hero-image::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(109, 76, 65, 0.15);
  z-index: -1;
}

/* ---------- Bento Grid (Servicios) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 1.4rem;
}
.bento-cell {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}
.bento-cell img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.bento-tall {
  grid-row: span 2;
}
.bento-tall img {
  height: 320px;
}
.bento-wide {
  grid-column: span 2;
}
.bento-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bento-body h3 { margin-bottom: 0.5rem; }
.bento-body p { color: var(--texto-suave); font-size: 0.95rem; }
.bento-centered {
  justify-content: center;
  align-items: flex-start;
}
.bento-pattern {
  background: linear-gradient(135deg, var(--verde-oscuro), var(--verde));
  height: 100%;
  position: relative;
  overflow: hidden;
}
.bento-pattern::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(102, 187, 106, 0.2);
}
.bento-pattern::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(249, 168, 37, 0.15);
}
.bento-pattern .bento-body {
  position: relative;
  z-index: 2;
}
.bento-pattern .bento-body h3 { color: var(--crema); }
.bento-pattern .bento-body p { color: rgba(241, 248, 233, 0.88); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--verde-oscuro);
  margin-top: 0.8rem;
  font-size: 0.95rem;
}
.link-arrow::after {
  content: "\2192";
  transition: transform 0.2s ease;
}
.link-arrow:hover { color: var(--verde); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Nosotros ---------- */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.nosotros-image img {
  width: 100%;
  border-radius: var(--radio);
  box-shadow: var(--sombra-card);
}
.nosotros-text h2 { margin-bottom: 1rem; }
.nosotros-text p {
  margin-bottom: 1rem;
  color: var(--texto-suave);
}
.nosotros-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.8rem);
  margin: 1.8rem 0;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--tierra);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--texto-suave);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  text-align: center;
  padding: 0 0.5rem;
}
.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(102, 187, 106, 0.15);
  color: var(--verde-oscuro);
}
.step h3 { margin-bottom: 0.6rem; }
.step p { color: var(--texto-suave); font-size: 0.95rem; }

/* ---------- Galería ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 1.2rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radio);
  margin: 0;
  box-shadow: var(--sombra-card);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ---------- Testimonios ---------- */
.section-testimonios {
  background: linear-gradient(135deg, var(--verde-oscuro), var(--verde));
  color: var(--crema);
  position: relative;
  overflow: hidden;
}
.section-testimonios::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(109, 76, 65, 0.12);
  pointer-events: none;
}
.quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.quote-block blockquote {
  font-family: var(--ff-head);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--crema);
  margin-bottom: 1.5rem;
}
.quote-block blockquote p::before { content: "\201C"; margin-right: 0.1em; }
.quote-block blockquote p::after { content: "\201D"; margin-left: 0.1em; }
.quote-block figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.quote-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--crema);
}
.quote-role {
  font-size: 0.95rem;
  color: rgba(241, 248, 233, 0.75);
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-intro h2 { margin-bottom: 0.8rem; }
.faq-intro p { margin-bottom: 1.5rem; color: var(--texto-suave); }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra-card);
  overflow: hidden;
  border: 1px solid rgba(46, 125, 50, 0.08);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--verde-oscuro);
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--tierra);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.4rem 1.2rem; }
.faq-a p { color: var(--texto-suave); }

/* ---------- Ubicación ---------- */
.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.ubicacion-info h2 { margin-bottom: 0.6rem; }
.datos-lista {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.datos-lista li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.dato-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(102, 187, 106, 0.15);
  color: var(--verde-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.datos-lista strong {
  display: block;
  color: var(--verde-oscuro);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.datos-lista li > div { color: var(--texto-suave); font-size: 0.98rem; }
.ubicacion-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.ubicacion-mapa {
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra-card);
}
.ubicacion-mapa iframe {
  width: 100%;
  min-height: 400px;
  display: block;
}

/* ---------- CTA Final ---------- */
.section-cta-final {
  background: linear-gradient(135deg, var(--tierra), var(--tierra-oscura));
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta-final::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.section-cta-final .container { position: relative; z-index: 2; }
.section-cta-final h2 {
  color: var(--crema);
  margin-bottom: 0.8rem;
}
.section-cta-final p {
  color: rgba(241, 248, 233, 0.92);
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
}
.btn-cta {
  background: var(--verde-oscuro);
  color: var(--blanco);
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
  border-radius: var(--radio-sm);
  box-shadow: 0 12px 40px rgba(27, 94, 32, 0.30);
}
.btn-cta:hover {
  background: var(--verde);
  color: var(--blanco);
  transform: translateY(-2px);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1FA653;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  box-shadow: 0 8px 28px rgba(31, 166, 83, 0.40);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  background: #178a46;
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(31, 166, 83, 0.50);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--verde-oscuro);
  color: var(--crema);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 2.5rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(241, 248, 233, 0.78);
  font-size: 0.95rem;
  max-width: 360px;
}
.footer-col h3 {
  color: var(--verde-claro);
  font-size: 1rem;
  font-family: var(--ff-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(241, 248, 233, 0.82);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--verde-claro); }
.footer-col li { color: rgba(241, 248, 233, 0.82); font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid rgba(102, 187, 106, 0.22);
  padding-block: 1.4rem;
}
.footer-bottom p {
  color: rgba(241, 248, 233, 0.60);
  font-size: 0.875rem;
  text-align: center;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Subpage Header ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--verde-oscuro), var(--verde));
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(102, 187, 106, 0.15);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: var(--crema);
  margin-bottom: 0.8rem;
}
.page-hero p {
  color: rgba(241, 248, 233, 0.88);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}
.breadcrumb a { color: rgba(241, 248, 233, 0.75); }
.breadcrumb a:hover { color: var(--crema); }
.breadcrumb span { color: rgba(241, 248, 233, 0.50); }

/* ---------- Servicios Page ---------- */
.prod-categoria {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(46, 125, 50, 0.10);
}
.prod-categoria:last-child { border-bottom: 0; }
.prod-categoria-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.prod-categoria-grid.reverse {
  direction: rtl;
}
.prod-categoria-grid.reverse > * { direction: ltr; }
.prod-categoria-grid img {
  width: 100%;
  border-radius: var(--radio);
  box-shadow: var(--sombra-card);
}
.prod-categoria-info h2 { margin-bottom: 0.8rem; }
.prod-categoria-info p { color: var(--texto-suave); margin-bottom: 1rem; }
.prod-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.prod-feature-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--texto);
}
.prod-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tierra);
}

/* ---------- Nosotros Page ---------- */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.valor-card {
  background: var(--blanco);
  padding: 1.8rem;
  border-radius: var(--radio);
  box-shadow: var(--sombra-card);
}
.valor-card h3 {
  color: var(--verde-oscuro);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.valor-card p { color: var(--texto-suave); font-size: 0.95rem; }

/* ---------- Contacto Page ---------- */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.contacto-info-card {
  background: var(--blanco);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--radio);
  box-shadow: var(--sombra-card);
  margin-bottom: 1.5rem;
}
.contacto-form-wrap {
  background: var(--blanco);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radio);
  box-shadow: var(--sombra-card);
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--verde-oscuro);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--crema-oscuro);
  border-radius: var(--radio-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--texto);
  background: var(--crema);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7A8A6E;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.22);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #C62828;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.14);
}
.error-msg {
  display: block;
  font-size: 0.875rem;
  color: #B71C1C;
  margin-top: 0.3rem;
  font-weight: 600;
  min-height: 0;
}
.form-success {
  display: none;
  padding: 1.2rem 1.4rem;
  background: rgba(102, 187, 106, 0.14);
  border: 2px solid var(--verde-claro);
  border-radius: var(--radio);
  margin-top: 1rem;
}
.form-success.is-visible { display: block; }
.form-success p { color: var(--verde-oscuro); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 560px; margin: 0 auto; }
  .hero-image::before { display: none; }
  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-image { max-width: 560px; }
  .ubicacion-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .prod-categoria-grid { grid-template-columns: 1fr; }
  .prod-categoria-grid.reverse { direction: ltr; }
  .contacto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-main {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--crema);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    gap: 1rem;
    box-shadow: -8px 0 40px rgba(46, 125, 50, 0.16);
    transition: right 0.35s ease;
    z-index: 1060;
    overflow-y: auto;
  }
  .nav-main.is-open { right: 0; }
  .nav-list { flex-direction: column; gap: 0.3rem; }
  .nav-list a { font-size: 1.1rem; padding: 0.8rem 1rem; }
  .nav-cta-mobile { margin-top: 1rem; }
  .nav-cta-mobile .btn { width: 100%; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-tall, .bento-wide { grid-row: auto; grid-column: auto; }
  .bento-tall img { height: 220px; }

  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-tall { grid-row: auto; }
  .gallery-wide { grid-column: auto; }

  .valores-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .nosotros-stats { justify-content: flex-start; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .ubicacion-acciones { flex-direction: column; align-items: stretch; }
  .ubicacion-acciones .btn { width: 100%; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
