    :root {
      --earth: #2C2416;
      --earth-mid: #4A3728;
      --soil: #6B4F35;
      --wheat: #C8A96E;
      --wheat-light: #E8D5A3;
      --field: #3D5A2E;
      --field-mid: #4E7340;
      --grass: #6B9E52;
      --grass-light: #8DBB6B;
      --sage: #A8C498;
      --cream: #F5F0E8;
      --white: #FDFAF5;
      --text-dark: #1A140C;
      --text-mid: #4A3F32;
      --text-light: #8A7A66;
      --accent: #C8A96E;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6vw;
      height: 72px;
      background: rgba(253, 250, 245, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200, 169, 110, 0.2);
      transition: box-shadow .3s;
    }

    nav.scrolled {
      box-shadow: 0 4px 32px rgba(44, 36, 22, 0.08);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo-mark {
      width: 36px;
      height: 36px;
      background: var(--field);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      color: var(--wheat-light);
      font-size: 18px;
    }

    .nav-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--earth);
      letter-spacing: -0.5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-mid);
      letter-spacing: 0.3px;
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--grass);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .nav-links a:hover {
      color: var(--field);
    }

    .nav-links a:hover::after {
      transform: scaleX(1);
    }

    .btn-nav {
      background: var(--field);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 6px;
      font-weight: 600 !important;
      font-size: 13px !important;
      letter-spacing: 0.5px;
      transition: background .2s, transform .15s !important;
    }

    .btn-nav::after {
      display: none !important;
    }

    .btn-nav:hover {
      background: var(--field-mid) !important;
      transform: translateY(-1px);
    }

    .nav-hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }

    .nav-hamburger span {
      width: 24px;
      height: 2px;
      background: var(--earth);
      border-radius: 2px;
      transition: .3s;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
      position: relative;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 6vw 80px 8vw;
      position: relative;
      z-index: 2;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(109, 158, 82, 0.12);
      border: 1px solid rgba(109, 158, 82, 0.3);
      color: var(--field);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 28px;
      width: fit-content;
      animation: fadeUp .8s ease both;
    }

    .hero-tag::before {
      content: '●';
      font-size: 8px;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .4
      }
    }

    .hero-h1 {
      font-size: clamp(42px, 5vw, 68px);
      font-weight: 900;
      line-height: 1.05;
      color: var(--earth);
      letter-spacing: -1.5px;
      margin-bottom: 22px;
      animation: fadeUp .8s .15s ease both;
    }

    .hero-h1 em {
      font-style: normal;
      color: var(--field);
      position: relative;
    }

    .hero-h1 em::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 4px;
      background: var(--wheat);
      border-radius: 2px;
      z-index: -1;
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-mid);
      max-width: 460px;
      margin-bottom: 40px;
      font-weight: 400;
      animation: fadeUp .8s .3s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .8s .45s ease both;
      margin-bottom: 60px;
    }

    .btn-primary {
      background: var(--field);
      color: var(--white);
      padding: 16px 32px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: all .2s;
      border: 2px solid var(--field);
    }

    .btn-primary:hover {
      background: var(--earth);
      border-color: var(--earth);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(61, 90, 46, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--earth);
      padding: 16px 32px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid var(--wheat);
      transition: all .2s;
    }

    .btn-secondary:hover {
      background: var(--cream);
      border-color: var(--earth);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      animation: fadeUp .8s .6s ease both;
      padding-top: 36px;
      border-top: 1px solid rgba(200, 169, 110, 0.3);
    }

    .stat {}

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--field);
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 4px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }

    .hero-right {
      position: relative;
      background: var(--cream);
      overflow: hidden;
    }

    .hero-image-container {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #3D5A2E 0%, #2C4020 40%, #1A2E14 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* SVG landscape illustration */
    .hero-landscape {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
    }

    .hero-overlay-card {
      position: absolute;
      bottom: 40px;
      left: 28px;
      background: var(--white);
      border-radius: 12px;
      padding: 18px 24px;
      box-shadow: 0 20px 60px rgba(44, 36, 22, 0.35);
      min-width: 200px;
      z-index: 10;
      animation: floatCard 4s ease-in-out infinite;
    }

    @keyframes floatCard {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    .card-label {
      font-size: 11px;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .card-value {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--field);
      margin-top: 2px;
    }

    .card-sub {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 2px;
    }

    .hero-badge {
      position: absolute;
      top: 32px;
      right: 24px;
      background: var(--wheat);
      border-radius: 50%;
      width: 110px;
      height: 110px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: 0 8px 32px rgba(200, 169, 110, 0.5);
      animation: floatCard 4s 2s ease-in-out infinite;
      z-index: 10;
    }

    .badge-main {
      font-family: 'Playfair Display', serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--earth);
      line-height: 1.3;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── SECTION BASE ─── */
    section {
      padding: 100px 8vw;
    }

    .section-tag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--grass);
      margin-bottom: 14px;
      display: block;
    }

    .section-title {
      font-size: clamp(32px, 3.5vw, 50px);
      font-weight: 800;
      color: var(--earth);
      line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 18px;
    }

    .section-sub {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-mid);
      max-width: 560px;
    }

    /* ─── PROPUESTA ─── */
    #propuesta {
      background: var(--earth);
      color: var(--white);
      padding: 80px 8vw;
    }

    .propuesta-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
    }

    .prop-card {
      background: rgba(255, 255, 255, 0.04);
      padding: 48px 36px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      position: relative;
      overflow: hidden;
      transition: background .3s;
    }

    .prop-card:hover {
      background: rgba(255, 255, 255, 0.07);
    }

    .prop-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--wheat);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .prop-card:hover::before {
      transform: scaleX(1);
    }

    .prop-icon {
      width: 52px;
      height: 52px;
      margin-bottom: 24px;
      background: rgba(200, 169, 110, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
    }

    .prop-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--wheat-light);
      margin-bottom: 12px;
    }

    .prop-card p {
      font-size: 15px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.55);
    }

    .propuesta-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      gap: 40px;
    }

    .propuesta-header .section-title {
      color: var(--wheat-light);
    }

    .propuesta-header .section-tag {
      color: var(--grass-light);
    }

    .propuesta-header .section-sub {
      color: rgba(255, 255, 255, 0.55);
    }

    /* ─── PRODUCTOS ─── */
    #productos {
      background: var(--cream);
    }

    .prod-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 20px;
    }

    .prod-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .prod-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(200, 169, 110, 0.2);
      transition: all .3s;
      display: flex;
      flex-direction: column;
    }

    .prod-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 64px rgba(44, 36, 22, 0.12);
      border-color: rgba(109, 158, 82, 0.3);
    }

    .prod-img {
      height: 240px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .prod-img svg {
      width: 100%;
      height: 100%;
    }

    .prod-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--field);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 4px;
    }

    .prod-body {
      padding: 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .prod-category {
      font-size: 11px;
      font-weight: 700;
      color: var(--grass);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .prod-body h3 {
      font-size: 24px;
      font-weight: 800;
      color: var(--earth);
      margin-bottom: 12px;
    }

    .prod-body p {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-mid);
      margin-bottom: 20px;
      flex: 1;
    }

    .prod-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 24px;
      padding: 16px;
      background: var(--cream);
      border-radius: 10px;
    }

    .spec-item {}

    .spec-val {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--field);
    }

    .spec-key {
      font-size: 11px;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-top: 1px;
    }

    .btn-product {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--field);
      color: var(--white);
      padding: 14px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all .2s;
      cursor: pointer;
      border: none;
    }

    .btn-product:hover {
      background: var(--earth);
    }

    .btn-product span {
      font-size: 18px;
    }

    /* ─── INDUSTRIAS ─── */
    #industrias {
      background: var(--white);
    }

    .ind-header {
      margin-bottom: 56px;
    }

    .ind-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .ind-card {
      border: 1.5px solid rgba(200, 169, 110, 0.25);
      border-radius: 14px;
      padding: 32px 20px;
      text-align: center;
      transition: all .25s;
      cursor: pointer;
      background: var(--white);
    }

    .ind-card:hover {
      border-color: var(--grass);
      background: rgba(109, 158, 82, 0.05);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(61, 90, 46, 0.1);
    }

    .ind-emoji {
      font-size: 36px;
      margin-bottom: 12px;
      display: block;
    }

    .ind-card h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--earth);
      line-height: 1.3;
    }

    /* ─── LOGÍSTICA ─── */
    #logistica {
      background: linear-gradient(135deg, var(--field) 0%, #2C4020 100%);
      color: var(--white);
    }

    .log-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .log-left .section-title {
      color: var(--white);
    }

    .log-left .section-tag {
      color: var(--sage);
    }

    .log-left .section-sub {
      color: rgba(255, 255, 255, 0.6);
      max-width: 440px;
    }

    .log-items {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 40px;
    }

    .log-item {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 24px;
      transition: background .2s;
    }

    .log-item:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .log-icon {
      font-size: 28px;
      margin-bottom: 12px;
      display: block;
    }

    .log-item h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--wheat-light);
      margin-bottom: 4px;
    }

    .log-item p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }

    .log-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .log-visual {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 40px;
      display: grid;
      grid-template-rows: 1fr 1fr 1fr;
      gap: 12px;
    }

    .log-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .log-row-label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 500;
    }

    .log-row-val {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: var(--wheat);
      font-weight: 700;
    }

    /* ─── EXPORTACIÓN ─── */
    #exportacion {
      background: var(--cream);
    }

    .exp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .exp-map {
      position: relative;
      background: var(--white);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid rgba(200, 169, 110, 0.2);
      box-shadow: 0 8px 40px rgba(44, 36, 22, 0.06);
    }

    .map-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--earth);
      margin-bottom: 20px;
    }

    .markets {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .market-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 16px;
      border-radius: 10px;
      background: var(--cream);
      transition: background .2s;
    }

    .market-row:hover {
      background: rgba(109, 158, 82, 0.08);
    }

    .market-flag {
      font-size: 22px;
    }

    .market-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--earth);
      flex: 1;
    }

    .market-status {
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 12px;
      letter-spacing: 0.5px;
    }

    .status-active {
      background: rgba(109, 158, 82, 0.15);
      color: var(--field);
    }

    .status-growth {
      background: rgba(200, 169, 110, 0.2);
      color: var(--soil);
    }

    /* ─── PROCESO ─── */
    #proceso {
      background: var(--white);
    }

    .proceso-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 60px;
      position: relative;
    }

    .proceso-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(to right, var(--sage), var(--grass), var(--field));
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 12px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 80px;
      height: 80px;
      background: var(--white);
      border: 3px solid var(--grass);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--field);
      margin-bottom: 20px;
      box-shadow: 0 4px 20px rgba(109, 158, 82, 0.2);
      transition: all .3s;
    }

    .step:hover .step-num {
      background: var(--field);
      color: var(--white);
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(61, 90, 46, 0.3);
    }

    .step h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--earth);
      margin-bottom: 8px;
    }

    .step p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* ─── CTA COTIZACION ─── */
    #cotizacion {
      background: var(--earth);
      position: relative;
      overflow: hidden;
    }

    #cotizacion::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(109, 158, 82, 0.12) 0%, transparent 70%);
      border-radius: 50%;
    }

    #cotizacion::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(200, 169, 110, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .cta-left .section-title {
      color: var(--wheat-light);
    }

    .cta-left .section-tag {
      color: var(--sage);
    }

    .cta-left .section-sub {
      color: rgba(255, 255, 255, 0.55);
    }

    .cta-features {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 32px;
    }

    .cta-feat {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    .cta-feat::before {
      content: '✓';
      width: 22px;
      height: 22px;
      background: rgba(109, 158, 82, 0.3);
      color: var(--grass-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .cta-form {
      background: var(--white);
      border-radius: 20px;
      padding: 44px;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 800;
      color: var(--earth);
      margin-bottom: 6px;
    }

    .form-sub {
      font-size: 13px;
      color: var(--text-light);
      margin-bottom: 28px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-mid);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid rgba(200, 169, 110, 0.3);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text-dark);
      background: var(--cream);
      transition: border-color .2s, box-shadow .2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--grass);
      box-shadow: 0 0 0 3px rgba(109, 158, 82, 0.1);
      background: var(--white);
    }

    .form-group textarea {
      height: 80px;
      resize: none;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .btn-form {
      width: 100%;
      padding: 16px;
      background: var(--field);
      color: var(--white);
      border: none;
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 0.5px;
      transition: all .2s;
      margin-top: 8px;
    }

    .btn-form:hover {
      background: var(--earth);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(61, 90, 46, 0.3);
    }

    .form-privacy {
      font-size: 11px;
      color: var(--text-light);
      text-align: center;
      margin-top: 12px;
      line-height: 1.5;
    }

    /* ─── NOSOTROS ─── */
    #nosotros {
      background: var(--cream);
    }

    .nos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .nos-right .section-title {}

    .nos-visual {
      background: linear-gradient(135deg, var(--field) 0%, var(--earth) 100%);
      border-radius: 20px;
      padding: 50px 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .nos-visual::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 20px;
      font-size: 200px;
      font-family: 'Playfair Display', serif;
      color: rgba(255, 255, 255, 0.06);
      line-height: 1;
    }

    .nos-quote {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      line-height: 1.5;
      color: var(--wheat-light);
      position: relative;
      z-index: 1;
      margin-bottom: 28px;
    }

    .nos-author {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
    }

    .nos-nums {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 32px;
    }

    .nos-num {
      background: rgba(255, 255, 255, 0.07);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
    }

    .nos-num-val {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--wheat);
    }

    .nos-num-label {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 4px;
    }

    .nos-content p {
      font-size: 16px;
      line-height: 1.75;
      color: var(--text-mid);
      margin-bottom: 20px;
    }

    .nos-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .nos-tag {
      background: rgba(109, 158, 82, 0.1);
      border: 1px solid rgba(109, 158, 82, 0.25);
      color: var(--field);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--earth);
      color: var(--white);
      padding: 80px 8vw 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand .nav-logo-mark {
      width: 44px;
      height: 44px;
      font-size: 22px;
    }

    .footer-brand .nav-logo-text {
      color: var(--wheat-light);
      font-size: 26px;
    }

    .footer-brand .nav-logo {
      margin-bottom: 20px;
    }

    .footer-desc {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 24px;
    }

    .footer-contacts {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-contact {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-contact:hover {
      color: var(--wheat);
    }

    .footer-contact-icon {
      width: 16px;
      text-align: center;
    }

    .footer-col h5 {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--wheat-light);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col a:hover {
      color: var(--wheat);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
    }

    .footer-legal {
      display: flex;
      gap: 20px;
    }

    .footer-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-legal a:hover {
      color: var(--wheat);
    }

    /* ─── WHATSAPP ─── */
    .whatsapp-btn {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      animation: waPulse 3s ease infinite;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4)
      }

      50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6)
      }
    }

    .whatsapp-btn svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 1;
      transform: translateY(0);
      animation: revealIn .7s ease both;
    }

    .reveal-delay-1 {
      animation-delay: .1s;
    }

    .reveal-delay-2 {
      animation-delay: .2s;
    }

    .reveal-delay-3 {
      animation-delay: .3s;
    }

    .reveal-delay-4 {
      animation-delay: .4s;
    }

    @keyframes revealIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── MODAL ─── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(26, 20, 12, 0.85);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      background: var(--white);
      border-radius: 20px;
      padding: 50px;
      max-width: 480px;
      width: 100%;
      position: relative;
      animation: modalIn .3s ease both;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: scale(.9)
      }

      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 32px;
      height: 32px;
      background: var(--cream);
      border-radius: 50%;
      border: none;
      cursor: pointer;
      font-size: 16px;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
    }

    .modal-close:hover {
      background: rgba(200, 169, 110, 0.3);
    }

    .modal-success {
      text-align: center;
    }

    .modal-success .check {
      font-size: 60px;
      margin-bottom: 20px;
      display: block;
    }

    .modal-success h3 {
      font-size: 26px;
      color: var(--earth);
      margin-bottom: 10px;
    }

    .modal-success p {
      color: var(--text-mid);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .ind-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .proceso-steps {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .proceso-steps::before {
        display: none;
      }

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

    @media (max-width: 900px) {
      #hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .hero-right {
        height: 320px;
      }

      /* hero-overlay-card - always visible */
      .propuesta-grid {
        grid-template-columns: 1fr;
      }

      .propuesta-header {
        grid-template-columns: 1fr;
      }

      .cta-inner {
        grid-template-columns: 1fr;
      }

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

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

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

      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      section {
        padding: 70px 6vw;
      }
    }

    @media (max-width: 600px) {
      .prod-grid {
        grid-template-columns: 1fr;
      }

      .ind-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .proceso-steps {
        grid-template-columns: 1fr 1fr;
      }

      .hero-stats {
        gap: 20px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .cta-form {
        padding: 28px;
      }

      .modal {
        padding: 30px;
      }
    }
