/* ===== Global ===== */
.section-padding{
  padding:80px 0;
}

a {
    color: #1c5617;
    text-decoration: none;
}
a:hover {
    font-weight:500;
}
.hero{
  background: linear-gradient(135deg,#f8f9fa 0%,#ffffff 100%);
  padding:100px 0;
}




.card-hover{
  transition:.3s;
}
.card-hover:hover{
  transform:translateY(-5px);
}

.simulador-box{
  background:#f8f9fa;
  border-radius:12px;
  padding:30px;
}

/* BANCOS */

.bank-card{
  position: relative;
  transition: all .3s ease;
  border: 1px solid #e9ecef;
}

.bank-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.bank-card::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #198754; /* success */
  transition: width .3s ease;
}

.bank-card:hover::after{
  width: 100%;
}

.bank-card:hover .bank-logo{
  transform: scale(1.05);
}


.bank-logo{
  max-height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
/* TIPOS */

.tipo-card{
  transition: all .3s ease;
  border: 1px solid #e9ecef;
}

.tipo-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.icon-circle-success{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #e9f7ef;
  color: #198754;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 22px;
  transition: all .3s ease;
}

.tipo-card:hover .icon-circle-success{
  background: #198754;
  color: #fff;
}

/* Marco sutil (sin gradiente) */
.image-frame{
  padding: 5px; 
  border: 1px solid #198754;
  border-radius: 20px;          /* radio externo */
  display: inline-block;
  background: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  overflow: hidden;             /* clave para que todo respete el radio */
}

/* Imagen interna */
.hero-image{
  width: 100%;
  height: 350px;                /* ALTURA UNIFICADA */
  object-fit: cover;            /* recorta sin deformar */
  border-radius: 20px;          /* MISMO radio que el contenedor */
  display: block;
}

@media (max-width: 768px){
  .hero-image{
    height: 260px;
  }
}

/* Watermark más fino + fade */
.site-watermark{
  position:absolute;
  right:14px;
  bottom:14px;
  height:34px;
  width:auto;
  background: rgba(255,255,255,.88);
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  opacity: .95;
  transition: opacity .25s ease, transform .25s ease;
}

/* Hover: aparece un poco más */
.image-frame:hover .site-watermark{
  opacity: 1;
  transform: translateY(-2px);
}



.bank-filter.active{
  background:#198754;
  border-color:#198754;
  color:#fff;
}



/* Ajustes generales */
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

h1,h2,h3{
  font-weight:700;
}

.list-clean {
  list-style: none;
  padding-left: 0;
}

.list-clean li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.list-clean li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #198754; /* verde success */
  position: absolute;
  left: 0;
  top: 8px;
}

.list-danger li::before {
  background: #dc3545; /* rojo bootstrap */
}


