* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

.container {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto 1fr auto auto; /* Linha extra para a área de contato */
    grid-template-areas: 
        "menu titulo"
        "menu carrossel"
        "menu conteudo"
        "menu contatos" /* Nova área de contato */
        "menu rodape";
        height: calc(100vh - 10px); /* Subtrai a altura do rodapé da altura total */
        overflow: auto; /* Permite rolagem se o conteúdo exceder a altura */
}

.titulo-pagina {
    grid-area: titulo;
    background-color: rgb(2, 84, 65);
    padding: 5px;
    margin-top: 5px;
    text-align: center;
    color: white;
    max-width: 99%;
    max-height: 50px;
    border-radius: 10px;
}

.menu-principal {
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    left: 2%;
    width: 150px;
    height: 100%;
    padding-top: 20px;
}

nav ul {
    list-style-type: none;
    padding: 10px;
}

nav ul li {
    margin-bottom: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px;
    display: block;
}

.menu-secundario {
    max-width: 90%; /* Largura máxima do contêiner */
    margin: 0 auto; /* Centraliza horizontalmente */
}

    .menu-secundario nav {
        text-align: center; /* Centraliza o conteúdo do menu */
    }

    .menu-secundario ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center; /* Centraliza os itens do menu */
        flex-wrap: wrap; /* Permite quebra de linha, se necessário */
    }

    .menu-secundario li {
        margin: 5px;
    }

    .menu-secundario a {
        display: inline-block;
        padding: 10px 20px;
        background-color: #007BFF;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s;
    }

        .menu-secundario a:hover {
            background-color: #0056b3;
        }




.carrossel {
    grid-area: carrossel;
    background-color: #5c9deb;
    width: 99%;
    max-height: 25vh;    
    min-height: 150px;
    margin: 5px auto 0;
    border: 2px solid #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide2{    
    min-width: 100%;
    text-align: center;
    color: white;
    background-color: #5c9deb;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    object-fit: contain
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}
.slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5c9deb;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Mantém a proporção da imagem e ajusta-se ao contêiner */
    }

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.conteudo {
    grid-area: conteudo;
    background-color: #d3d3d3; /* Tom de cinza */
    padding: 5px;
    margin: 5px auto 0;margin: 5px auto 0;
    text-align: center;
    color: black; /* Cor do texto ajustada para contraste */    
    max-width: 99%;
    min-width: 99%;
    height: 100%; /* Ajuste a altura se necessário */
}

.contatos {
    grid-area: contatos;
    color: black;    
    background-color: rgb(182, 188, 152); 
    padding: 5px;
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    margin: 10px;    
    flex-wrap: wrap; 
    justify-content: center; /* Centraliza os itens horizontalmente */
    align-items: center; /* Centraliza os itens verticalmente */
    max-width: 99%;
    height: 50px;
}

.contato img {
    max-width: 75px;
    max-height: 40px;
    padding-left: 20px;
    padding-right: 20px;;
}

.contato span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
}

.column10, .column15, .column20, .column25, .column30, .column35, .column40,
.column45, .column50, .column55, .column60, .column65, .column70, .column75, .column80 {
    padding: 10px;
    min-height: 250px;
    text-align: justify;
    box-sizing: border-box;
    text-indent: 2em; /* Ajuste o valor conforme necessário */
}

.column10 { width: 10.00%; }
.column15 { width: 15.00%; }
.column20 { width: 20.00%; }
.column25 { width: 25.00%; }
.column30 { width: 30.00%; }
.column35 { width: 35.00%; }
.column40 { width: 40.00%; }
.column45 { width: 45.00%; }
.column50 { width: 50.00%; }
.column55 { width: 55.00%; }
.column60 { width: 60.00%; }
.column65 { width: 65.00%; }
.column70 { width: 70.00%; }
.column75 { width: 75.00%; }
.column80 { width: 80.00%; }

.rodape {
    grid-area: rodape;
    background-color: #4a90e2;
    max-width: 98%;
    padding: 5px;
    text-align: center;
    color: white;
    height: 40px;
}

/*Contasto */
/* Seção de contato ocupando toda a tela */
.conteudoContato {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: cadetblue;
    padding: 20px;
    box-sizing: border-box;
}

.rowContato {
    width: 100%; 
    padding: 5px;
}

/* Formulário de contato */
.contato .row {
    width: 100%;
    display:inline;
    
}

#contactForm {
    display: flex;
    flex-direction: column;
    width: 100%; /* Formulário ocupa toda a largura da row */
    /*max-width: 100%; /* Limite de largura mais amplo */

    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); /* Sombra para destacar */
    box-sizing: border-box;
    text-align: left;
}

    /* Estilo para labels e campos de input */
    #contactForm label {
        font-weight: bold;
        margin-bottom: 5px;
        text-align: left;
    }

    #contactForm input,
    #contactForm select {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        margin-bottom: 10px;
        box-sizing: border-box;
        text-align: Left;
    }

    /* Estilo para o botão de envio */
    #contactForm button[type="submit"] {
        padding: 12px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 16px;
        transition: background-color 0.3s;
        width: 100%; /* Botão ocupa toda a largura */
    }

        #contactForm button[type="submit"]:hover {
            background-color: #0056b3;
        }



.rowVideo {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem para a próxima linha */
    justify-content: center; /* Centraliza os itens */
    background-color: cadetblue;
    padding: 20px; /* Adiciona algum espaçamento interno */
}

.video-item {
    margin: 10px; /* Espaçamento entre os vídeos */
    flex: 1 1 300px; /* Faz com que os vídeos tenham uma largura mínima de 300px e se ajustem */
    max-width: 100%; /* Garante que os vídeos não excedam a largura do contêiner */
}

iframe {
    width: 250px; /* Faz com que os vídeos ocupem 100% da largura do contêiner */
    height: 250px; /* Altura fixa dos vídeos */
}


.video-item p.video-description {
    font-weight: bold; /* Define o texto como negrito */
}


.mensagem {
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}
