/* ==========================================================================
   how-to-rent.css - Sección "¿Cómo alquilar un vehículo?" Sincronizada
   ========================================================================== */

.section.how-to-rent {
    padding: 80px 0;
    background: #F8F9FA;
    text-align: center;
}

.section.how-to-rent .section-subtitle {
    display: inline-block;
    background: #E3F2FD;
    color: #1565C0;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section.how-to-rent .section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a252c; 
    margin-bottom: 60px;
    line-height: 1.2;
}

.section.how-to-rent .btn {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Grid de los 3 pasos */
.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tarjeta contenedora de cada paso */
.card-icon-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.card-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icono redondo superior */
.card-icon-icon {
    font-size: 2.2rem;
    color: #1565C0;
    background: #E3F2FD;
    border-radius: 20px;
    
    /*display: flex;
    align-items: center;
    justify-content: center;
    */
    padding: 2rem;
    margin-bottom: 1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.card-icon-box:hover .card-icon-icon {
    background: #1565C0;
    color: #ffffff;
}

/* Título del paso */
.card-icon-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a252c;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
}

/* Descripción del paso */
.card-icon-descrip {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Ajustes Responsive */
@media (max-width: 768px) {
    .section.how-to-rent {
        padding: 60px 0;
    }
    .section.how-to-rent .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
        padding: 0 16px;
    }
    .section-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
}