@charset "utf-8";
/* CSS Document */
body {
            margin: 0;
            font-family: Arial, sans-serif;
			background-color: #f0f0f0;
	
 }
.top-bar {
            width: 100%;
            height: 10px; /* Altura da tarja azul */
            background-color: #007dcb;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
        }
header {
            position: fixed;
            top: 5px; /* Ajusta para a tarja azul */
            width: 100%;
            background-color: white;
            color: black;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 70px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            z-index: 999;
}
.header-content {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
        }
.logo {
            margin-right: auto;
        }

.logo img {
            height: 40px;
        }
nav {
            margin-left: auto;
        }
nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
nav ul li {
            margin: 0 15px;
        }
nav ul li a {
            color: black;
            text-decoration: none;
            font-size: 16px;
            padding: 10px 15px;
            transition: background-color 0.3s ease;
        }
nav ul li a:hover {
            background-color: #e9e9e9;
            border-radius: 5px;
        }
main {
        margin-top: 80px; /* Espaço suficiente para o cabeçalho fixo e a tarja azul */
        display: flex;
        justify-content: center;
        padding: 20px;
		max-widht:960px;
}
h1 {
	color:dimgrey	
}
.content {
            width: 100%;
            max-width: 960px;
}
.solar {
			width: 900px;
			height: 830px;
}
.geoweb {
			width:100%;
			height: 1000px;
			
}	
.link-boxes, .box {
    		display: flex;
    		justify-content: space-around;
    		margin: 10px 0;
			background-color: #5e92ca;
}
.box {
    	background-color: #5e92ca;
    	padding: 10px;
		width: 200px;
    	height: 10px;
    	color: white;
    	border-radius: 5px;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	text-decoration: none;
    	margin: 5px;
}
.link-boxes-text {
    		display: flex;
    		justify-content: space-around;
    		margin: 10px 0;
}
.box1 {
		width: 200px;
    	height: 10px;/* Ajuste para acomodar texto */
    	color: black;
    	border-radius: 5px;
    	display: flex;
    	justify-content: center;
    	align-items: center;
    	text-decoration: none;
    	margin: 5px;
	    cursor: pointer; /* Adiciona um cursor de ponteiro */
    	
}
.training {
    max-width: 960px;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.video-container {
    
	width: 400px;
    margin-bottom: 20px;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.video-institucional {
    
	width: 400px;
    margin-bottom: 20px;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.description {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.4;
}

