body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
    background: linear-gradient(to top, #e9bdff 0%,#d6962f 40%,#bdfeff 80%);
    overflow-x: hidden;
}

/* ===== Topbar ===== */
.topbar {
    overflow: hidden;
    background-image: url(../../../../barra_tooper6.png);
    filter: brightness(150%);
    background-position-y: -32px;
    height: 80px;
}

.topbar a {
    float: right;
    color: aliceblue;
    text-align: center;
    padding: 7px 16px;
    text-decoration: none;
    font-size: clamp(1rem, 5vw, 2rem);
}   

h1,
h2,
h3,
p{
    margin: 7px 0px;
    margin-left: 20px;
}

.download a img {
    width: 10%;
    height: 10%;
}

footer {
    background-image: url(../../../media/footer_background.png);
    color: aliceblue;
    padding: 20px;
    text-align: center;

    margin-top: 3%;
}

footer table {
    margin-top: 50px;
    text-align: left;
}

div:not(footer div):not(.topbar){
    padding: 10px;
}




.carousel-container {
    position: relative;
    width: 80%;
    margin: 20px auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item img,
.carousel-item video {
    max-width: 100%;
    max-height: 500px;
    border-radius: 12px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 10;
    border-radius: 50%;
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }