.seccion1 {
    position: relative; 
    width: 100%;
    max-width: 100%;
    margin: 10dvh auto 0;
    overflow: hidden;
    background-color: #f0f0f0; 
}

.seccion1-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.seccion1-slide { 
    min-width: 100%;
    box-sizing: border-box;
}

.seccion1-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 7; 
}

.seccion1-button { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 28px;
    z-index: 1;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}
.seccion1-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.seccion1-button.prev-button { 
    left: 20px;
}

.seccion1-button.next-button { 
    right: 20px;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .seccion1-slide img {
        aspect-ratio: 4 / 3;
    }
    .seccion1-button {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    .seccion1-button.prev-button {
        left: 10px;
    }
    .seccion1-button.next-button {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .seccion1-slide img {
        aspect-ratio: 3 / 2;
    }
    .seccion1-button {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}