

    *{
      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;
}

