﻿/* ===== CÓMO EMPIEZAS ===== */
.how-section {
    padding: 60px 0;
    background: #ffffff;
}

.how-header h2 {
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 10px;
}

    .how-header h2 i {
        color: #2563eb;
        margin-right: 10px;
    }

.how-header p {
    color: #6b7280;
    font-size: 1.05rem;
    margin-bottom: 60px;
}

/* Cards */
.how-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

    .how-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(37,99,235,0.15);
    }

.how-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.how-icon {
    min-width: 55px;
    height: 55px;
    background: rgba(37,99,235,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .how-icon i {
        font-size: 1.4rem;
        color: #2563eb;
    }

.how-step h4 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2937;
}

.how-step p {
    margin: 0;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Imagen */
.how-image {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
