

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:'Inter',sans-serif;
      background:#f4f7f4;
      color:#1f2937;
      line-height:1.6;
    }

    a{
      text-decoration:none;
    }

    img{
      max-width:100%;
      display:block;
    }

    .container{
      width:92%;
      max-width:1250px;
      margin:auto;
    }

    section{
      padding:90px 0;
    }

    /* ========================= */
    /* HEADER */
    /* ========================= */

    header{
      position:sticky;
      top:0;
      z-index:999;
      background:#ffffffee;
      backdrop-filter:blur(12px);
      border-bottom:1px solid #e5e7eb;
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:18px 0;
    }

    .logo{
      font-size:30px;
      font-weight:800;
      color:#16a34a;
    }

    .menu{
      display:flex;
      gap:30px;
    }

    .menu a{
      color:#374151;
      font-weight:600;
      transition:.3s;
    }

    .menu a:hover{
      color:#16a34a;
    }

    .btn{
      background:#16a34a;
      color:#fff;
      padding:15px 26px;
      border-radius:14px;
      font-weight:700;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition:.3s;
      box-shadow:0 10px 30px rgba(22,163,74,.25);
    }

    .btn:hover{
      transform:translateY(-2px);
      background:#15803d;
    }

    .btn-outline{
      border:2px solid #16a34a;
      color:#16a34a;
      padding:14px 24px;
      border-radius:14px;
      font-weight:700;
      transition:.3s;
    }

    .btn-outline:hover{
      background:#16a34a;
      color:#fff;
    }

    /* ========================= */
    /* HERO */
    /* ========================= */

    .hero{
      padding:110px 0;
      background:
      linear-gradient(
      135deg,
      #f4f7f4,
      #eef6ee
      );
    }

    .hero-content{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:center;
    }

    .hero small{
      display:inline-block;
      padding:8px 16px;
      background:#dcfce7;
      color:#166534;
      border-radius:999px;
      font-weight:700;
      margin-bottom:20px;
    }

    .hero h1{
      font-size:64px;
      line-height:1.05;
      margin-bottom:24px;
      color:#111827;
    }

    .hero h1 span{
      color:#16a34a;
    }

    .hero p{
      font-size:20px;
      color:#4b5563;
      margin-bottom:35px;
    }

    .hero-buttons{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
    }

    .hero-image{
      display:flex;
      justify-content:center;
      position:relative;
    }

    .phone{
      width:320px;
      background:#111827;
      border-radius:38px;
      padding:14px;
      box-shadow:0 30px 80px rgba(0,0,0,.2);
    }

    .phone-screen{
      background:#f4f7f4;
      border-radius:28px;
      overflow:hidden;
      min-height:650px;
    }

    .screen-header{
      background:linear-gradient(
      135deg,
      #22c55e,
      #16a34a
      );
      padding:28px;
      color:#fff;
    }

    .screen-card{
      background:#fff;
      margin:18px;
      border-radius:22px;
      padding:18px;
      box-shadow:0 10px 30px rgba(0,0,0,.05);
    }

    .screen-card h4{
      margin-bottom:8px;
      color:#16a34a;
    }

    /* ========================= */
    /* TITLES */
    /* ========================= */

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:46px;
      margin-bottom:14px;
      color:#111827;
    }

    .section-title p{
      color:#6b7280;
      font-size:18px;
      max-width:700px;
      margin:auto;
    }

    /* ========================= */
    /* FLOW */
    /* ========================= */

    .flow{
      background:#fff;
    }

    .flow-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
      gap:18px;
      align-items:center;
    }

    .flow-card{
      background:#f8faf8;
      border:1px solid #e5e7eb;
      padding:28px;
      border-radius:24px;
      text-align:center;
    }

    .flow-card h3{
      margin-top:14px;
      margin-bottom:8px;
      color:#111827;
    }

    .flow-arrow{
      text-align:center;
      font-size:36px;
      color:#16a34a;
      font-weight:700;
    }

    /* ========================= */
    /* MODULES */
    /* ========================= */

    .modules{
      background:#f4f7f4;
    }

    .features{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:24px;
    }

    .card{
      background:#fff;
      padding:34px;
      border-radius:28px;
      box-shadow:0 10px 40px rgba(0,0,0,.05);
      transition:.3s;
    }

    .card:hover{
      transform:translateY(-6px);
    }

    .card-icon{
      width:70px;
      height:70px;
      border-radius:20px;
      background:#dcfce7;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:32px;
      margin-bottom:20px;
    }

    .card h3{
      margin-bottom:12px;
      color:#111827;
    }

    .card p{
      color:#6b7280;
    }

    /* ========================= */
    /* PRINTS */
    /* ========================= */

    .prints{
      background:#fff;
    }

    .prints-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:24px;
    }

    .print-card{
      background:#f9fafb;
      border-radius:28px;
      overflow:hidden;
      border:1px solid #e5e7eb;
    }

    .print-card img{
      width:100%;
      height:560px;
      object-fit:cover;
    }

    .print-info{
      padding:20px;
    }

    .print-info h3{
      margin-bottom:8px;
    }

    .print-info p{
      color:#6b7280;
    }

    /* ========================= */
    /* BENEFITS */
    /* ========================= */

    .benefits{
      background:#111827;
      color:#fff;
    }

    .benefits-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:24px;
    }

    .benefit{
      background:#1f2937;
      padding:30px;
      border-radius:24px;
    }

    .benefit h3{
      margin-bottom:14px;
      color:#4ade80;
    }

    .benefit p{
      color:#d1d5db;
    }

    /* ========================= */
    /* PRICING */
    /* ========================= */

    .pricing{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      gap:30px;
    }

    .price-card{
      background:#fff;
      padding:42px;
      border-radius:30px;
      box-shadow:0 10px 40px rgba(0,0,0,.06);
      text-align:center;
      position:relative;
    }

    .featured{
      border:3px solid #22c55e;
    }

    .badge{
      position:absolute;
      top:-15px;
      left:50%;
      transform:translateX(-50%);
      background:#16a34a;
      color:#fff;
      padding:8px 18px;
      border-radius:999px;
      font-size:14px;
      font-weight:700;
    }

    .price{
      font-size:58px;
      font-weight:800;
      color:#16a34a;
      margin:24px 0;
    }

    .price small{
      font-size:18px;
      color:#6b7280;
    }

    .price-card ul{
      list-style:none;
      margin:30px 0;
      text-align:left;
    }

    .price-card li{
      margin-bottom:14px;
      color:#4b5563;
    }

    /* ========================= */
    /* CTA */
    /* ========================= */

    .cta{
      background:
      linear-gradient(
      135deg,
      #22c55e,
      #16a34a
      );
      text-align:center;
      color:#fff;
    }

    .cta h2{
      font-size:52px;
      margin-bottom:18px;
    }

    .cta p{
      font-size:20px;
      margin-bottom:34px;
      color:#dcfce7;
    }

    /* ========================= */
    /* FOOTER */
    /* ========================= */

    footer{
      background:#0f1720;
      color:#fff;
      padding:50px 0;
      text-align:center;
    }

    footer p{
      color:#9ca3af;
      margin-top:10px;
    }

    /* ========================= */
    /* RESPONSIVO */
    /* ========================= */

    @media(max-width:980px){

      .hero-content{
        grid-template-columns:1fr;
        text-align:center;
      }

      .hero h1{
        font-size:46px;
      }

      .menu{
        display:none;
      }

      .hero-buttons{
        justify-content:center;
      }

    }

    .carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100X;
  object-fit: cover;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

.mobile-toggle{

  display:none;
  font-size:32px;
  cursor:pointer;
  color:#111827;

}

@media(max-width:900px){

  .mobile-toggle{
    display:block;
  }

  .menu{

    position:absolute;
    top:90px;
    left:0;
    width:100%;

    background:#fff;

    display:none;
    flex-direction:column;

    padding:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    z-index:999;

  }

  .menu.active{
    display:flex;
  }

  .desktop-btn{
    display:none;
  }

}

.nav{
  position:relative;
}

/* ========================= */
/* GESTAO RURAL */
/* ========================= */

.market-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.market-card{
  background:#fff;
  padding:30px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  text-align:center;
  transition:.3s;
}

.market-card:hover{
  transform:translateY(-5px);
}

.market-card h3{
  margin-bottom:12px;
  color:#111827;
}

.market-price{
  font-size:42px;
  font-weight:800;
  color:#16a34a;
}

.market-card span{
  color:#6b7280;
}

.weather-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.weather-card{
  background:#fff;
  padding:35px;
  border-radius:28px;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.weather-temp{
  font-size:58px;
  font-weight:800;
  color:#16a34a;
  margin:16px 0;
}

.machine-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:24px;
}

.machine-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.machine-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

.machine-info{
  padding:24px;
}

.machine-info h3{
  margin-bottom:10px;
}

.machine-info p{
  color:#6b7280;
}

.live-badge{
  display:inline-block;
  background:#dcfce7;
  color:#166534;
  padding:8px 16px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:20px;
}

.market-card,
.weather-card,
.machine-card{

  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;

}

/* ========================= */
/* AGRO TIMELINE */
/* ========================= */

.agro-timeline{

  background:#fff;
  position:relative;
  overflow:hidden;

}

.timeline-wrapper{

  position:relative;
  margin-top:70px;

}

.timeline-line{

  position:absolute;
  top:70px;
  left:5%;
  width:90%;
  height:6px;

  background:
  linear-gradient(
    90deg,
    #22c55e,
    #16a34a
  );

  border-radius:999px;

}

.timeline-grid{

  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));

  gap:30px;

  position:relative;
  z-index:2;

}

.timeline-item{

  text-align:center;
  position:relative;

}

.timeline-icon{

  width:90px;
  height:90px;

  margin:auto;
  margin-bottom:25px;

  border-radius:50%;

  background:
  linear-gradient(
    135deg,
    #22c55e,
    #16a34a
  );

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:42px;

  color:#fff;

  box-shadow:
  0 15px 40px rgba(34,197,94,.35);

  transition:.4s;

  position:relative;
  z-index:2;

}

.timeline-item:hover .timeline-icon{

  transform:
  translateY(-10px)
  scale(1.08);

}

.timeline-content{

  background:#f8faf8;

  padding:30px;

  border-radius:28px;

  border:1px solid #e5e7eb;

  transition:.3s;

}

.timeline-item:hover .timeline-content{

  background:#fff;

  box-shadow:
  0 20px 50px rgba(0,0,0,.08);

}

.timeline-content span{

  display:inline-block;

  margin-bottom:12px;

  padding:6px 14px;

  border-radius:999px;

  background:#dcfce7;

  color:#166534;

  font-size:13px;
  font-weight:700;

}

.timeline-content h3{

  margin-bottom:12px;
  color:#111827;

}

.timeline-content p{

  color:#6b7280;
  line-height:1.7;

}

.timeline-item.active .timeline-icon{

  animation:
  pulseAgro 2s infinite;

}

@keyframes pulseAgro{

  0%{

    box-shadow:
    0 0 0 0 rgba(34,197,94,.5);

  }

  70%{

    box-shadow:
    0 0 0 25px rgba(34,197,94,0);

  }

  100%{

    box-shadow:
    0 0 0 0 rgba(34,197,94,0);

  }

}

@media(max-width:980px){

  .timeline-line{
    display:none;
  }

}
