
    * {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif;}
    body {color: #1a1a1a; overflow-x: hidden;}

    /* HEADER */
    header {
      background: linear-gradient(90deg, #00a86b 0%, #00875a 100%);
      color: white;
      padding: 25px 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    header h1 {font-size: 2.3rem; font-weight: 700; margin-bottom: 5px;}
    header p {font-size: 1rem; opacity: 0.9;}

    /* HERO */
    .hero {
      position: relative;
      text-align: center;
      padding: 100px 20px 80px;
      color: #fff;
      background: url('../assets/973ac324ca6ef396.jpg') center/cover no-repeat;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,135,90,0.8), rgba(0,180,100,0.7));
      z-index: 0;
    }
    .hero h2, .hero p, .hero a {position: relative; z-index: 1;}
    .hero h2 {font-size: 2.1rem; font-weight: 700; margin-bottom: 10px;}
    .hero p {font-size: 1.1rem; margin-bottom: 25px;}
    .hero a {
      background: #00b359; color: #fff; text-decoration: none;
      padding: 14px 30px; border-radius: 50px; font-weight: 600;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }

    /* SIMULADOR DE CRÉDITO */
    .simulador {
      background: #fff;
      text-align: center;
      padding: 60px 20px;
    }
    .simulador h2 {color: #00994d; margin-bottom: 20px;}
    .simulador input[type=range] {
      width: 80%;
      margin: 25px 0;
      accent-color: #00a86b;
    }
    .resultado {
      font-size: 1.2rem;
      color: #004d2c;
      margin-top: 10px;
    }
    .btn-simular {
      display: inline-block;
      background: linear-gradient(90deg, #00b359, #00994d);
      color: #fff; padding: 12px 28px; border-radius: 40px;
      text-decoration: none; font-weight: 600; margin-top: 20px;
      transition: 0.3s;
    }
    .btn-simular:hover {background: #00875a;}

    /* FORMULARIO */
    form {
      background: #fff; max-width: 420px; margin: 40px auto;
      padding: 35px; border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    }
    input, button {
      width: 100%; padding: 14px; margin-bottom: 16px;
      border-radius: 10px; border: 1px solid #cde4d4;
      font-size: 1rem;
    }
    input:focus {border-color: #00b359; outline: none; box-shadow: 0 0 0 3px rgba(0,179,89,0.2);}
    button {
      background: linear-gradient(90deg, #00b359, #00994d);
      color: white; border: none; font-weight: 600; cursor: pointer;
      letter-spacing: 0.5px; transition: 0.3s;
    }
    button:hover {transform: scale(1.02); background: #00875a;}

    /* TESTIMONIOS */
    .testimonios {
      background: #EBFDF0; 
      padding: 60px 20px; 
      text-align: center;
    }
    .testimonios h2 {
      color: #00994d; 
      margin-bottom: 40px;
    }
    .testimonial-container {display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;}
    .testimonial {
      background: #fff; border-radius: 14px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 25px; max-width: 320px;
    }

    /* MAPA */
    .mapa {
      text-align: center; 
      padding: 60px 20px;
      background: #00994d; 
      color: white; 
    }
    iframe {width: 100%; height: 350px; border: none; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);}

    /* BOTONES FLOTANTES */
    .whatsapp-btn, .call-btn {
      position: fixed; right: 20px; width: 60px; height: 60px;
      border-radius: 50%; display: flex; align-items: center;
      justify-content: center; color: white; z-index: 100;
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      transition: transform 0.2s ease;
    }
    .whatsapp-btn {bottom: 90px; background: #25D366;}
    .call-btn {bottom: 20px; background: #00994d;}
    .whatsapp-btn:hover, .call-btn:hover {transform: scale(1.1);}

    /* SECCION CONFIANZA */
    .confianza {
      background: #EBFDF0; 
      padding: 60px 25px;
      text-align: center;
    }
    .confianza h2 {
      color: #00994d; 
      font-size: 1.9rem;
      margin-bottom: 10px;
    }
    .confianza .intro {
      max-width: 650px;
      margin: 0 auto 35px;
      font-size: 1.05rem;
      color: #333; 
    }
    .confianza-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      text-align: left;
    }
    .confianza .bloque {
      background: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      max-width: 350px;
    }
    .confianza h3 {
      color: #00b359;
      margin-bottom: 15px;
    }
    .confianza ul {list-style: none; padding: 0;}
    .confianza ul li {
      margin-bottom: 10px;
      padding-left: 10px;
      font-size: 0.95rem;
    }
    .confianza .nota {
      margin-top: 30px;
      font-size: 0.9rem;
      color: #444; 
    }
    .btn-verde {
      display: inline-block;
      margin-top: 25px;
      background: linear-gradient(90deg, #00b359, #00994d);
      color: #fff;
      padding: 12px 30px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }
    .btn-verde:hover {background: #00875a;}

    /* === NUEVA SECCIÓN INFO ADICIONAL (AJUSTADA) === */
    .info-adicional {
      background: #fff; 
      padding: 60px 20px;
      text-align: center;
    }
    .info-adicional h2 {
      color: #00994d; 
      margin-bottom: 40px;
    }
    .info-adicional-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px; 
      justify-content: center;
      max-width: 1100px; 
      margin: 0 auto;
    }
    .info-adicional .card {
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 25px;
      max-width: 480px; 
      flex: 1;
      min-width: 300px;
      text-align: center; 
      display: flex; 
      flex-direction: column; 
      justify-content: center; 
    }
    .info-adicional .card h3 {
      color: #00b359;
      margin-bottom: 15px;
      text-align: center;
    }
    .info-adicional .list-detalles p {
      font-size: 0.95rem;
      margin-bottom: 8px;
      border-bottom: 1px solid #f0f0f0;
      padding-bottom: 8px;
    }
    .info-adicional .list-detalles p:last-child {
      border-bottom: none;
    }
    .info-adicional .card p {
        margin-bottom: 10px;
        font-size: 0.95rem;
    }
    .info-adicional .card p.ejemplo-no-exhaustivo {
         color: #35465e; 
         margin-top: 10px;
    }
    /* === FIN NUEVA SECCIÓN === */

    /* FOOTER */
    footer {
      background: #00994d; color: white; text-align: center;
      padding: 25px 10px; font-size: 0.95rem;
    }
    footer a {
      color: white;
    }

    @media (max-width: 768px) {
      .hero {padding: 80px 15px;}
      .hero h2 {font-size: 1.7rem;}
      form {margin: 25px 15px;}
      .testimonial-container {flex-direction: column; align-items: center;}
      .confianza-container {flex-direction: column; align-items: center;}
      .info-adicional-container {flex-direction: column; align-items: center;}
    }
  