/* HERO */
.hero-leasing {
  background: url('../imagenes/rentek_leasing_hero_01.jpg') center/cover no-repeat;
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hero-leasing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.55);
}
.hero-leasing .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-leasing h1 {
  color: #f0ab07;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero-leasing p.lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #fff;
}

/* VENTAJAS */
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}
.ventaja i {
  font-size: 2rem;
  color: #f0ab07;
  margin-bottom: 10px;
}

/* PLANES */
.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.plan-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}
.plan-card:hover {
  transform: translateY(-5px);
}
.plan-card i {
  font-size: 2.5rem;
  color: #f0ab07;
  margin-bottom: 15px;
}
.plan-card h3 {
  margin-bottom: 12px;
  color: #1a1a1a;
}

/* PROCESO */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 30px;
  text-align: center;
}
.paso span {
  display: inline-block;
  background: #f0ab07;
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* CTA FINAL */
#cta-leasing {
  background: #f0ab07;
  text-align: center;
  padding: 60px 20px;
}
.cta-leasing h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.cta-leasing p {
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* SECCIÓN ¿QUÉ ES EL LEASING? */
.leasing-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.leasing-info .text h2 i {
  color: #f0ab07;
  margin-right: 10px;
}

.leasing-info .text p {
  margin-bottom: 15px;
  color: #333;
}

.leasing-info .image img {
  width: 80%;
  border-radius: 10px;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
}

/* Responsive */
@media (max-width: 768px) {
  .leasing-flex {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .leasing-info .image img {
    max-width: 85%;
    margin: 20px auto 0;
  }
}

/* Grid general */
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

/* Paso */
.proceso-paso {
  text-align: center;
}

/* Número dentro de círculo amarillo */
.proceso-num {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f0ab07;   /* Amarillo Rentek */
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  margin: 0 auto 15px auto;
}

/* Imagen circular con aro amarillo */
.proceso-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: block;
  margin: 0 auto 15px auto;
}

/* Títulos y texto */
.proceso-paso h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.proceso-paso p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
