 header{
  position:sticky;
  top:0;
  z-index:999;
}

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

.menu-toggle span{
  width:28px;
  height:3px;
  background:#1f7a6b;
  border-radius:10px;
  transition:.3s;
}

/* NAV */
nav{
  display:flex;
  align-items:center;
}

/* BOTON MOBILE */
.mobile-btn{
  display:none;
}

/* ========================= */
/* HOW SECTION */
/* ========================= */

.section-title{
  text-align:center;
  margin-bottom:50px;
  font-size:42px;
}

.how-container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

/* IMAGEN CENTRAL */
.center-image{
  position:relative;
  width:420px;
}

.center-image img{
  width:100%;
  border-radius:30px;
  object-fit:cover;
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* FLOATING CARD */
.floating-card{
  position:absolute;
  bottom:20px;
  left:-30px;
  background:white;
  padding:18px 22px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  color:#1f7a6b;
  font-weight:700;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:992px){

  header{
    padding:20px;
  }

  .menu-toggle{
    display:flex;
  }

  .desktop-btn{
    display:none;
  }

  nav{
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    padding:30px;
    gap:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(-20px);

    transition:.3s;
  }

  nav.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  nav a{
    width:100%;
    text-align:center;
    font-size:18px;
  }

  .mobile-btn{
    display:block;
    width:100%;
  }

  .section{
    padding:40px 20px;
  }

  .section-title{
    font-size:32px;
  }

  .center-image{
    width:100%;
  }

  .floating-card{
    left:10px;
    bottom:10px;
  }

}
 /* HERO */
.hero{
  padding:30px;
}

/* MAIN BANNER */
.main-banner{
  position:relative;
  width:100%;
  min-height:650px;
  border-radius:30px;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding:60px;
  background:#0f172a;
}

/* IMAGEN */
.banner-image-full{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  /*object-fit:cover;*/
}

/* OVERLAY */
.banner-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.96) 35%,
    rgba(255,255,255,0.55) 60%,
    rgba(255,255,255,0.10) 100%
  );
  z-index:1;
}

/* CONTENIDO */
.banner-content{
  position:relative;
  z-index:2;
  max-width:550px;
}

/* BADGE */
.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#dff7ef;
  color:#1f7a6b;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

/* TITULO */
.main-banner h1{
  font-size:64px;
  line-height:1;
  font-weight:800;
  margin-bottom:25px;
  color:#0f172a;
}

/* TEXTO */
.main-banner p{
  font-size:18px;
  line-height:1.7;
  color:#475569;
  margin-bottom:35px;
}

/* BOTONES */
.banner-buttons{
  display:flex;
  gap:15px;
  margin-bottom:30px;
  flex-wrap:wrap;
}

.btn{
  padding:16px 28px;
  border-radius:14px;
  border:none;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.btn-primary{
  background:#1f7a6b;
  color:white;
}

.btn-primary:hover{
  background:#166456;
  transform:translateY(-2px);
}

.btn-secondary{
  background:white;
  border:1px solid #1f7a6b;
  color:#1f7a6b;
}

/* FEATURES */
.banner-features{
  display:flex;
  gap:25px;
  color:#1f7a6b;
  font-weight:700;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media(max-width:992px){

  .hero{
    padding:15px;
  }

  .main-banner{
    min-height:700px;
    padding:40px 25px;
    align-items:flex-end;
  }

  .banner-overlay{
    background:linear-gradient(
      180deg,
      rgba(255,255,255,0.85) 0%,
      rgba(255,255,255,0.92) 50%,
      rgba(255,255,255,0.98) 100%
    );
  }

  .main-banner h1{
    font-size:42px;
  }

  .main-banner p{
    font-size:16px;
  }

  .banner-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: #f7f9f8;
      color: #1f2937;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

  .logo{
      width:140px;
      height:auto;
      object-fit:contain;
    }

    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #374151;
      font-weight: 500;
    }

    .btn-primary {
      background: #1f7a6b;
      color: white;
      padding: 10px 18px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
    }

    .btn-secondary {
      border: 1px solid #1f7a6b;
      color: #1f7a6b;
      padding: 10px 18px;
      border-radius: 10px;
      margin-left: 10px;
      background: transparent;
      cursor: pointer;
    }

    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*padding: 80px 60px;*/
    }

    .hero-text {
      max-width: 500px;
    }

    .hero h1 {
      font-size: 42px;
      margin-bottom: 20px;
    }

    .hero p {
      margin-bottom: 20px;
      color: #6b7280;
    }

    .hero-img {
      width: 450px;
    }

    .section {
      padding: 60px;
    }

    .cards {
      display: flex;
      gap: 20px;
      margin-top: 30px;
    }

    .card {
      background: white;
      padding: 25px;
      border-radius: 16px;
      flex: 1;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .card i {
      margin-bottom: 10px;
      color: #1f7a6b;
    }

    .benefits {
      display: flex;
      gap: 50px;
      align-items: center;
    }

    .benefits img {
      width: 350px;
    }

    .benefit-item {
      margin-bottom: 20px;
    }

    .cta {
      background: linear-gradient(135deg, #1f7a6b, #3ab89e);
      color: white;
      text-align: center;
      padding: 60px;
      border-radius: 20px;
      margin: 60px;
    }

    .cta button {
      margin-top: 20px;
      padding: 12px 25px;
      border: none;
      border-radius: 10px;
      background: white;
      color: #1f7a6b;
      font-weight: bold;
      cursor: pointer;
    }

    footer {
      text-align: center;
      padding: 20px;
      color: #9ca3af;
    }

    /* ========================= */
/* CONTACT SECTION */
/* ========================= */

.contact-section{
  padding:100px 40px;
  background:#ffffff;
}

.contact-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* INFO */

.contact-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#dff7ef;
  color:#1f7a6b;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  margin-bottom:20px;
}

.contact-info h2{
  font-size:52px;
  line-height:1.1;
  margin-bottom:20px;
  color:#0f172a;
}

.contact-info p{
  color:#64748b;
  font-size:18px;
  line-height:1.7;
  margin-bottom:35px;
}

.contact-items{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:15px;
  font-weight:600;
  color:#334155;
}

.contact-item i{
  color:#1f7a6b;
}

/* FORM */

.contact-form{
  background:#f8fafc;
  padding:40px;
  border-radius:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

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

.form-group label{
  display:block;
  margin-bottom:8px;
  font-weight:600;
  color:#334155;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:16px;
  border-radius:14px;
  border:1px solid #e2e8f0;
  background:white;
  font-size:16px;
  transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#1f7a6b;
  box-shadow:0 0 0 4px rgba(31,122,107,0.1);
}

.contact-btn{
  width:100%;
  padding:18px;
  border:none;
  border-radius:16px;
  background:#1f7a6b;
  color:white;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.contact-btn:hover{
  background:#166456;
  transform:translateY(-2px);
}

.form-success{
  margin-top:20px;
  background:#dff7ef;
  color:#1f7a6b;
  padding:14px;
  border-radius:12px;
  display:none;
  font-weight:600;
}

/* MOBILE */

@media(max-width:992px){

  .contact-section{
    padding:70px 20px;
  }

  .contact-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .contact-info h2{
    font-size:38px;
  }

  .contact-form{
    padding:25px;
  }

}

/* ========================= */
/* DASHBOARD SECTION */
/* ========================= */

.dashboard-section{
  padding:120px 40px;
  background:#f8fbfa;
}

.dashboard-container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* BADGE */

.dashboard-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#dff7ef;
  color:#1f7a6b;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  margin-bottom:25px;
}

/* TITULO */

.dashboard-content h2{
  font-size:54px;
  line-height:1.1;
  margin-bottom:25px;
  color:#0f172a;
}

.dashboard-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  margin-bottom:40px;
}

/* FEATURES */

.dashboard-features{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.dashboard-feature{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.dashboard-feature i{
  color:#1f7a6b;
  width:28px;
  height:28px;
}

.dashboard-feature h4{
  font-size:18px;
  margin-bottom:5px;
  color:#0f172a;
}

.dashboard-feature p{
  margin:0;
  font-size:15px;
}

/* DASHBOARD CARD */

.dashboard-image{
  display:flex;
  justify-content:center;
}

.dashboard-card{
  width:100%;
  max-width:520px;
  background:white;
  border-radius:32px;
  padding:35px;
  box-shadow:0 20px 60px rgba(15,23,42,0.08);
  position:relative;
  overflow:hidden;
}

.dashboard-card::before{
  content:'';
  position:absolute;
  width:250px;
  height:250px;
  background:#1f7a6b;
  opacity:0.05;
  border-radius:50%;
  top:-120px;
  right:-120px;
}

/* TOP */

.dashboard-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.dashboard-label{
  color:#64748b;
  font-size:14px;
}

.dashboard-top h3{
  font-size:42px;
  margin-top:10px;
  color:#0f172a;
}

.dashboard-status{
  background:#dff7ef;
  color:#1f7a6b;
  font-weight:700;
  padding:10px 18px;
  border-radius:999px;
}

/* CHART */

.chart-area{
  height:220px;
  display:flex;
  align-items:flex-end;
  gap:18px;
  margin-bottom:40px;
}

.chart-bar{
  flex:1;
  border-radius:14px 14px 0 0;
  background:linear-gradient(
    180deg,
    #3ab89e,
    #1f7a6b
  );
  animation:growBar 1s ease;
}

@keyframes growBar{
  from{
    height:0;
  }
}

/* TRANSACTIONS */

.transactions{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.transaction-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  border-radius:16px;
  background:#f8fafc;
}

.transaction-user{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:600;
}

/* STATUS DOT */

.transaction-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#f59e0b;
}

.transaction-dot.active{
  background:#3b82f6;
}

.transaction-dot.success{
  background:#10b981;
}

/* MOBILE */

@media(max-width:992px){

  .dashboard-section{
    padding:80px 20px;
  }

  .dashboard-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .dashboard-content h2{
    font-size:38px;
  }

  .dashboard-card{
    padding:25px;
  }

  .dashboard-top h3{
    font-size:32px;
  }

}