/* Como funcionan wrapper */
.como-funcionan-wrapper {
    background: linear-gradient(135deg, #fbf5ff 35%, #effcf8 100%);
    padding-top: 48px;
}
/* Steps card */
.steps-card {
    background: white;
    border-radius: 16px;
    border: 1.5px solid #E5E7EB;
    margin: 10px 120px;
    padding: 30px;
}

.steps-card-header {
    text-align: center;
}

.steps-card-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    padding-top: 20px;
}

.steps-card-header p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #41474f;
    line-height: 1.5;
    padding-top: 20px;
    padding-bottom: 10px;
}

/* Steps list */
.steps-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-top: 10px;
    gap: 10px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding: 26px 0;
    border-bottom: 1px solid #E5E7EB;
}

.step-last {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding-top: 24px;
    border-bottom: none;
}

.step h3,
.step-last h3{
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #41474f;
    padding-bottom: 5px;
}

.step p,
.step-last p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #808080;
    line-height: 1.5;
}

/* Numeros */
.numero {
    width: 60px;
    height: 60px;
    font-size: 20px;
}

/* Aportes */
.aportes {
    padding-bottom: 45px;
    margin-top: 40px;
}

.aportes h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 40px 120px;
    line-height: 1.3;
    padding-bottom: 20px;
}

.aportes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 30px;
}

.aportes-item {
    padding: 0 32px;
    text-align: center;
    border-right: 1px solid #E5E7EB;
}

.aportes-item-ultimo {
    padding: 0 32px;
    text-align: center;
    border-right: none;
}

.aportes-item h3, 
.aportes-item-ultimo h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 8px;
}

.aportes-item p, 
.aportes-item-ultimo p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #808080;
    line-height: 1.6;
}
