
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #007ced; /* Fundo azul */
}

h1 {
    text-align: center;
    color: #fff;
    margin: 20px;
    font-size: 2em;
    text-transform: uppercase;
text-transform: uppercase; /* Transforma o texto em maiúsculas */
    font-style: italic; /* Deixa o texto em itálico */
font-weight: bold; /* Deixa o texto em negrito */
text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

p {
text-align: center;
color: #fff;
}
section {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 95%;
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
  
    border-bottom: 2px solid #007ced;
    padding-bottom: 5px;
    text-transform: uppercase;
}


.campo-imagem {
    position: relative; /* Necessário para centralizar a imagem */
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    height: 100%; /* Certifique-se de que o campo tenha altura definida */
}

.campo-imagem img {
    position: absolute;
    top: 45%; /* Ajusta a imagem 45% a partir do topo do container */
    left: 80%; /* Centraliza horizontalmente */
;
    transform: translate(-50%, -50%); /* Ajuste para manter o centro correto */
    max-width: 100%; /* Responsivo: não excede o tamanho do container */
    height: auto; /* Mantém a proporção */
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Itens mais largos */
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.video-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.video-item iframe {
    width: 100%;
    height: 250px; /* Aumenta a altura dos vídeos */
    border-bottom: 1px solid #ddd;
}

.video-title {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007ced;
    margin: 0;
    box-sizing: border-box;
}

/* Responsividade */
@media (max-width: 768px) {
    .video-item iframe {
        height: 200px; /* Reduz a altura para telas menores */
    }
}

@media (max-width: 480px) {
    .video-item iframe {
        height: 180px; /* Altura menor em telas muito pequenas */
    }
}
h2 {
    font-size: 3.5em; /* Aumenta o tamanho do texto */
    font-weight: bold; /* Deixa o texto em negrito */
    color: #007ced; /* Cor do texto */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2); /* Sombra no texto para dar um efeito moderno */
    letter-spacing: 1px; /* Espaçamento entre as letras para dar um visual mais moderno */
    text-transform: uppercase; /* Transforma o texto em maiúsculas */
}

/*
footer {
    background-color: #333; /* Cor de fundo escura */
/*   color: #fff; /* Cor do texto clara */
 /*   padding: 20px 0; /* Espaçamento vertical */
 /*   text-align: center; /* Alinha o texto ao centro */
  /*  font-size: 1rem; /* Tamanho de fonte */
  /*  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); /* Sombra sutil acima */
  /*  position: relative;
 /*   bottom: 0;
    width: 100%;
}

footer a {
    color: #007ced; /* Cor azul para links */
/*    text-decoration: none; /* Remove o sublinhado */
 /*   font-weight: bold;
}

footer a:hover {
    text-decoration: underline; /* Sublinha o link ao passar o mouse 
}

footer p {
    margin: 0; /* Remove margens extras 
}

footer .social-icons {
    margin: 15px 0; /* Espaçamento para os ícones sociais *
}

footer .social-icons a {
    margin: 0 10px; /* Espaço entre os ícones *
    font-size: 1.5em; /* Tamanho dos ícones *
    color: #fff; /* Cor dos ícones *
}

footer .social-icons a:hover {
    color: #007ced; /* Cor dos ícones ao passar o mouse *
}/*


/* 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: white;
}

/* 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;
    }
}


/* 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;
    }
}

/* Container de busca */
.search-container {
    text-align: center;
    margin: 20px auto;
    padding: 10px;
}

.search-input {
    width: 1000%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1em;
    max-width: 500px; /* Limita a largura em telas grandes */
}


/* Imagens responsivas */
/*.responsive-image-Dowloads {
    max-width: 100%;
    height: auto;
    display: block; /* Garante que a imagem seja tratada como bloco */
 /*   margin: 0 auto; /* Centraliza horizontalmente */
   /* border-radius: 10px;
    margin-bottom: 10px;
}*/
/* Estilo padrão para imagens responsivas */
/* Estilo padrão para imagens responsivas */
.responsive-image-Dowloads {
    max-width: 100%;
    height: auto;
    display: block; /* Garante que a imagem seja tratada como bloco */
    margin: 0 auto; /* Centraliza horizontalmente */
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Estilo para a apresentação na pesquisa (ajustado para telas maiores) */
@media (min-width: 1024px) { 
    .responsive-image-Dowloads {
        margin: 0 25%; /* Ajusta a centralização para um layout específico */
    }
}

/* 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 */
    }
}



/* 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;
}

.responsive-image-Dowloads {
    width: 150px; /* Define uma largura fixa */
    height: 150px; /* Define uma altura fixa */
 margin: 0 30%; /* Garante que a imagem fique centralizada */
    object-fit: cover; /* Ajusta a imagem para preencher o espaço sem distorção */
    border-radius: 8px; /* Opcional: adiciona bordas arredondadas */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Opcional: adiciona uma sombra */
}


@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;
    }
}


@media (max-width: 768px) {
    #footer .row {
        flex-direction: column;
        align-items: center;
    }

    #footer .footer-block {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* 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 para a seção de vídeo */
.video {
    display: flex;
    flex-direction: column; /* Elementos empilhados */
    justify-content: space-between; /* Espaço entre vídeo e botões */
    align-items: center;
    width: 100vw;
    height: 50vh; /* Altura da seção */
    background: black;
    padding: 10px 0;
    overflow: hidden;
}

/* Estilo do vídeo */
.video video {
    width: 100%; /* Ocupar a largura da tela */
    height: 80%; /* Ajustar altura proporcional */
    object-fit: cover; /* Cobrir o espaço disponível */
    background: #000;
}

/* Contêiner de botões no final */
.button-container {
    display: flex;
    justify-content: center; /* Centralizar botões */
    gap: 10px; /* Espaço entre botões */
    width: 100%; /* Largura total */
    padding: 10px 0; /* Espaço interno */
    background-color: #333; /* Fundo escuro */
}

/* Botões */
.play-pause-button,
.fullscreen-button,
.download-button {
    text-decoration: none;
    background-color: #007ced;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.play-pause-button:hover,
.fullscreen-button:hover,
.download-button:hover {
    background-color: #0056a3;
}

/* Estilização do botão de voltar */
.btn-voltar {
    position: fixed;
    top: 20px; /* Distância do topo da tela */
  /*  right: 20px;  Distância da lateral direita */
left: 20px; /* Distância da lateral esquerda */
    background-color: #007ced; /* Cor de fundo */
    color: #fff; /* Cor do texto */
    padding: 10px 20px;
    border-radius: 11px;
    text-decoration: none; /* Remove o sublinhado do link */
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombras para o efeito de profundidade */
    z-index: 1000; /* Garante que o botão fique acima de outros elementos */
}

.btn-voltar:hover {
    opacity: 0.8; /* Efeito de hover */
}


/* Container para vídeos lado a lado */
    .video-row {
        display: flex; /* Flexbox */
        justify-content: center; /* Alinha os vídeos ao centro */
        gap: 20px; /* Espaçamento entre vídeos */
        padding: 10px;
        flex-wrap: wrap; /* Permite quebrar linha se necessário */
    }

    .video-container {
        flex: 0 1 45%; /* Cada vídeo ocupa 45% da largura (2 por linha) */
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        background-color: #f9f9f9;
    }

    video {
        width: 100%;
        border-radius: 8px;
    }

    .button-container {
        display: flex;
        justify-content: space-around;
        margin-top: 10px;
    }

    button, .download-button {
        padding: 8px 12px;
        font-size: 14px;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        transition: 0.3s;
    }

    button {
        background-color: #007ced;
        color: white;
    }

    button:hover {
        background-color: #005bb5;
    }

    .download-button {
        text-decoration: none;
        background-color: #28a745;
        color: white;
    }

    .download-button:hover {
        background-color: #218838;
    }