
  
    @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;900&family=Bebas+Neue&display=swap');

    :root {
      --verde-oscuro: #182f1b;
      --verde-lima: #8fc045;
      --naranja: #f18918;
      --gris: #c6c6c6;
      --amarillo: #fcea10;
      --blanco: #ffffff;
    }


    body {
      font-family: 'Nunito', sans-serif;
      background: #fff;
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─── */
    .navbar {
      background: var(--verde-oscuro);
      padding: 0.75rem 1.5rem;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
    }
    .logo-leaf {
      width: 32px;
      height: 32px;
    }
    .logo-text {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
      color: var(--blanco);
      letter-spacing: -1px;
    }
    .logo-text span { color: var(--verde-lima); }
    .navbar-toggler { border: none; }
    .navbar-toggler-icon { filter: invert(1); }
    .nav-link {
      color: rgba(255,255,255,0.85) !important;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
    }
    .nav-link:hover { color: var(--verde-lima) !important; }
    .btn-nav {
      background: var(--naranja);
      color: #fff !important;
      border-radius: 50px;
      padding: 0.45rem 1.4rem !important;
      font-weight: 700;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-nav:hover { background: #d4730a; transform: scale(1.04); }

    /* ─── HERO ─── */
    .hero {
      background: var(--verde-oscuro);
      position: relative;
      overflow: hidden;
      min-height: 92vh;
      display: flex;
      align-items: center;
    }
    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(circle at 70% 50%, rgba(143,192,69,0.15) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(241,137,24,0.12) 0%, transparent 40%);
    }
    .hero-grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      opacity: 0.4;
      pointer-events: none;
    }
    .hero-floating-circles {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      border: 100px solid rgba(143,192,69,0.08);
      pointer-events: none;
    }
    .hero-floating-circles::before {
      content: '';
      position: absolute;
      inset: 60px;
      border-radius: 50%;
      border: 60px solid rgba(241,137,24,0.08);
    }

    .hero-badge {
      display: inline-block;
      background: var(--naranja);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease both;
    }
    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.5rem, 9vw, 7rem);
      line-height: 0.95;
      color: var(--blanco);
      margin-bottom: 1rem;
      animation: fadeUp 0.7s 0.1s ease both;
    }
    .hero h1 .accent { color: var(--verde-lima); }
    .hero h1 .accent2 { color: var(--naranja); }
    .hero-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.7);
      font-weight: 300;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.7s 0.2s ease both;
    }
    .hero-ctas { animation: fadeUp 0.7s 0.3s ease both; }
    .btn-primary-brand {
      background: var(--naranja);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.85rem 2.2rem;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 0.5px;
      transition: all 0.25s;
      box-shadow: 0 8px 30px rgba(241,137,24,0.4);
    }
    .btn-primary-brand:hover {
      background: #d4730a;
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(241,137,24,0.5);
      color: #fff;
    }
    .btn-outline-brand {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.3);
      color: #fff;
      border-radius: 50px;
      padding: 0.85rem 2.2rem;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.25s;
    }
    .btn-outline-brand:hover {
      border-color: var(--verde-lima);
      color: var(--verde-lima);
      transform: translateY(-2px);
    }
    .hero-image-col {
      position: relative;
      animation: fadeUp 0.9s 0.4s ease both;
    }
    .hero-bag {
      width: 100%;
      max-width: 380px;
      filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
    }
    .hero-tag {
      position: absolute;
      bottom: 20px;
      left: 0;
      background: var(--verde-lima);
      color: var(--verde-oscuro);
      font-weight: 800;
      font-size: 0.85rem;
      padding: 0.6rem 1.2rem;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(143,192,69,0.35);
    }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--naranja);
      padding: 1.5rem 0;
    }
    .stat-item {
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.3);
      padding: 0 2rem;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      color: var(--blanco);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.85);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* ─── PRODUCTS ─── */
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--verde-oscuro);
      line-height: 1;
    }
    .section-sub {
      font-size: 1rem;
      color: #666;
      font-weight: 300;
    }
    .pill-tag {
      background: var(--verde-lima);
      color: var(--verde-oscuro);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 1rem;
    }

    .product-card {
      border: none;
      border-radius: 24px;
      overflow: hidden;
      background: #f8f9f5;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(24,47,27,0.12);
    }
    .product-card .card-img-top {
      height: 220px;
      object-fit: cover;
      background: linear-gradient(135deg, var(--verde-lima), var(--verde-oscuro));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
    }
    .product-img-placeholder {
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
    }
    .product-img-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: inherit;
      opacity: 0.15;
    }
    .bg-arroz-anejo { background: linear-gradient(135deg, #f18918, #c06010); }
    .bg-arroz-extra { background: linear-gradient(135deg, #8fc045, #4a7a1a); }
    .bg-arroz-premium { background: linear-gradient(135deg, #182f1b, #3a6b3e); }

    .product-card .card-body { padding: 1.5rem; }
    .product-card .card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: var(--verde-oscuro);
      letter-spacing: 0.5px;
      margin-bottom: 0.4rem;
    }
    .product-card .card-text {
      font-size: 0.9rem;
      color: #666;
      line-height: 1.6;
    }
    .product-badge {
      background: var(--naranja);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.2rem 0.7rem;
      border-radius: 50px;
    }

    /* ─── WHY US ─── */
    .why-section { background: var(--verde-oscuro); }
    .why-section .section-title { color: var(--blanco); }
    .why-section .pill-tag { background: var(--naranja); color: #fff; }
    .feature-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      padding: 1.5rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      transition: background 0.3s, border-color 0.3s;
    }
    .feature-item:hover {
      background: rgba(143,192,69,0.1);
      border-color: rgba(143,192,69,0.3);
    }
    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--verde-lima);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
      color: var(--verde-oscuro);
    }
    .feature-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--blanco);
      letter-spacing: 0.5px;
      margin-bottom: 0.3rem;
    }
    .feature-desc {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }

    /* ─── PROCESS ─── */
    .process-step {
      text-align: center;
      position: relative;
    }
    .process-step::after {
      content: '→';
      position: absolute;
      right: -20px;
      top: 30px;
      font-size: 1.5rem;
      color: var(--gris);
    }
    .process-step:last-child::after { display: none; }
    .step-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--verde-lima);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1rem;
      box-shadow: 0 8px 25px rgba(143,192,69,0.3);
    }
    .step-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--verde-oscuro);
    }
    .step-desc { font-size: 0.85rem; color: #777; }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: linear-gradient(135deg, var(--naranja) 0%, #d4730a 100%);
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      right: -100px;
      top: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      left: -80px;
      bottom: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(0,0,0,0.06);
    }
    .cta-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      color: #fff;
      line-height: 1;
    }
    .cta-banner p { color: rgba(255,255,255,0.85); }
    .btn-cta-white {
      background: #fff;
      color: var(--naranja);
      border: none;
      border-radius: 50px;
      padding: 0.9rem 2.5rem;
      font-weight: 800;
      font-size: 1rem;
      transition: all 0.25s;
    }
    .btn-cta-white:hover {
      background: var(--amarillo);
      color: var(--verde-oscuro);
      transform: scale(1.04);
    }

    /* ─── TESTIMONIOS ─── */
    .testimonial-card {
      background: #f8f9f5;
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      border-left: 4px solid var(--verde-lima);
      transition: transform 0.3s;
    }
    .testimonial-card:hover { transform: translateY(-5px); }
    .testimonial-text {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.7;
      margin-bottom: 1.2rem;
      font-style: italic;
    }
    .testimonial-author { font-weight: 700; color: var(--verde-oscuro); }
    .testimonial-role { font-size: 0.8rem; color: #999; }
    .stars { color: var(--naranja); font-size: 1rem; margin-bottom: 0.8rem; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--verde-oscuro);
      color: rgba(255,255,255,0.7);
    }
    footer h5 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      color: var(--verde-lima);
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }
    footer a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.9rem;
      display: block;
      margin-bottom: 0.4rem;
      transition: color 0.2s;
    }
    footer a:hover { color: var(--verde-lima); }
    .footer-logo { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 2rem; color: #fff; }
    .footer-logo span { color: var(--verde-lima); }
    .footer-divider { border-color: rgba(255,255,255,0.1); }
    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 0.95rem;
      transition: background 0.2s, color 0.2s;
    }
    .social-btn:hover { background: var(--verde-lima); color: var(--verde-oscuro); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── DECORATIVE LEAF SVG ─── */
    .leaf-deco {
      position: absolute;
      opacity: 0.07;
      pointer-events: none;
    }