/* Sección de Crédito Adaptable */
.credito-adaptable-section {
    padding: 80px 0;
    background-color: #f8f9fa;
  }
  
  .credito-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    font-family: 'Onest', sans-serif;
  }
  
  .titulo-negro {
    color: #000000;
  }
  
  .titulo-teal {
    color: #20B2AA;
    font-size: 2.8rem;
    font-weight: 800;
  }
  
  .credito-columna {
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 400px;
  }
  
  .credito-columna-izquierda {
    justify-content: flex-start;
  }
  
  .credito-columna-derecha {
    justify-content: flex-end;
  }
  
  .credito-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .credito-icono {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 5px;
  }
  
  .credito-icono i {
    font-size: 2.5rem;
    color: #20B2AA;
  }
  
  .credito-columna-derecha .credito-icono i {
    color: #FF8C00;
  }
  
  .credito-titulo-container {
    flex: 1;
  }
  
  .credito-subtitulo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    display: block;
    font-family: 'Onest', sans-serif;
  
  }
  
  .subtitulo-negro {
    color: #000000;
    display: block;
    margin-bottom: 5px;
  }
  
  .subtitulo-teal {
    color: #20B2AA;
    display: block;
  }
  
  .subtitulo-naranja {
    color: #FF8C00;
  }
  
  .credito-descripcion {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #000000;
    margin-left: 55px;
    font-family: 'Poppins', Helvetica, Arial, sans-serif;
  }
  
  .descripcion-teal {
    color: #20B2AA;
    font-weight: 600;
  }
  
  .descripcion-naranja {
    color: #FF8C00;
    font-weight: 600;
  }
  
  .btn-credito-teal {
    background: linear-gradient(135deg, #20B2AA, #48D1CC);
      color: white;
      border: none;
      padding: 4px 1px;
      border-radius: 25px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      margin-left: 55px;
      max-width: 191px;
  
  }
  
  .btn-credito-teal:hover {
    background: linear-gradient(135deg, #1E9B94, #3FB8B3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
  }
  
  .btn-credito-naranja {
    background: linear-gradient(135deg, #FF8C00, #FFA500);
    color: white;
    border: none;
    padding: 4px 1px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 55px;
    max-width: 191px;
  }
  
  .btn-credito-naranja:hover {
    background: linear-gradient(135deg, #E67E00, #E69400);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  }
  
  .credito-imagenes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .imagen-container {
    width: 370px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .credito-imagen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }
  
  /* Responsive */
  @media (max-width: 991px) {
    .credito-titulo {
      font-size: 2rem;
    }
    
    .titulo-teal {
      font-size: 2.2rem;
    }
    
    .credito-imagenes {
      flex-direction: row;
      gap: 15px;
    }
    
    .imagen-container {
      width: 150px;
      height: 150px;
    }
  }
  
  @media (max-width: 767px) {
    .credito-adaptable-section {
      padding: 60px 0;
    }
    
    .credito-titulo {
      font-size: 1.8rem;
    }
    
    .titulo-teal {
      font-size: 2rem;
    }
    
    .credito-subtitulo {
      font-size: 1.3rem;
    }
    
    .credito-header {
      gap: 10px;
      flex-direction: column;
      align-items: flex-start;
      text-align: center;
      margin-bottom: 25px;
    }
    
    .credito-icono {
      align-self: center;
      margin-bottom: 15px;
    }
    
    .credito-icono i {
      font-size: 2.5rem;
    }
    
    .credito-titulo-container {
      text-align: center;
      width: 100%;
    }
    
    .subtitulo-negro {
      margin-bottom: 5px;
    }
    
    .credito-descripcion {
      text-align: center;
      font-size: 0.95rem;
      margin-bottom: 20px;
      margin-left: 0;
    }
    
    .btn-credito-teal,
    .btn-credito-naranja {
      width: 100%;
      text-align: center;
      padding: 15px 20px;
      font-size: 1rem;
      margin-left: 0;
      display: block;
      margin: 0 auto;
    }
    
    .imagen-container {
      width: 120px;
      height: 100px;
    }
    
    .credito-columna {
      min-height: auto;
      justify-content: flex-start !important;
    }
  }
  
  @media (max-width: 480px) {
    .credito-adaptable-section {
      padding: 40px 0;
    }
    
    .credito-columna {
      padding: 15px;
      margin-bottom: 30px;
      min-height: auto;
      justify-content: flex-start !important;
    }
    
    .credito-subtitulo {
      font-size: 1.2rem;
    }
    
    .credito-descripcion {
      font-size: 0.9rem;
      margin-bottom: 18px;
      margin-left: 0;
    }
    
    .btn-credito-teal,
    .btn-credito-naranja {
      padding: 12px 15px;
      font-size: 0.95rem;
      margin-left: 0;
      display: block;
      margin: 0 auto;
    }
    
    .imagen-container {
      width: auto;
      height: 350px;
    }
  }