.item-valor {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.item-valor::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.item-valor .contenido {
    position: relative;
    z-index: 2;
}

.item-valor h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.item-valor p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

/* Guia */
.step-card {
    background-color: var(--gris);
    transition: transform 0.3s ease, background-color 0.3s ease;
    height: 100%;
    border: 1px solid var(--principal-dark);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-card .icon i {
    color: var(--principal-dark);
}

/* nuestro equipo */
.equipo-card {
    background-color: var(--text);
    border: 1px solid var(--light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.text-accent {
    color: var(--light);
}

