.section {
    padding-top: 56px;
    padding-bottom: 56px;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.section-title::after{
    display: block;
    content: '';
    width: 50px;
    height: 4px;
    background-color: #2a0f14;
    margin-top: 8px;
}

.inovacao-tecnologia-section {
    padding-bottom: 50px ;
    padding-top: 50px;
    background-color: #4e4697;
}

.inovacao-tecnologia-section .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.inovacao-tecnologia-section .text-content {
    flex: 1;
    max-width: 600px;
    color: white;
}

.inovacao-tecnologia-section .text-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.inovacao-tecnologia-section .text-content p {
    font-size: 18px;
    line-height: 1.6;
}

.inovacao-tecnologia-section .image-content img {
    width: 400px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.news {
    text-align: center;
    color: #333;
}
.news-section {
    display: flex;
    flex-direction: column;
    align-items: center;;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.news-item {
    display: none;
    width: 70%;
    align-items: center;
    text-align: center;
}
.news-item.active {
    display: block;
}
.news-item img {
    width: 100%;
    height: auto; /* Definindo uma altura fixa */
    max-height: 700px;
    object-fit: cover; /* Ajusta a imagem para preencher a altura e largura */
    border-radius: 8px;
}
.news-title {
    padding: 15px;
    font-size: 1.2em;
    color: #333;
}
.news-date {
    font-size: 0.9em;
    color: #999;
}
.news-content {
    margin-top: 5px;
    font-size: 1em;
    color: #666;
}
.nav-button {
    position: absolute;
    top: 120%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}
.nav-button.left {
    left: 10px;
}
.nav-button.right {
    right: 10px;
}

.news {
    padding-top: 5px;
    margin: 5px;
}

.link-zap img {
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.recent-content-section {
    width: 100%;

    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.recent-content-section h2 {
    color: #4e4697;
    margin-bottom: 50px;
    font-size: 25px;

}

.carousel-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.content-carousel {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    /* For scrollbar */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.content-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.content-card {
    flex: 0 0 auto;
    width: 300px;
    min-width: 280px;
    margin: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.content-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    scale: 1.025;
}

.content-card img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
}

.content-card h3 {
    font-size: 1.2em;
    color: #4e4697;
    padding: 15px;
    margin: 0;
}

.content-card p.date {
    font-size: 0.9em;
    color: #666;
    padding: 0 15px 15px;
    margin: 0;
}

.category-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4e4697;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
}

.arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
