.text-deposition {
    margin-bottom: 20px;
}

.slider {
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.slider-controls {
    position: absolute;
    top: 50%;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.slider-control {
    width: 50px;
    height: 50px;
    cursor: pointer;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 1);
}

.slider-width {
    display: flex;
    transition: all ease 1s;
}

.slider-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    flex: 0 0 auto;
    width: 260px;
    margin: 0 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    font-size: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider-item.agreement {
    width: 200px;
    height: 100px;
}

.slider-item img {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-top: 10px;
}

.slider-item p {
    font-size: medium;
    height: 88px;
    overflow: hidden;
    margin: 0;
}

.slider-item span {
    padding: 0;
    color: #7d1e19;
    font-weight: 700;
    cursor: pointer;
}

.slider-item.active p {
    height: auto;
    overflow: visible;
}

.slider-item .name {
    margin-top: 10px;
    font-weight: bold;
}

.slider-item h3 {
    margin-top: 0;
}

.aspas {
    font-size: larger;
    font-family: serif;
    font-style: italic;
}

@media (max-width: 425px) {
    .slider-controls {
        width: 99%;
    }

    .slider-item {
        width: 350px;
    }

    .slider-item.agreement {
        width: 280px;
        height: 140px;
    }
}
