body {
    margin: 0;
    background-color: #eef2f3;
    color: #1f2933;
    font-family: Arial, sans-serif;
}

.contenedor {
    width: min(980px, calc(100% - 32px));
    margin: 30px auto;
}

h1 {
    margin: 0 0 18px;
    color: #275763;
    font-size: 30px;
}

.slideshow {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 170px;
    border: 2px solid #1f2933;
    background-color: #111827;
}

.slide {
    position: absolute;
    inset: 0;
    display: none;
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 14px 18px;
    background-color: rgba(31, 41, 51, 0.78);
    color: white;
    font-size: 18px;
}

.control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.85);
    color: #1f2933;
    cursor: pointer;
    font-size: 30px;
    line-height: 44px;
    transform: translateY(-50%);
}

.control:hover {
    background-color: white;
}

.prev {
    left: 14px;
}

.next {
    right: 14px;
}

.indicadores {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 58px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.indicadores button {
    width: 13px;
    height: 13px;
    padding: 0;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
}

.indicadores button.activo {
    background-color: white;
}

@media (max-width: 700px) {
    .slideshow {
        height: 150px;
    }

    .slide p {
        font-size: 15px;
    }
}
