:root {
  --verde:      #2d6e1e;
  --verde-vivo: #3d8a26;
  --lima:       #7fc01e;
  --naranja:    #d44a0f;
  --celeste:    #3a9db8;
  --negro:      #faf8f4;
  --carbon:     #f0ebe2;
  --gris-oscuro:#e5dfd6;
  --gris-medio: #a0b096;
  --gris-texto: #4a5a44;
  --crema:      #fdf9f2;
  --blanco:     #ffffff;
  --texto:      #1a2118;
  --borde:      rgba(0,0,0,0.08);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'Inter', sans-serif;
  background: var(--negro);
  color: var(--texto);
  overflow-x: hidden;
}

/* NAV */
nav {
  position:fixed; top:0; width:100%; z-index:500;
  height:70px;
  padding:0 3.5rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--borde);
  transition: box-shadow .4s;
}
.nav-inner {
  max-width:1400px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  height:100%;
}
nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}

.nav-logo { display:flex; align-items:center; gap:0.75rem; text-decoration:none; }
.nav-logo-icon {
  height:44px; width:auto;
  display:flex; align-items:center;
}
.nav-logo-icon img {
  height:44px; max-width:200px; object-fit:contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}
.nav-logo-svg {
  display:none;
  font-size:1.15rem; font-weight:700; letter-spacing:-0.02em;
  color:var(--texto);
}
.nav-logo-svg span { color:var(--lima); }
.nav-logo-svg.show { display:inline; }

.nav-toggle {
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px; height:40px;
  padding:8px;
  background:transparent;
  border:none;
  cursor:pointer;
  border-radius:8px;
  transition:background .2s;
}
.nav-toggle span {
  display:block;
  width:100%;
  height:2px;
  background:rgba(26,33,24,0.65);
  border-radius:1px;
  transition:transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform:rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:rotate(-45deg) translate(5px, -5px); }

nav ul.nav-menu { list-style:none; display:flex; align-items:center; gap:0.25rem; }
nav ul li a {
  font-size:0.8rem; font-weight:500; color:rgba(26,33,24,0.65);
  text-decoration:none; padding:0.5rem 0.9rem; border-radius:6px;
  transition:all .2s; letter-spacing:0.01em;
}
nav ul li a:hover { color:var(--texto); background:rgba(0,0,0,0.05); }
.nav-btn {
  background:var(--verde) !important; color:white !important;
  font-weight:600 !important; padding:0.5rem 1.2rem !important;
  border-radius:6px !important;
  transition:background .2s !important;
}
.nav-btn:hover { background:var(--verde-vivo) !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO â€” full viewport, foto de campo
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh;
  position:relative; overflow:hidden;
  display:flex; align-items:flex-end;
}
.hero-img {
  position:absolute; inset:0;
  background-image:url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1800&q=85");
  background-size:cover; background-position:center 40%;
  filter:brightness(0.65);
  transform:scale(1.03);
  animation: heroZoom 12s ease-out forwards;
}
/* Field texture overlay on hero */

@keyframes heroZoom { from{transform:scale(1.08)} to{transform:scale(1.0)} }

.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to top,
    rgba(10,11,9,0.80) 0%,
    rgba(10,11,9,0.38) 40%,
    rgba(10,11,9,0.05) 75%,
    transparent 100%
  );
}

.hero-content {
  position:relative; z-index:2;
  width:100%; padding:5.5rem 3.5rem 6rem;
  display:grid; grid-template-columns:1fr 1fr;
  gap:4rem; align-items:end;
  max-width:1400px; margin:0 auto;
}

.hero-left {}
.hero-tag {
  display:inline-flex; align-items:center; gap:0.6rem;
  margin-bottom:1.8rem;
}
.hero-tag-dot { width:8px; height:8px; background:var(--lima); border-radius:50%; animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-tag-text {
  font-size:0.72rem; font-weight:600; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--lima);
}

.hero-title {
  font-family:'Fraunces', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight:700; line-height:1.08;
  color:white; letter-spacing:-0.02em;
  margin-bottom:1.8rem;
}
.hero-title em { font-style:italic; font-weight:300; color:rgba(255,255,255,0.7); }

.hero-desc {
  font-size:1rem; font-weight:300;
  color:rgba(255,255,255,0.82); line-height:1.8;
  max-width:420px; margin-bottom:2.5rem;
}
.hero-btns { display:flex; gap:1rem; align-items:center; flex-wrap:wrap; }
.btn-a {
  background:var(--lima); color:var(--negro);
  font-size:0.85rem; font-weight:700; letter-spacing:0.04em;
  padding:0.9rem 2rem; border-radius:8px; text-decoration:none;
  transition:all .3s; display:inline-flex; align-items:center; gap:0.5rem;
}
.btn-a:hover { background:#91d024; transform:translateY(-2px); box-shadow:0 12px 28px rgba(127,192,30,0.3); }
.btn-b {
  font-size:0.85rem; font-weight:500; color:rgba(255,255,255,0.65);
  text-decoration:none; display:inline-flex; align-items:center; gap:0.5rem;
  transition:color .3s;
  border-bottom:1px solid rgba(255,255,255,0.2); padding-bottom:2px;
}
.btn-b:hover { color:white; border-color:rgba(255,255,255,0.5); }

/* Hero right â€” stat panel */
.hero-right {
  display:flex; flex-direction:column;
  gap:0; align-items:flex-end;
}
.hero-stats-panel {
  background:rgba(255,255,255,0.18);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.3);
  border-radius:16px; overflow:hidden;
  min-width:280px;
}
.stat-row {
  display:flex; align-items:center; gap:1.2rem;
  padding:1.4rem 1.8rem;
  border-bottom:1px solid rgba(255,255,255,0.18);
  transition:background .2s;
}
.stat-row:last-child { border-bottom:none; }
.stat-row:hover { background:rgba(255,255,255,0.1); }
.stat-icon { font-size:1.4rem; width:36px; text-align:center; flex-shrink:0; color:rgba(255,255,255,0.8); }
.stat-num {
  font-family:'Fraunces', serif;
  font-size:1.8rem; font-weight:700; line-height:1; color:white;
}
.stat-num.lima { color:var(--lima); }
.stat-num.naranja { color:#ffb088; }
.stat-num.celeste { color:#7ee0f5; }
.stat-label {
  font-size:0.72rem; font-weight:500; color:rgba(255,255,255,0.72);
  letter-spacing:0.04em; margin-top:0.15rem;
}

/* Scroll indicator */
.hero-scroll {
  position:absolute; bottom:2.5rem; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  z-index:2;
}
.hero-scroll span {
  font-size:0.62rem; font-weight:600; letter-spacing:0.2em;
  text-transform:uppercase; color:rgba(255,255,255,0.3);
}
.hero-scroll-line {
  width:1px; height:50px;
  background:linear-gradient(to bottom, rgba(127,192,30,0.6), transparent);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:0.6;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INTRO STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.intro-strip {
  background:var(--blanco);
  padding:5rem 3.5rem;
  border-bottom:1px solid var(--borde);
}
.intro-inner {
  display:grid; grid-template-columns:1fr 2px 1fr 2px 1fr;
  gap:3rem; align-items:center;
  max-width:1400px; margin:0 auto;
}
.intro-divider { background:var(--borde); align-self:stretch; }
.intro-item { text-align:center; }
.intro-item strong {
  font-family:'Fraunces',serif;
  font-size:3rem; font-weight:700; line-height:1;
  display:block; color:var(--texto);
}
.intro-item strong .accent { color:var(--verde); }
.intro-item p {
  font-size:0.78rem; font-weight:500;
  color:var(--gris-texto); margin-top:0.4rem; letter-spacing:0.04em;
  text-transform:uppercase;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PORTAFOLIO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-portafolio {
  background:var(--negro);
  padding:7rem 3.5rem;
}

.section-header {
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:4rem;
}
.sh-left {}
.sh-eyebrow {
  font-size:0.68rem; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--naranja);
  display:flex; align-items:center; gap:0.6rem;
  margin-bottom:1rem;
}
.sh-eyebrow::before { content:''; width:24px; height:1.5px; background:var(--naranja); }
.sh-title {
  font-family:'Fraunces',serif;
  font-size:clamp(2.2rem,4vw,3.5rem);
  font-weight:700; line-height:1.1; color:var(--texto);
  letter-spacing:-0.02em;
}
.sh-title em { font-style:italic; font-weight:300; color:var(--lima); }
.sh-link {
  font-size:0.78rem; font-weight:600; color:var(--gris-texto);
  text-decoration:none; letter-spacing:0.06em; text-transform:uppercase;
  border-bottom:1px solid var(--gris-medio); padding-bottom:2px;
  transition:all .2s; white-space:nowrap;
}
.sh-link:hover { color:var(--verde); border-color:var(--verde); }

/* Photo grid like Dimasur */
.port-photo-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:320px 320px;
  gap:1px;
  background:var(--gris-oscuro);
  border-radius:16px; overflow:hidden;
}
.pg-card {
  position:relative; overflow:hidden;
  text-decoration:none; color:white;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.pg-card.tall { grid-row:span 2; }
.pg-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transition:transform .6s ease;
  filter:brightness(0.72);
}
.pg-card:hover .pg-bg { transform:scale(1.06); filter:brightness(0.55); }
.pg-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(10,11,9,0.78) 0%, transparent 55%);
  transition:opacity .3s;
}
.pg-card:hover .pg-overlay { opacity:1.2; }
.pg-content {
  position:relative; z-index:2; padding:1.8rem;
}
.pg-tag {
  font-size:0.62rem; font-weight:600; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--lima);
  margin-bottom:0.4rem; display:block;
}
.pg-name {
  font-family:'Fraunces',serif;
  font-size:1.3rem; font-weight:700;
  line-height:1.2; margin-bottom:0.4rem;
}
.pg-card.tall .pg-name { font-size:1.8rem; }
.pg-desc {
  font-size:0.78rem; color:rgba(255,255,255,0.55);
  line-height:1.65; margin-bottom:0.8rem;
  max-height:0; overflow:hidden;
  transition:max-height .4s ease, opacity .4s;
  opacity:0;
}
.pg-card:hover .pg-desc { max-height:80px; opacity:1; }
.pg-arrow {
  font-size:0.72rem; font-weight:600; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--lima);
  display:flex; align-items:center; gap:0.4rem;
  opacity:0; transform:translateY(6px);
  transition:all .35s;
}
.pg-card:hover .pg-arrow { opacity:1; transform:translateY(0); }

.port-photo-grid-2 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--gris-oscuro);
  border-radius:16px;
  overflow:hidden;
  margin-top:1px;
}
.pg-card-short { min-height:240px; }

@media (max-width:1100px) {
  .port-photo-grid-2 { grid-template-columns:1fr 1fr; }
}
@media (max-width:720px) {
  .port-photo-grid-2 { grid-template-columns:1fr; }
}

/* photo backgrounds using Unsplash */
/* â”€â”€ Portfolio card backgrounds â€” campo mexicano via gradients â”€â”€ */
.bg-maiz { background-image:url("https://images.unsplash.com/photo-1601493700631-2b16ec4b4716?w=900&q=80"); background-size:cover; background-position:center; }
/* Corn row lines */

.bg-hortalizas { background-image:url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=900&q=80"); background-size:cover; background-position:center; }

.bg-nutricion { background-image:url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=900&q=80"); background-size:cover; background-position:center top; }

.bg-proteccion { background-image:url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?w=900&q=80"); background-size:cover; background-position:center; }

.bg-suelo { background-image:url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=900&q=80"); background-size:cover; background-position:center bottom; }

.bg-gps { background-image:url("https://images.unsplash.com/photo-1574943320219-553eb213f72d?w=900&q=80"); background-size:cover; background-position:center; }

.bg-asesoria { background-image:url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=900&q=80"); background-size:cover; background-position:center; }

.bg-financiamiento { background-image:url("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=900&q=80"); background-size:cover; background-position:center; }


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NOSOTROS â€” foto full + texto
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-nosotros {
  display:grid; grid-template-columns:1fr 1fr;
  min-height:600px;
}
.nos-photo {
  position:relative; overflow:hidden;
}
.nos-photo-img {
  position:absolute; inset:0;
  background-image:url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1000&q=85");
  background-size:cover; background-position:center;
  filter:brightness(0.6);
  transition:transform .8s ease;
}

.section-nosotros:hover .nos-photo-img {
  position:absolute; inset:0;
  background-image:url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1000&q=85");
  background-size:cover; background-position:center;
  filter:brightness(0.6);
  transition:transform .8s ease;
}
.nos-photo-badge {
  position:absolute; bottom:2.5rem; left:2.5rem; z-index:2;
  background:var(--lima); color:var(--negro);
  border-radius:12px; padding:1.2rem 1.6rem;
  font-family:'Fraunces',serif;
}
.nos-photo-badge strong { font-size:2.2rem; font-weight:700; line-height:1; display:block; }
.nos-photo-badge span { font-size:0.7rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; opacity:0.7; }

.nos-text {
  background:var(--carbon);
  padding:6rem 4rem; display:flex;
  flex-direction:column; justify-content:center;
}
.nos-eyebrow {
  font-size:0.68rem; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--verde);
  display:flex; align-items:center; gap:0.6rem;
  margin-bottom:1.5rem;
}
.nos-eyebrow::before { content:''; width:24px; height:1.5px; background:var(--verde); }
.nos-title {
  font-family:'Fraunces',serif;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:700; line-height:1.1; color:var(--texto);
  letter-spacing:-0.02em; margin-bottom:1.5rem;
}
.nos-title em { font-style:italic; font-weight:300; color:var(--lima); }
.nos-body {
  font-size:0.95rem; color:var(--gris-texto);
  line-height:1.85; margin-bottom:1.2rem;
}
.nos-body b { color:var(--texto); font-weight:600; }
.nos-divider { width:40px; height:2px; background:var(--verde); margin:2rem 0; }
.nos-address {
  display:flex; align-items:flex-start; gap:0.8rem;
  font-size:0.85rem; color:var(--gris-texto); line-height:1.7;
}
.nos-address-icon { color:var(--naranja); flex-shrink:0; margin-top:1px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MARCAS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-marcas {
  background:var(--gris-oscuro);
  padding:4rem 3.5rem;
  border-top:1px solid var(--borde);
  border-bottom:1px solid var(--borde);
}
.marcas-label {
  text-align:center; font-size:0.62rem; font-weight:600;
  letter-spacing:0.3em; text-transform:uppercase;
  color:var(--gris-texto); margin-bottom:2.5rem;
}
.marcas-row {
  display:flex; justify-content:center; align-items:center;
  gap:5rem; flex-wrap:wrap;
}
.marca-name {
  font-size:1rem; font-weight:700; letter-spacing:0.06em;
  text-transform:uppercase; color:var(--gris-medio);
  transition:color .3s;
}
.marca-name:hover { color:var(--texto); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA â€” foto de fondo
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-cta {
  position:relative; overflow:hidden;
  min-height:480px; display:flex; align-items:center;
}
.cta-photo {
  position:absolute; inset:0;
  background-image:url("https://images.unsplash.com/photo-1595508064774-5ff825520bb6?w=1600&q=80");
  background-size:cover; background-position:center 30%;
  filter:brightness(0.60);
}

.cta-overlay {
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(10,11,9,0.80) 0%, rgba(10,11,9,0.25) 100%);
}
.cta-content {
  position:relative; z-index:2;
  padding:5rem 3.5rem; max-width:620px;
}
.cta-tag {
  font-size:0.68rem; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--naranja);
  display:flex; align-items:center; gap:0.6rem; margin-bottom:1.5rem;
}
.cta-tag::before { content:''; width:24px; height:1.5px; background:var(--naranja); }
.cta-title {
  font-family:'Fraunces',serif;
  font-size:clamp(2.2rem,4vw,3.8rem);
  font-weight:700; line-height:1.1; color:white;
  letter-spacing:-0.02em; margin-bottom:1.2rem;
}
.cta-title em { font-style:italic; font-weight:300; color:rgba(255,255,255,0.6); }
.cta-text {
  font-size:0.97rem; color:rgba(255,255,255,0.82);
  line-height:1.8; margin-bottom:2.5rem;
}
.cta-actions { display:flex; gap:1rem; flex-wrap:wrap; }
.btn-wa {
  background:#22c55e; color:white;
  font-size:0.85rem; font-weight:700; letter-spacing:0.04em;
  padding:0.9rem 1.8rem; border-radius:8px; text-decoration:none;
  display:inline-flex; align-items:center; gap:0.5rem; transition:all .3s;
}
.btn-wa:hover { background:#16a34a; transform:translateY(-2px); box-shadow:0 12px 28px rgba(34,197,94,0.3); }
.btn-outline {
  background:rgba(255,255,255,0.08); color:white;
  font-size:0.85rem; font-weight:600; letter-spacing:0.04em;
  padding:0.9rem 1.8rem; border-radius:8px; text-decoration:none;
  border:1px solid rgba(255,255,255,0.15); transition:all .3s;
  display:inline-flex; align-items:center; gap:0.5rem;
}
.btn-outline:hover { background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.3); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACTO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-contacto {
  background:var(--negro);
  padding:7rem 3.5rem;
}
.cont-inner {
  display:grid; grid-template-columns:1fr 1fr; gap:6rem;
  max-width:1400px; margin:0 auto;
}
.cont-left {}
.cont-eyebrow {
  font-size:0.68rem; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--verde-vivo);
  display:flex; align-items:center; gap:0.6rem; margin-bottom:1.5rem;
}
.cont-eyebrow::before { content:''; width:24px; height:1.5px; background:var(--verde-vivo); }
.cont-title {
  font-family:'Fraunces',serif;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:700; line-height:1.1; color:var(--texto);
  letter-spacing:-0.02em; margin-bottom:2.5rem;
}
.cont-item {
  display:flex; gap:1rem; align-items:flex-start;
  padding:1.3rem 0; border-bottom:1px solid var(--borde);
}
.cont-item:last-child { border-bottom:none; }
.cont-ico {
  width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
  background:rgba(61,138,38,0.08); border:1px solid var(--borde);
}
.cont-item h4 {
  font-size:0.65rem; font-weight:600; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--gris-texto); margin-bottom:0.2rem; opacity:0.7;
}
.cont-item p, .cont-item a {
  font-size:0.9rem; font-weight:400; color:var(--gris-texto);
  text-decoration:none; transition:color .2s; line-height:1.55;
}
.cont-item a:hover { color:var(--verde); }

/* Form */
.form-box {
  background:var(--blanco); border-radius:16px;
  padding:2.8rem; border:1px solid var(--borde);
  box-shadow:0 4px 30px rgba(0,0,0,0.06);
}
.form-box-title {
  font-family:'Fraunces',serif;
  font-size:1.5rem; font-weight:700; color:var(--texto); margin-bottom:0.3rem;
}
.form-box-sub { font-size:0.8rem; color:var(--gris-texto); margin-bottom:2rem; }
.fg { margin-bottom:1rem; }
.fg label {
  display:block; font-size:0.65rem; font-weight:600;
  letter-spacing:0.18em; text-transform:uppercase;
  color:var(--gris-texto); margin-bottom:0.4rem;
}
.fg input, .fg select, .fg textarea {
  width:100%; padding:0.8rem 1rem;
  background:var(--negro);
  border:1px solid var(--borde); border-radius:8px;
  font-family:'Inter',sans-serif; font-size:0.88rem;
  color:var(--texto); outline:none; transition:border .25s, box-shadow .25s;
  appearance:none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color:rgba(61,138,38,0.5);
  box-shadow:0 0 0 3px rgba(61,138,38,0.08);
}
.fg input::placeholder, .fg textarea::placeholder { color:var(--gris-medio); }
.fg select option { background:var(--blanco); color:var(--texto); }
.fg textarea { resize:vertical; min-height:90px; }
.fg-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.btn-submit {
  width:100%; margin-top:0.5rem;
  background:var(--verde); color:white;
  font-family:'Inter',sans-serif; font-size:0.88rem; font-weight:700;
  letter-spacing:0.06em; text-transform:uppercase;
  border:none; border-radius:8px; padding:1rem;
  transition:all .3s;
}
.btn-submit:hover { background:var(--verde-vivo); transform:translateY(-2px); box-shadow:0 12px 30px rgba(45,110,30,0.3); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer {
  background:var(--carbon);
  border-top:1px solid var(--borde);
  padding:5rem 3.5rem 2.5rem;
}
.foot-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:4rem; margin-bottom:4rem;
  padding-bottom:4rem; border-bottom:1px solid var(--borde);
}
.foot-logo { font-size:1.1rem; font-weight:700; color:var(--texto); margin-bottom:0.25rem; }
.foot-logo span { color:var(--lima); }
.foot-tagline { font-size:0.72rem; color:var(--naranja); letter-spacing:0.12em; text-transform:uppercase; margin-bottom:1.2rem; }
.foot-desc { font-size:0.82rem; color:var(--gris-texto); line-height:1.8; margin-bottom:1.5rem; }
.foot-social { display:flex; gap:0.6rem; }
.foot-social a {
  width:36px; height:36px; border-radius:8px;
  background:rgba(0,0,0,0.04); border:1px solid var(--borde);
  display:flex; align-items:center; justify-content:center;
  font-size:0.95rem; text-decoration:none; color:var(--gris-texto);
  transition:all .2s;
}
.foot-social a:hover { background:var(--verde); color:white; border-color:var(--verde); }
.foot-col h4 {
  font-size:0.65rem; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--gris-texto); margin-bottom:1.4rem; opacity:0.7;
}
.foot-col ul { list-style:none; display:flex; flex-direction:column; gap:0.6rem; }
.foot-col li a {
  font-size:0.83rem; color:var(--gris-texto);
  text-decoration:none; transition:color .2s;
}
.foot-col li a:hover { color:var(--texto); }
.foot-bottom {
  display:flex; justify-content:space-between; align-items:center;
}
.foot-bottom p { font-size:0.7rem; color:var(--gris-texto); opacity:0.6; }

/* WhatsApp float */
.wa-float {
  position:fixed; bottom:2rem; right:2rem; z-index:400;
  width:54px; height:54px; border-radius:50%; background:#22c55e;
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem; text-decoration:none;
  box-shadow:0 6px 24px rgba(34,197,94,0.4);
  animation:wabounce 3.5s ease-in-out infinite;
  transition:transform .3s;
}
.wa-float:hover { transform:scale(1.1) !important; animation:none; }
@keyframes wabounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* TIENDA */
.section-tienda { background:var(--carbon); padding:7rem 3.5rem; border-top:1px solid var(--borde); }
.tienda-header { text-align:center; margin-bottom:4rem; }
.tienda-sub { font-size:1rem; color:var(--gris-texto); max-width:520px; margin:1rem auto 0; line-height:1.75; }
.tienda-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.tienda-cat {
  background:var(--blanco); border:1px solid var(--borde); border-radius:16px;
  padding:2.5rem 2rem; text-align:center;
  transition:border-color .3s, transform .3s, box-shadow .3s;
}
.tienda-cat:hover { border-color:rgba(61,138,38,0.3); transform:translateY(-4px); box-shadow:0 8px 28px rgba(0,0,0,0.07); }
.tienda-cat-icon {
  width:56px; height:56px; background:rgba(61,138,38,0.08); border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.2rem; color:var(--verde);
}
.tienda-cat h3 { font-family:'Fraunces',serif; font-size:1.1rem; font-weight:700; color:var(--texto); margin-bottom:0.5rem; }
.tienda-cat p { font-size:0.8rem; color:var(--gris-texto); line-height:1.65; margin-bottom:1.2rem; }
.tienda-badge {
  font-size:0.6rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase;
  background:rgba(212,74,15,0.08); color:var(--naranja);
  border:1px solid rgba(212,74,15,0.2); border-radius:20px; padding:0.3rem 0.8rem;
}
.tienda-badge-active {
  font-size:0.6rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  background:rgba(61,138,38,0.08); color:var(--verde);
  border:1px solid rgba(61,138,38,0.25); border-radius:20px; padding:0.3rem 0.8rem;
}
a.tienda-cat { text-decoration:none; display:block; cursor:pointer; }
a.tienda-cat:hover { border-color:rgba(61,138,38,0.4); transform:translateY(-6px); box-shadow:0 12px 36px rgba(0,0,0,0.09); }

/* NOSOTROS TEASER */
.section-nos-teaser {
  background:var(--negro); border-top:1px solid var(--borde); border-bottom:1px solid var(--borde);
  padding:5rem 3.5rem;
}
.nos-teaser-inner {
  display:flex; align-items:center; justify-content:space-between; gap:3rem;
  max-width:1400px; margin:0 auto;
}
.nos-teaser-eyebrow {
  font-size:0.68rem; font-weight:600; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--verde); display:flex; align-items:center; gap:0.6rem; margin-bottom:1rem;
}
.nos-teaser-eyebrow::before { content:''; width:24px; height:1.5px; background:var(--verde); }
.nos-teaser-title {
  font-family:'Fraunces',serif; font-size:clamp(1.8rem,3vw,2.8rem);
  font-weight:700; color:var(--texto); letter-spacing:-0.02em; margin-bottom:0.8rem;
}
.nos-teaser-title em { font-style:italic; font-weight:300; color:var(--lima); }
.nos-teaser-text { font-size:0.95rem; color:var(--gris-texto); line-height:1.8; max-width:540px; }
.btn-nos {
  display:inline-flex; align-items:center; gap:0.6rem; flex-shrink:0;
  background:transparent; color:var(--texto); font-size:0.85rem; font-weight:600;
  border:1px solid var(--gris-medio); padding:0.9rem 1.8rem; border-radius:8px;
  text-decoration:none; transition:all .3s; letter-spacing:0.04em; white-space:nowrap;
}
.btn-nos:hover { background:rgba(61,138,38,0.05); border-color:var(--verde); color:var(--verde); }

/* CENTERING WRAPPER */
.inner { max-width:1400px; margin:0 auto; width:100%; }

/* REVEAL */
.rv { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.rv.in { opacity:1; transform:translateY(0); }
.rv.d1 { transition-delay:.1s; } .rv.d2 { transition-delay:.2s; }
.rv.d3 { transition-delay:.3s; } .rv.d4 { transition-delay:.4s; }

/* RESPONSIVE */
@media (max-width:1100px) {
  .hero-content { grid-template-columns:1fr; gap:3rem; }
  .hero-right { display:none; }
  .port-photo-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .pg-card.tall { grid-row:span 1; }
  .cont-inner { grid-template-columns:1fr; gap:3rem; }
  .foot-top { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .tienda-grid { grid-template-columns:repeat(2,1fr); }
  .nos-teaser-inner { flex-direction:column; align-items:flex-start; }
}
@media (max-width:720px) {
  nav { padding:0 1.5rem; }
  .nav-toggle { display:flex; }
  nav .nav-menu {
    position:fixed;
    top:0; right:0;
    width:min(300px,85vw);
    height:100vh;
    background:var(--blanco);
    box-shadow:-4px 0 24px rgba(0,0,0,0.12);
    flex-direction:column;
    justify-content:flex-start;
    align-items:stretch;
    padding:5rem 1.5rem 2rem;
    gap:0;
    transform:translateX(100%);
    transition:transform .3s ease;
    z-index:600;
    list-style:none;
  }
  nav .nav-menu.open { transform:translateX(0); }
  nav .nav-menu li { border-bottom:1px solid var(--borde); }
  nav .nav-menu li a {
    display:block;
    padding:1rem;
    color:var(--texto) !important;
    font-size:1rem;
  }
  nav .nav-menu li a:hover { background:rgba(61,138,38,0.06); color:var(--verde) !important; }
  nav .nav-menu .nav-btn { text-align:center; margin-top:0.5rem; }
  .hero-content,
  .section-portafolio, .section-tienda, .section-marcas,
  .section-nos-teaser, .section-cta .cta-content,
  .section-contacto, footer { padding-left:1.5rem; padding-right:1.5rem; }
  .intro-strip { padding-left:1.5rem; padding-right:1.5rem; }
  .intro-inner { grid-template-columns:1fr; }
  .intro-divider { display:none; }
  .port-photo-grid { grid-template-columns:1fr; }
  .tienda-grid { grid-template-columns:1fr; }
  .foot-top { grid-template-columns:1fr; }
  .marcas-row { gap:2.5rem; }
}

