/* Corpo da página */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #007ced;
}


/* Títulos principais */
h1 {
    text-align: center;
    color: #fff;
    margin: 20px;
    font-size: 2em;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

/* Subtítulos */
h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    border-bottom: 2px solid #007ced;
    padding-bottom: 5px;
    color: #007ced;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

/* Container de busca */
.search-container {
    text-align: center;
    margin: 20px auto;
    padding: 10px;
}

.search-input {
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1em;
    max-width: 500px; /* Limita a largura em telas grandes */
}

/* Seções principais */
section {
    background-color: #ffffff;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 95%;
}

/* Carrossel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden; /* Garante que apenas 5 itens sejam visíveis */
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease; /* Suavidade na rolagem manual */
    width: max-content; /* Ajusta dinamicamente para o conteúdo total */
}

/* Estilo de cada item de vídeo */
.video-item {
    width: 20%; /* Cada item ocupa 20% para caber 5 por vez */
    text-align: center;
    padding: 10px;
    box-sizing: border-box; /* Inclui padding na largura total */
    flex-shrink: 0; /* Evita que os itens encolham */
}

.responsive-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border: 1px solid #ddd;
}

.video-title {
    text-align: center;
    padding: 10px;
    background-color: #007ced;
    color: #fff;
    font-weight: bold;
}

.highlight {
    border: 2px solid #0066cc !important;
    background-color: #f0f8ff;
}

/* Botões para navegar no carrossel */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #00ffe1;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, background-color 0.3s;
}

.carousel-button:hover {
    transform: scale(1.2);
    background-color: #00ffe1;
    color: #007ced;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* Botão "Ver Tudo" */
.view-all a {
    display: block;
    padding: 15px;
    background-color: #007ced;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    text-align: center;
    max-width: 500px;
    margin: 20px auto;
}

.view-all a:hover {
    background-color: #005bb5;
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.view-all {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

/* Rodapé */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer .social-icons a {
    color: #007ced;
    margin: 0 10px;
    font-size: 1.5em;
}


/* Estilo geral do rodapé */
#footer {
    background-color: #333;
    color: #fff;
    padding: 1px 0 0;
    font-family: Arial, sans-serif;
margin: 0; /* Remove espaçamento externo */
    padding: 0; /* Remove espaçamento interno */
    line-height: 1; /* Ajusta o espaçamento entre linhas */
}

/* Estilo para o container principal */
#footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Estilo para a linha principal */
#footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* Blocos do rodapé */
#footer .footer-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

/* Estilo do bloco 1 (Logo e redes sociais) */
#footer .logo-block img {
    max-width: 100px;
    height: auto;
    margin: 0 auto 10px;
}

#footer .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0 0;
}

#footer .social-icons li a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s, transform 0.3s;
}

#footer .social-icons li a:hover {
    color: #007ced;
    transform: scale(1.2);
}

/* Estilo do bloco 2 (Atendimento) */
#footer .footer-block h6 {
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #007ced;
}

#footer .footer-block p {
    font-size: 0.9em;
    margin: 5px 0;
}

/* Estilo do bloco 3 (Endereço) */
#footer .footer-block p {
    line-height: 1.6;
}

/* Links de políticas na parte inferior */
#footer .footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
}

#footer .footer-links a {
    color: #007ced;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

#footer .footer-links a:hover {
    color: #00ffe1;
}

/* Linha divisória */
#footer hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10px auto;
}

/* Responsividade */
@media (max-width: 768px) {
    #footer .row {
        flex-direction: column;
        align-items: center;
    }

    #footer .footer-block {
        text-align: center;
        margin-bottom: 20px;
    }
}

  .download-link {
        color: white;
        text-decoration: none; /* Remove sublinhado */
        font-size: 16px;
        font-weight: bold;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .download-link:hover {
        color: black ; /* Cor ao passar o mouse */
        text-decoration: underline; /* Adiciona sublinhado no hover */
    }

    .download-link i {
        font-size: 18px;
    }

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .video-item {
        width: 45%; /* Exibe 2 itens por vez */
        margin-bottom: 15px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }

    .video-item iframe {
        height: 150px;
    }

    h1 {
        font-size: 1.8em;
        margin: 15px;
    }

    h2 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .view-all a {
        font-size: 0.9em;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .video-item {
        width: 90%; /* Exibe 1 item por vez */
        margin-bottom: 20px;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }

    .video-item iframe {
        height: 120px;
    }

    h1 {
        font-size: 1.6em;
        margin: 10px;
    }

    h2 {
        font-size: 1.2em;
        margin-bottom: 8px;
    }

    .view-all a {
        font-size: 0.8em;
        padding: 10px;
    }
}
/* Estilo do container principal */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

/* Itens da lista de downloads */
.Dowloads-item {
    flex: 1 1 200px; /* Tamanho mínimo de 200px */
    max-width: 300px;
    margin: 10px;
    text-align: center;
    background-color: #007ced;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Imagens responsivas */
.responsive-image-Dowloads {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Títulos */
.Dowloads-title {
    margin-top: 10px;
    font-size: 16px;
}

/* Links */
.download-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 5px;
}

.download-link:hover {
    color:  black;
    text-decoration: underline;
}

/* Botões do carrossel */
.carousel-button {
    background: none;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    margin: 0 10px;
}

.carousel-button:hover {
    color: black;
}

/* Responsividade */
@media (max-width: 768px) {
    .Dowloads-item {
        flex: 1 1 100%; /* Itens ocupam toda a largura */
    }

    .responsive-image-Dowloads {
        max-width: 80%; /* Menor tamanho para telas pequenas */
    }
}

footer #page-version {
    font-weight: bold;
    color: #007ced; /* Destaque para a versão */
}

#page-version {
background-color: #333;
margin-left: 90%;
}

/* Estilo do botão de alternância de modo escuro */
.dark-mode-button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1em;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.dark-mode-button {
    float: right;
    margin-right: 20px; /* Ajuste o valor conforme necessário */
}


.dark-mode-button:hover {
    background-color: #fff;
    color: #007ced;
}

/* Modo Escuro */
body.dark-mode {
    background-color: #333; /* Fundo escuro */
    color: #fff; /* Texto claro */
}

body.dark-mode h1,
body.dark-mode h2 {
    color: #fff; /* Alterando cor dos títulos no modo escuro */
}

body.dark-mode section {
    background-color: #444; /* Seções com fundo mais escuro */
    color: #fff; /* Texto claro nas seções */
}

body.dark-mode .carousel-button {
    background-color: rgba(255, 255, 255, 0.7);
    color: #007ced;
}

body.dark-mode .view-all a {
    background-color: #007ced;
    color: #fff;
}

body.dark-mode .carousel-button:hover {
    background-color: #00ffe1;
    color: #007ced;
}

body.dark-mode .view-all a:hover {
    background-color: #005bb5;
}

/* Outros ajustes conforme necessário... */

/* Responsividade */
@media (max-width: 768px) {
    .video-item {
        width: 45%; /* Exibe 2 itens por vez */
        margin-bottom: 15px;
    }
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
    .video-item {
        width: 90%; /* Exibe 1 item por vez */
        margin-bottom: 20px;
    }
}

.scroll-to-top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Esconde o botão inicialmente */
    padding: 10px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s ease;
 z-index: 9999; /* Garante que o botão fique sobreposto */
}
.scroll-to-top-button:hover {
    background-color: #005bb5;
}
