/* =========================
   TRANSFERENCIAS - CARMOTORS
   ========================= */

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:black;
  color:white;
}

/* helpers */
.section{ padding: 60px 0; }
.wrap{ width: min(1200px, 92%); margin: 0 auto; }
.center{ text-align:center; }

/* =========================
   HERO
   ========================= */
.hero-transfer{
  position: relative;
  width: 100%;
  height: 240px;
  background: url("../img/transferencias/hero.jpg") center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
}

.hero-content{
  position:absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92%);
  color:#fff;
}

.hero-content h1{
  margin:0 0 8px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .2px;
}

.breadcrumb{
  font-size: 13px;
  opacity: .95;
}

.breadcrumb a{
  color:#fff;
  text-decoration:none;
}

.breadcrumb span{
  margin: 0 6px;
}

/* =========================
   BLOQUE CENTRADO
   ========================= */
.center-block{
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
}

.title-orange{
  margin:0 0 16px;
  color:#f58220;
  font-size: 38px;
  font-weight: 900;
}

.lead-strong{
  margin: 0 auto 14px;
  max-width: 900px;
  font-size: 20px;
  font-weight: 800;
  color:white;
  line-height: 1.45;
}

/* =========================
   ¿QUÉ INCLUYE?
   ========================= */
.includes{ padding-top: 40px; }

.big-title{
  margin:0 0 22px;
  font-size: 40px;
  font-weight: 900;
  color:#111;
}

.include-item{
  margin: 0 0 26px;
}

.include-item h3{
  margin:0 0 8px;
  font-size: 22px;
  font-weight: 900;
  color:white;
}

.include-item p{
  margin:0;
  color:white;
  font-size: 16px;
  line-height: 1.75;
  max-width: 980px;
}

/* =========================
   PASOS (FONDO GRIS)
   ========================= */
.steps{
  background:#f6f6f6;
}

.small-top{
  margin:0 0 14px;
  font-size: 22px;
  color:#222;
}

.big-center{
  margin:0 0 14px;
  font-size: 36px;
  font-weight: 900;
  color:#222;
  line-height: 1.25;
}

.mid-center{
  margin:0 0 38px;
  font-size: 28px;
  font-weight: 900;
  color:#222;
  line-height: 1.25;
}

/* grilla pasos */
.steps-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  text-align:left;
}

.step .num{
  font-size: 48px;
  font-weight: 900;
  color:#f58220;
  line-height: 1;
  margin-bottom: 6px;
}

.step h4{
  margin:0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color:#222;
  line-height: 1.2;
}

.step p{
  margin:0;
  font-size: 15px;
  line-height: 1.7;
  color:#666;
}




.autofact-logo{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
}

.autofact-logo img{
  max-width:240px;
  width:100%;
  opacity:0.95;
  transition:all .3s ease;
}

.autofact-logo img:hover{
  opacity:1;
  transform:scale(1.05);
}

.autofact-logo span{
  font-size:13px;
  color:#888;
  letter-spacing:1px;
  text-transform:uppercase;
}
/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1100px){
  .steps-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px){
  .section{ padding: 44px 0; }

  .hero-transfer{ height: 210px; }
  .hero-content h1{ font-size: 34px; }

  .title-orange{ font-size: 30px; }
  .lead-strong{ font-size: 17px; }

  .big-title{ font-size: 32px; }
  .include-item h3{ font-size: 20px; }
  .include-item p{ font-size: 15px; }

  .small-top{ font-size: 18px; }
  .big-center{ font-size: 26px; }
  .mid-center{ font-size: 20px; }

  .steps-grid{ grid-template-columns: 1fr; }
}