:root {
    --green-deep: #1A3A2E;
    --green-mid: #2D5240;
    --green-soft: #5C7158;
    --orange: #C44521;
    --orange-soft: #E8845F;
    --cream: #F5F1E8;
    --cream-soft: #FAF8F2;
    --paper: #FFFFFF;
    --ink: #1A1A14;
    --ink-soft: #4A4A40;
    --ink-muted: #8A8A7D;
    --border: rgba(26, 58, 46, 0.12);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  .container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

  /* CUSTOM CURSOR */
  .cursor-dot { position: fixed; width: 8px; height: 8px; background: var(--orange); border-radius: 50%; pointer-events: none; z-index: 9999; transition: transform 0.15s, opacity 0.3s; mix-blend-mode: difference; opacity: 0; transform: translate(-50%, -50%); }
  .cursor-dot.show { opacity: 1; }
  @media (hover: none) { .cursor-dot { display: none; } }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245, 241, 232, 0.78);
    backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  }
  nav.scrolled { background: rgba(245, 241, 232, 0.96); }
  nav.hidden-nav { transform: translateY(-100%); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1320px; margin: 0 auto; }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-mark { width: 36px; height: 36px; background: var(--green-deep); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--cream); font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px; transition: transform 0.5s; }
  .logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
  .logo-text { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; color: var(--green-deep); letter-spacing: 0.05em; }
  .nav-links { display: none; gap: 32px; align-items: center; }
  .nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background: var(--green-deep); transition: width 0.4s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .nav-links a:hover { color: var(--green-deep); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { display: none; align-items: center; gap: 12px; }
  .lang-toggle { display: flex; gap: 4px; padding: 4px; background: rgba(26, 58, 46, 0.06); border-radius: 999px; }
  .lang-toggle button { border: none; background: transparent; color: var(--ink-muted); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; cursor: pointer; font-family: inherit; letter-spacing: 0.05em; transition: all 0.25s; }
  .lang-toggle button.active { background: var(--green-deep); color: var(--cream); }
  .nav-portal { color: var(--green-deep); text-decoration: none; font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--green-deep); border-radius: 999px; transition: all 0.3s; }
  .nav-portal:hover { background: var(--green-deep); color: var(--cream); }
  .cta-button { background: var(--green-deep); color: var(--cream); padding: 10px 18px; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1); border: none; cursor: pointer; font-family: inherit; position: relative; overflow: hidden; }
  .cta-button::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%); transform: translateX(-100%); transition: transform 0.6s; }
  .cta-button:hover::before { transform: translateX(100%); }
  .cta-button:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(26, 58, 46, 0.25); }
  .cta-button.orange { background: var(--orange); }
  .cta-button.orange:hover { background: var(--green-deep); }
  .cta-button.outline { background: transparent; color: var(--green-deep); border: 1px solid var(--green-deep); }
  .cta-button.outline:hover { background: var(--green-deep); color: var(--cream); }
  .menu-btn { background: transparent; border: none; cursor: pointer; color: var(--green-deep); padding: 6px; display: flex; }

  /* MOBILE MENU */
  .mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 100%; max-width: 380px; background: var(--cream); z-index: 200; transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.3, 1); box-shadow: -20px 0 60px rgba(26, 58, 46, 0.15); display: flex; flex-direction: column; }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border); }
  .mobile-menu-links { flex: 1; padding: 32px 24px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
  .mobile-menu-links a { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 400; color: var(--green-deep); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; transition: transform 0.3s; }
  .mobile-menu-links a:hover { transform: translateX(8px); }
  .mobile-menu-footer { padding: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
  .overlay { position: fixed; inset: 0; background: rgba(26, 26, 20, 0.5); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.4s; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .overlay.open { opacity: 1; pointer-events: all; }

  /* HERO - CINEMATIC */
  .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 100px; overflow: hidden; background: var(--green-deep); }
  .hero-image {
    position: absolute; inset: 0;
    background-image: url('assets/hero-predio-nocturno.jpg');
    background-size: cover; background-position: center;
    transform: scale(1.15);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 2s cubic-bezier(0.7, 0, 0.3, 1), transform 2s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .hero-image.loaded { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); transform: scale(1.02); }
  .hero-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 46, 0.92) 0%, rgba(26, 58, 46, 0.72) 40%, rgba(26, 58, 46, 0.4) 80%, rgba(196, 69, 33, 0.35) 100%);
  }
  .hero-content { position: relative; z-index: 2; max-width: 1000px; }
  .hero-kicker { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: rgba(245, 241, 232, 0.1); color: var(--cream); font-size: 11px; font-weight: 600; border-radius: 999px; letter-spacing: 0.15em; margin-bottom: 36px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(245, 241, 232, 0.18); text-transform: uppercase; opacity: 0; transform: translateY(20px); animation: fadeUp 1s cubic-bezier(0.2, 0.9, 0.3, 1) 0.6s forwards; }
  .hero-kicker .pulse { width: 6px; height: 6px; background: var(--orange-soft); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 132, 95, 0.7); } 50% { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 0 10px rgba(232, 132, 95, 0); } }

  .hero-title { font-family: 'Fraunces', serif; font-weight: 300; font-size: clamp(52px, 10vw, 124px); line-height: 0.94; letter-spacing: -0.04em; color: var(--cream); margin-bottom: 32px; }
  .hero-title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
  .hero-title .line > span { display: inline-block; transform: translateY(110%); transition: transform 1.4s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .hero-title.in .line:nth-child(1) > span { transform: translateY(0); transition-delay: 0.7s; }
  .hero-title.in .line:nth-child(2) > span { transform: translateY(0); transition-delay: 0.85s; }
  .hero-title.in .line:nth-child(3) > span { transform: translateY(0); transition-delay: 1s; }
  .hero-title em { font-style: italic; font-weight: 300; color: var(--orange-soft); }

  .hero-sub { font-size: clamp(17px, 2.2vw, 22px); line-height: 1.55; color: rgba(245, 241, 232, 0.8); max-width: 640px; margin-bottom: 48px; opacity: 0; transform: translateY(20px); animation: fadeUp 1s cubic-bezier(0.2, 0.9, 0.3, 1) 1.6s forwards; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; opacity: 0; transform: translateY(20px); animation: fadeUp 1s cubic-bezier(0.2, 0.9, 0.3, 1) 1.85s forwards; }
  .hero-actions .cta-button { padding: 16px 28px; font-size: 14px; }
  .hero-actions .cta-button.outline { color: var(--cream); border-color: rgba(245, 241, 232, 0.4); }
  .hero-actions .cta-button.outline:hover { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }

  .hero-meta { position: absolute; bottom: 32px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: flex-end; z-index: 2; opacity: 0; animation: fadeIn 1s ease 2.2s forwards; }
  .hero-scroll { color: rgba(245, 241, 232, 0.5); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; display: flex; align-items: center; gap: 14px; writing-mode: vertical-rl; transform: rotate(180deg); }
  .hero-scroll::after { content: ''; width: 1px; height: 40px; background: rgba(245, 241, 232, 0.4); animation: scrollLine 2.2s ease-in-out infinite; }
  @keyframes scrollLine { 0%, 100% { transform: scaleY(0.3); transform-origin: top; } 50% { transform: scaleY(1); } }
  .hero-corner-tag { font-family: 'Fraunces', serif; font-style: italic; color: rgba(245, 241, 232, 0.6); font-size: 14px; text-align: right; }
  .hero-corner-tag strong { display: block; font-style: normal; font-weight: 500; color: var(--cream); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px; }

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

  /* MARQUEE PRODUCTS */
  .marquee { background: var(--cream); padding: 28px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
  .marquee-track { display: flex; gap: 64px; animation: scroll 40s linear infinite; width: max-content; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-item { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
  .marquee-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-soft); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .marquee-icon img { width: 100%; height: 100%; object-fit: cover; }
  .marquee-label { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400; color: var(--green-deep); letter-spacing: -0.01em; }
  .marquee-dot { color: var(--orange); font-size: 20px; }
  @keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* STATS RIBBON */
  .stats-ribbon { background: var(--green-deep); color: var(--cream); padding: 56px 0; position: relative; overflow: hidden; }
  .stats-ribbon::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(232, 132, 95, 0.08) 0%, transparent 70%); }
  .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; position: relative; z-index: 1; }
  .stat-block { text-align: left; }
  .stat-num { font-family: 'Fraunces', serif; font-size: clamp(44px, 7vw, 76px); font-weight: 400; color: var(--cream); letter-spacing: -0.03em; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
  .stat-num .suffix { font-size: 0.45em; color: var(--orange-soft); margin-left: 2px; }
  .stat-label { font-size: 12px; color: rgba(245, 241, 232, 0.6); margin-top: 10px; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.5; }

  /* SECTION COMMONS */
  section { padding: 120px 0; position: relative; }
  .section-kicker { font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; display: flex; align-items: center; gap: 14px; }
  .section-kicker::before { content: ''; width: 40px; height: 1px; background: var(--orange); }
  .section-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(36px, 5.5vw, 68px); line-height: 1; letter-spacing: -0.03em; color: var(--green-deep); margin-bottom: 28px; max-width: 850px; }
  .section-title em { font-style: italic; color: var(--orange); }
  .section-intro { font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: var(--ink-soft); max-width: 640px; margin-bottom: 72px; }

  /* SERVICIOS - 5 cards with images */
  #servicios { background: var(--paper); }
  .servicios-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  .servicio-card { background: var(--cream-soft); border-radius: 28px; padding: 0; position: relative; overflow: hidden; transition: all 0.6s cubic-bezier(0.2, 0.9, 0.3, 1); border: 1px solid var(--border); cursor: pointer; }
  .servicio-card.featured { grid-column: span 1; }
  .servicio-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(26, 58, 46, 0.15); }
  .servicio-img { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; overflow: hidden; }
  .servicio-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26, 58, 46, 0.6) 100%); }
  .servicio-img-inner { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .servicio-card:hover .servicio-img-inner { transform: scale(1.08); }
  .servicio-num { position: absolute; top: 20px; left: 24px; z-index: 2; font-family: 'Fraunces', serif; font-size: 12px; font-weight: 500; color: var(--cream); letter-spacing: 0.2em; padding: 6px 14px; background: rgba(26, 58, 46, 0.75); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 999px; }
  .servicio-icon-tag { position: absolute; bottom: 20px; right: 24px; z-index: 2; width: 56px; height: 56px; background: var(--orange); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--cream); transform: rotate(-6deg); transition: all 0.6s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .servicio-card:hover .servicio-icon-tag { transform: rotate(0) scale(1.08); }
  .servicio-content { padding: 28px 32px 36px; }
  .servicio-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(24px, 3.5vw, 30px); line-height: 1.1; color: var(--green-deep); margin-bottom: 14px; letter-spacing: -0.015em; }
  .servicio-body { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 20px; }
  .servicio-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
  .servicio-features li { list-style: none; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--green-mid); }
  .servicio-features li::before { content: ''; width: 4px; height: 4px; background: var(--orange); border-radius: 50%; }
  .servicio-link { color: var(--green-deep); text-decoration: none; font-weight: 600; font-size: 12px; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; text-transform: uppercase; letter-spacing: 0.1em; }
  .servicio-link:hover { gap: 14px; color: var(--orange); }

  /* PRODUCTOS GRID */
  #productos { background: var(--cream); position: relative; overflow: hidden; }
  .productos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .producto-tile { aspect-ratio: 1; border-radius: 24px; overflow: hidden; position: relative; cursor: pointer; transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .producto-tile:hover { transform: translateY(-6px) scale(1.02); }
  .producto-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .producto-tile:hover .producto-bg { transform: scale(1.1); }
  .producto-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26, 58, 46, 0.05) 30%, rgba(26, 58, 46, 0.85) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: var(--cream); }
  .producto-name { font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; letter-spacing: -0.01em; line-height: 1.1; }
  .producto-stat { font-size: 11px; color: rgba(245, 241, 232, 0.7); margin-top: 4px; letter-spacing: 0.05em; }

  /* IMPACTO SECTION */
  #impacto { background: var(--green-deep); color: var(--cream); position: relative; overflow: hidden; }
  #impacto::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=85&auto=format&fit=crop'); background-size: cover; background-position: center; opacity: 0.15; mask-image: linear-gradient(to left, black 40%, transparent 100%); -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%); }
  #impacto .section-kicker { color: var(--orange-soft); }
  #impacto .section-kicker::before { background: var(--orange-soft); }
  #impacto .section-title { color: var(--cream); }
  #impacto .section-intro { color: rgba(245, 241, 232, 0.75); }
  .impacto-grid { display: grid; grid-template-columns: 1fr; gap: 16px; position: relative; z-index: 1; }
  .impacto-card { padding: 32px 28px; border: 1px solid rgba(245, 241, 232, 0.15); border-radius: 24px; background: rgba(15, 35, 28, 0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); transition: all 0.4s; }
  .impacto-card:hover { border-color: var(--orange); background: rgba(15, 35, 28, 0.6); transform: translateY(-4px); }
  .impacto-icon { width: 48px; height: 48px; background: rgba(232, 132, 95, 0.15); color: var(--orange-soft); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
  .impacto-num { font-family: 'Fraunces', serif; font-size: clamp(40px, 5.5vw, 56px); font-weight: 400; color: var(--cream); letter-spacing: -0.025em; line-height: 1; margin-bottom: 8px; }
  .impacto-num .suffix { color: var(--orange-soft); font-size: 0.5em; margin-left: 4px; }
  .impacto-label { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; color: var(--cream); margin-bottom: 8px; }
  .impacto-body { font-size: 14px; line-height: 1.5; color: rgba(245, 241, 232, 0.65); }

  /* NOSOTROS */
  #nosotros { background: var(--cream); position: relative; overflow: hidden; }
  #nosotros::before { content: ''; position: absolute; top: -100px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(196, 69, 33, 0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
  .nosotros-grid { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; z-index: 1; align-items: start; }
  .nosotros-text { max-width: 620px; }
  .nosotros-text .section-title { font-size: clamp(36px, 5vw, 60px); }
  .nosotros-lead { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.35; color: var(--green-deep); letter-spacing: -0.015em; margin-bottom: 28px; }
  .nosotros-body { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 18px; }
  .nosotros-body strong { color: var(--green-deep); font-weight: 600; }
  .nosotros-data-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .data-card { background: var(--paper); border: 1px solid var(--border); border-radius: 20px; padding: 24px 22px; transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1); position: relative; overflow: hidden; }
  .data-card:hover { transform: translateY(-4px); border-color: var(--green-deep); box-shadow: 0 16px 40px rgba(26, 58, 46, 0.1); }
  .data-card.highlight { background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%); color: var(--cream); border-color: var(--green-deep); grid-column: span 2; }
  .data-card.highlight::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(232, 132, 95, 0.2) 0%, transparent 70%); }
  .data-icon { width: 40px; height: 40px; background: rgba(196, 69, 33, 0.1); color: var(--orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .data-card.highlight .data-icon { background: rgba(232, 132, 95, 0.2); color: var(--orange-soft); }
  .data-num { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(38px, 5vw, 52px); color: var(--green-deep); letter-spacing: -0.025em; line-height: 1; margin-bottom: 6px; }
  .data-card.highlight .data-num { color: var(--cream); }
  .data-label { font-size: 11px; font-weight: 600; color: var(--ink-muted); letter-spacing: 0.12em; text-transform: uppercase; }
  .data-card.highlight .data-label { color: rgba(245, 241, 232, 0.7); }
  .data-value { font-family: 'Fraunces', serif; font-weight: 500; font-size: 24px; color: var(--cream); margin-top: 8px; line-height: 1.1; letter-spacing: -0.01em; }
  .data-sub { font-size: 13px; color: rgba(245, 241, 232, 0.7); margin-top: 4px; }
  .legal-strip { background: var(--cream-soft); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; margin-top: 24px; display: flex; flex-wrap: wrap; gap: 16px 32px; align-items: center; }
  .legal-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-soft); }
  .legal-item i { color: var(--green-mid); flex-shrink: 0; }
  .legal-item strong { color: var(--green-deep); font-weight: 600; }
  @media (min-width: 900px) {
    .nosotros-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
  }

  /* CADENA DE EXPORTACIÓN */
  #exportacion-cadena { background: var(--ink-soft); color: var(--cream); position: relative; overflow: hidden; padding: 120px 0; }
  #exportacion-cadena::before { content: ''; position: absolute; top: -100px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(196, 69, 33, 0.12) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
  #exportacion-cadena::after { content: ''; position: absolute; bottom: -150px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(26, 58, 46, 0.4) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
  #exportacion-cadena .section-kicker { color: var(--orange-soft); }
  #exportacion-cadena .section-title { color: var(--cream); }
  #exportacion-cadena .section-title em { color: var(--orange-soft); font-family: 'Fraunces', serif; font-style: italic; }
  #exportacion-cadena .section-intro { color: rgba(245, 241, 232, 0.75); max-width: 720px; margin-bottom: 80px; position: relative; z-index: 1; }

  .cadena-flow { display: grid; grid-template-columns: 1fr; gap: 24px; position: relative; z-index: 1; }
  @media (min-width: 700px) { .cadena-flow { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
  @media (min-width: 1100px) { .cadena-flow { grid-template-columns: repeat(3, 1fr); gap: 36px; } }

  .cadena-step { position: relative; background: rgba(245, 241, 232, 0.04); border: 1px solid rgba(245, 241, 232, 0.1); border-radius: 24px; overflow: hidden; transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .cadena-step:hover { transform: translateY(-6px); border-color: rgba(232, 132, 95, 0.4); background: rgba(245, 241, 232, 0.06); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3); }
  .cadena-img { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--ink); }
  .cadena-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
  .cadena-step:hover .cadena-img img { transform: scale(1.06); }
  .cadena-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%); pointer-events: none; }
  .cadena-num { position: absolute; top: 18px; left: 20px; z-index: 2; font-family: 'Fraunces', serif; font-style: italic; font-size: 13px; color: var(--orange-soft); letter-spacing: 0.15em; }
  .cadena-content { padding: 28px 26px 30px; }
  .cadena-title { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(22px, 2.3vw, 28px); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; color: var(--cream); }
  .cadena-title em { font-style: italic; color: var(--orange-soft); }
  .cadena-desc { font-size: 14.5px; line-height: 1.6; color: rgba(245, 241, 232, 0.7); }

  /* badge tipo dato técnico */
  .cadena-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(232, 132, 95, 0.15); border: 1px solid rgba(232, 132, 95, 0.3); color: var(--orange-soft); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 14px; }

  /* línea conectora desktop */
  @media (min-width: 1100px) {
    .cadena-step:not(:nth-child(3n))::after { content: ''; position: absolute; right: -36px; top: 50%; width: 36px; height: 1px; background: linear-gradient(90deg, rgba(232, 132, 95, 0.4), transparent); transform: translateY(-50%); pointer-events: none; }
  }

  /* CIERRE DE SECCIÓN: stats de exportación */
  .export-stats { margin-top: 80px; padding-top: 60px; border-top: 1px solid rgba(245, 241, 232, 0.1); display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; position: relative; z-index: 1; }
  @media (min-width: 800px) { .export-stats { grid-template-columns: repeat(4, 1fr); } }
  .export-stat { text-align: center; }
  .export-stat-num { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(38px, 4.5vw, 56px); color: var(--orange-soft); letter-spacing: -0.025em; line-height: 1; margin-bottom: 8px; }
  .export-stat-label { font-size: 11px; font-weight: 600; color: rgba(245, 241, 232, 0.6); letter-spacing: 0.15em; text-transform: uppercase; }

  /* GALLERY VIDEO ITEM */
  .gallery-item.video-item { cursor: default; }
  .gallery-item.video-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gallery-item.video-item::after { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.7) 100%); opacity: 1; }
  .video-badge { position: absolute; top: 16px; left: 16px; z-index: 3; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); color: white; padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
  .video-badge .dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse-dot 1.5s ease-in-out infinite; }
  @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
  .video-controls { position: absolute; bottom: 16px; right: 16px; z-index: 3; display: flex; gap: 8px; }
  .video-btn { background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); border: none; color: white; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
  .video-btn:hover { background: rgba(196, 69, 33, 0.9); }

  /* OPERACION GALLERY */
  #operacion { background: var(--cream); position: relative; overflow: hidden; }
  #operacion::before { content: ''; position: absolute; top: 50%; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(196, 69, 33, 0.05) 0%, transparent 70%); border-radius: 50%; transform: translateY(-50%); pointer-events: none; }
  .gallery-intro { max-width: 720px; margin-bottom: 56px; position: relative; z-index: 1; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; position: relative; z-index: 1; }
  @media (min-width: 700px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 20px; }
    .gallery-item.large { grid-column: span 2; grid-row: span 2; }
    .gallery-item.tall { grid-row: span 2; }
  }
  @media (min-width: 1100px) {
    .gallery-grid { grid-auto-rows: 260px; }
  }
  .gallery-item { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; background: var(--ink-soft); aspect-ratio: 4/3; }
  @media (min-width: 700px) {
    .gallery-item { aspect-ratio: auto; height: 100%; }
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1); display: block; }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%); opacity: 0.6; transition: opacity 0.4s ease; pointer-events: none; }
  .gallery-item:hover::after { opacity: 0.85; }
  .gallery-caption { position: absolute; bottom: 16px; left: 18px; right: 18px; color: white; z-index: 2; pointer-events: none; }
  .gallery-caption .num { font-family: 'Fraunces', serif; font-size: 11px; opacity: 0.7; letter-spacing: 0.15em; }
  .gallery-caption .text { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(14px, 1.4vw, 18px); line-height: 1.3; margin-top: 4px; }

  /* PROCESO */
  #proceso { background: var(--cream-soft); }
  .proceso-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .proceso-step { background: var(--paper); border: 1px solid var(--border); border-radius: 24px; padding: 32px 28px; position: relative; transition: all 0.4s; }
  .proceso-step:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: 0 20px 50px rgba(26, 58, 46, 0.1); }
  .proceso-num { font-family: 'Fraunces', serif; font-size: 56px; font-weight: 300; color: var(--orange); letter-spacing: -0.04em; line-height: 1; margin-bottom: 20px; }
  .proceso-title { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 500; color: var(--green-deep); margin-bottom: 12px; letter-spacing: -0.01em; }
  .proceso-body { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

  /* COBERTURA */
  #cobertura { background: var(--paper); position: relative; }
  .cobertura-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .region { background: var(--paper); border: 1px solid var(--border); border-radius: 24px; padding: 0; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .region:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26, 58, 46, 0.12); border-color: rgba(26, 58, 46, 0.3); }
  .region-img { aspect-ratio: 5/3; background-size: cover; background-position: center; position: relative; transition: transform 1s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .region:hover .region-img { transform: scale(1.06); }
  .region-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(26, 58, 46, 0.8) 100%); }
  .region-tag { position: absolute; top: 16px; left: 20px; z-index: 2; font-family: 'Fraunces', serif; font-size: 10px; font-weight: 600; color: var(--cream); letter-spacing: 0.2em; padding: 5px 12px; background: rgba(196, 69, 33, 0.9); border-radius: 999px; }
  .region-overlay { position: absolute; bottom: 20px; left: 24px; right: 24px; z-index: 2; }
  .region-name { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; color: var(--cream); letter-spacing: -0.015em; line-height: 1.05; }
  .region-body { padding: 22px 28px 28px; font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

  /* MANIFESTO */
  .manifesto { background: var(--cream); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
  .manifesto::before { content: ''; position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1488459716781-31db52582fe9?w=1600&q=85&auto=format&fit=crop'); background-size: cover; background-position: center; opacity: 0.08; }
  .manifesto-content { position: relative; z-index: 1; }
  .manifesto-quote { font-family: 'Fraunces', serif; font-weight: 300; font-style: italic; font-size: clamp(28px, 5vw, 56px); line-height: 1.15; color: var(--green-deep); letter-spacing: -0.025em; max-width: 900px; margin: 0 auto 32px; }
  .manifesto-quote::before, .manifesto-quote::after { content: '"'; color: var(--orange); font-style: normal; font-weight: 400; }
  .manifesto-attribution { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-muted); }

  /* TESTIMONIALS */
  .testimonial { background: var(--cream-soft); padding: 120px 0; }
  .testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card { background: var(--paper); border-radius: 28px; padding: 40px 32px; border: 1px solid var(--border); position: relative; transition: all 0.4s; }
  .testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(26, 58, 46, 0.1); }
  .testimonial-card::before { content: '"'; position: absolute; top: 24px; right: 36px; font-family: 'Fraunces', serif; font-size: 96px; color: var(--orange); opacity: 0.3; line-height: 1; }
  .testimonial-text { font-family: 'Fraunces', serif; font-style: italic; font-size: 19px; line-height: 1.4; color: var(--green-deep); margin-bottom: 28px; letter-spacing: -0.015em; }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .testimonial-avatar { width: 48px; height: 48px; background: var(--green-deep); color: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; }
  .testimonial-author-info h5 { font-size: 14px; font-weight: 500; color: var(--green-deep); }
  .testimonial-author-info span { font-size: 12px; color: var(--ink-muted); }

  /* CTA */
  .cta-section { background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%); color: var(--cream); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
  .cta-section::before { content: ''; position: absolute; top: -300px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(196, 69, 33, 0.2) 0%, transparent 70%); border-radius: 50%; }
  .cta-section::after { content: ''; position: absolute; bottom: -300px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(232, 132, 95, 0.18) 0%, transparent 70%); border-radius: 50%; }
  .cta-content { position: relative; z-index: 1; }
  .cta-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(36px, 6vw, 72px); line-height: 1; letter-spacing: -0.03em; color: var(--cream); margin-bottom: 24px; }
  .cta-title em { font-style: italic; color: var(--orange-soft); }
  .cta-sub { font-size: 18px; line-height: 1.5; color: rgba(245, 241, 232, 0.8); max-width: 540px; margin: 0 auto 40px; }
  .cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

  /* CONTACTO */
  #contacto { background: var(--cream); position: relative; }
  .contacto-grid { display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 1; }
  .contacto-left h2 { font-family: 'Fraunces', serif; font-size: clamp(40px, 6.5vw, 72px); font-weight: 400; line-height: 1; color: var(--green-deep); margin-bottom: 28px; letter-spacing: -0.03em; }
  .contacto-left h2 em { font-style: italic; color: var(--orange); }
  .contacto-left p { font-size: 17px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 40px; max-width: 480px; }
  .contacto-info { display: flex; flex-direction: column; gap: 4px; }
  .contacto-info-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; color: var(--ink); font-size: 15px; border-bottom: 1px solid var(--border); transition: padding 0.3s; }
  .contacto-info-item:hover { padding-left: 8px; }
  .contacto-info-item:last-child { border-bottom: none; }
  .contacto-info-item .icon { width: 44px; height: 44px; background: var(--paper); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-deep); transition: all 0.3s; }
  .contacto-info-item:hover .icon { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
  .form-card { background: var(--paper); border-radius: 28px; padding: 40px; box-shadow: 0 30px 80px rgba(26, 58, 46, 0.08); border: 1px solid var(--border); }
  .form-card h3 { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 500; color: var(--green-deep); margin-bottom: 28px; letter-spacing: -0.01em; }
  .form-group { margin-bottom: 18px; }
  .form-group label { display: block; font-size: 11px; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px; background: var(--cream-soft); font-family: inherit; font-size: 15px; color: var(--ink); transition: all 0.25s; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green-deep); background: var(--paper); box-shadow: 0 0 0 4px rgba(26, 58, 46, 0.08); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .form-submit { width: 100%; padding: 16px; background: var(--orange); color: var(--cream); border: none; border-radius: 14px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
  .form-submit:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(26, 58, 46, 0.25); }
  .form-success { background: rgba(45, 82, 64, 0.1); border: 1px solid var(--green-mid); color: var(--green-deep); padding: 16px; border-radius: 14px; font-size: 14px; display: none; align-items: center; gap: 10px; margin-top: 16px; }
  .form-success.show { display: flex; }

  /* FOOTER */
  footer { background: #0F231C; color: rgba(245, 241, 232, 0.6); padding: 72px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand .logo-text { color: var(--cream); }
  .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.6; color: rgba(245, 241, 232, 0.5); max-width: 340px; }
  .footer-col h5 { color: var(--cream); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(245, 241, 232, 0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--orange-soft); }
  .footer-bottom { padding-top: 32px; border-top: 1px solid rgba(245, 241, 232, 0.1); display: flex; flex-direction: column; gap: 12px; align-items: flex-start; font-size: 12px; }

  /* RESPONSIVE */
  @media (min-width: 768px) {
    .nav-links, .nav-cta { display: flex; }
    .menu-btn { display: none; }
    .hero { padding: 180px 0 100px; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .servicios-grid { grid-template-columns: repeat(2, 1fr); }
    .servicios-grid .featured { grid-column: span 2; }
    .servicios-grid .featured .servicio-img { aspect-ratio: 21/9; }
    .productos-grid { grid-template-columns: repeat(4, 1fr); }
    .impacto-grid { grid-template-columns: repeat(3, 1fr); }
    .proceso-grid { grid-template-columns: repeat(2, 1fr); }
    .cobertura-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .contacto-grid { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  }
  @media (min-width: 1024px) {
    .servicios-grid { grid-template-columns: repeat(3, 1fr); }
    .servicios-grid .featured { grid-column: span 2; }
    .cobertura-grid { grid-template-columns: repeat(4, 1fr); }
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
    .proceso-grid { grid-template-columns: repeat(4, 1fr); }
  }

  /* REVEALS */
  .reveal { opacity: 0; transform: translateY(60px); transition: all 1.2s cubic-bezier(0.2, 0.9, 0.3, 1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-img { position: relative; overflow: hidden; }
  .reveal-img::before { content: ''; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1); z-index: 5; }
  .reveal-img.visible::before { transform: translateX(100%); }
  .stagger-1 { transition-delay: 0.1s; }
  .stagger-2 { transition-delay: 0.2s; }
  .stagger-3 { transition-delay: 0.3s; }
  .stagger-4 { transition-delay: 0.4s; }
  .stagger-5 { transition-delay: 0.5s; }