* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    text-decoration: none;
    
}

body {
    background-color: #f4f6f9;
}

header {
    background-color: #003366;
    color: white;
}

.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.topo input {
    padding: 8px;
    border-radius: 5px;
    border: none;
}

nav {
    background-color: #002244;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #00c3ff;
}

.banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.banner button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #00c3ff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.banner button:hover {
    background-color: #0099cc;
}

.atalhos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 20px;
    gap: 20px;
}

.card {
    background: white;
    padding: 25px;
    width: 220px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    font-weight: bold;
}

.card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.noticias {
    padding: 40px 20px;
    text-align: center;
}

.noticia {
    background: white;
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

footer {
    background-color: #002244;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Responsividade */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .topo {
        flex-direction: column;
        gap: 10px;
    }
}
.carrossel {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay escuro */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* Conteúdo sobreposto */
.conteudo {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 600px;
}

.conteudo h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.conteudo p {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-slide {
    display: inline-block;
    padding: 12px 25px;
    background-color: #00c3ff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.btn-slide:hover {
    background-color: #0099cc;
}

/* Botões laterais */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 5px;
    z-index: 3;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Indicadores */
.indicadores {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.indicadores span {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    opacity: 0.6;
}

.indicadores .ativo {
    opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .carrossel {
        height: 350px;
    }

    .conteudo h2 {
        font-size: 26px;
    }

    .conteudo p {
        font-size: 16px;
    }
}




/* Botões */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 22px;
    border-radius: 5px;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

/* Indicadores */
.indicadores {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.indicadores span {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    opacity: 0.5;
}

.indicadores .ativo {
    opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .carrossel {
        height: 250px;
    }
}
.galeria {
    padding: 60px 20px;
    background-color: #f4f6f9;
    text-align: center;
}

.galeria h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #003366;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.foto {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: pointer;
}

.foto img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.foto:hover img {
    transform: scale(1.05);
}
@media (max-width: 992px) {
    .grid-galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-galeria {
        grid-template-columns: 1fr;
    }
}
.logo{
  
    
}
.id_camara{
   padding:0 60px;
   
}