    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #1e293b;
      overflow-x: hidden;
    }

    html {
      scroll-behavior: smooth;
    }

    .container {
      width: 90%;
      max-width: 1280px;
      margin: 0 auto;
    }

    .text-white{
      color: white;
    }

    section {
      padding: 100px 0;
    }

    h1, h2, h3 {
      line-height: 1.1;
    }

    p {
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      border-radius: 16px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s ease;
      cursor: pointer;
    }

    .btn-primary {
      background: #16a34a;
      color: white;
      box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      background: #15803d;
    }

    .btn-outline {
      border: 1px solid #cbd5e1;
      color: #1e293b;
      background: white;
    }

    .btn-outline:hover {
      background: #f1f5f9;
    }

    /* HERO */

    .hero {
      background:
        radial-gradient(circle at top right, rgba(34,197,94,0.2), transparent 30%),
        linear-gradient(to bottom right, #f0fdf4, #ffffff, #dcfce7);
      min-height: 50vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 40px;
    }

    .logo img {
      width: 350px;
    }

    .logo h1 {
      font-size: 4rem;
      font-weight: 800;
    }

    .logo span {
      color: #16a34a;
    }

    .hero h2 {
      font-size: 4.5rem;
      font-weight: 800;
      margin-bottom: 30px;
      color: #0f172a;
    }

    .hero p {
      font-size: 1.1rem;
      color: #475569;
      margin-bottom: 40px;
      max-width: 600px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }

    .stats {
      display: flex;
      gap: 50px;
      flex-wrap: wrap;
    }

    .stat h3 {
      color: #16a34a;
      font-size: 2.2rem;
      margin-bottom: 10px;
    }

    .stat p {
      margin: 0;
      color: #64748b;
      font-size: 0.95rem;
    }

    .hero-image {
      position: relative;
    }

    .hero-image img {
      width: 100%;
      border-radius: 32px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    }

    /* FEATURES */

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title span {
      background: #dcfce7;
      color: #15803d;
      padding: 10px 18px;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .section-title h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #0f172a;
    }

    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: #64748b;
      font-size: 1.05rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: 28px;
      border: 1px solid #e2e8f0;
      transition: 0.4s ease;
      box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: #4f9969;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 25px;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 16px;
    }

    .feature-card p {
      color: #64748b;
    }

    /* ABOUT */

    .about {
      background: #f8fafc;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .about-content h2 {
      font-size: 3rem;
      margin-bottom: 30px;
    }

    .about-content p {
      color: #64748b;
      margin-bottom: 24px;
      font-size: 1.05rem;
    }

    .about-image img {
      width: 100%;
      border-radius: 32px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }

    .video-agrisense{
    /* width: 100%; */
    max-width: 640px;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    /* border: 3px solid rgba(255,255,255,0.2); */
    }

    /* AUDIENCE */

    .audience {
      background: #0f172a;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .audience::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(34,197,94,0.3), transparent 70%);
    }

    .audience .section-title h2,
    .audience .section-title p {
      color: white;
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      position: relative;
      z-index: 2;
    }

    .audience-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 40px 30px;
      border-radius: 28px;
      backdrop-filter: blur(10px);
      transition: 0.3s ease;
    }

    .audience-card:hover {
      transform: translateY(-8px);
      background: rgba(255,255,255,0.08);
    }

    .audience-card h3 {
      margin-bottom: 16px;
      font-size: 1.6rem;
    }

    .audience-card p {
      color: #cbd5e1;
    }

    /* CTA */

    .cta {
      background: linear-gradient(to right, #16a34a, #059669);
      color: white;
      text-align: center;
    }

    .cta h2 {
      font-size: 4rem;
      margin-bottom: 30px;
    }

    .cta p {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.2rem;
      opacity: 0.95;
    }

    .footer {
      background: #020617;
      color: #94a3b8;
      padding: 40px 0;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .footer h3 {
      color: white;
      font-size: 2rem;
    }

    .footer h3 span {
      color: #0F4810;
    }

    .footer-links {
      display: flex;
      gap: 25px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .footer-links a:hover {
      color: white;
    }

    /* RESPONSIVO */

    @media(max-width: 1100px) {
      .hero-grid,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .audience-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero h2 {
        font-size: 3.5rem;
      }
    }

    @media(max-width: 768px) {
      section {
        padding: 70px 0;
      }

      .features-grid,
      .audience-grid {
        grid-template-columns: 1fr;
      }

      .hero h2,
      .cta h2,
      .section-title h2,
      .about-content h2 {
        font-size: 2.5rem;
      }

      .logo h1 {
        font-size: 2.7rem;
      }

      .stats {
        flex-direction: column;
        gap: 30px;
      }

      .footer-content {
        flex-direction: column;
        text-align: center;
      }
    }