body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    text-align: center;
}

.titulo {
    margin-top: 20px;
    font-size: 26px;
    font-weight: bold;
}

.top-bar {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.btn-home {
    background: white;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
    right: 40px;
}

.btn-home:hover {
    background: #1adb09;
}

.slider-container {
    width: 90%;
    max-width: 1100px;
    margin: 20px auto;
    position: relative;
    border-radius: 18px;
     background: #fff;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12),
                0 3px 6px rgba(0,0,0,0.06);
}

.slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
}

.slide {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.slide.active {
    display: flex;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 12px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots {
    margin-top: 12px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.dot.active {
    background: #555;
}

/* RESPONSIVO */
@media (max-width: 600px) {

    .slider {
        height: 320px;
    }

    .btn-home {
        padding: 8px 16px;
        font-size: 14px;
        position: relative;
        right: 20px;
    }

    .titulo {
        font-size: 20px;
    }

    .btn {
        padding: 8px;
        font-size: 18px;
    }
}
