/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* FAIXA SUPERIOR FIXA */
.topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(15, 45, 80, 1.0); /* azul marinho transparente */
    z-index: 1000;

    display: flex;
    justify-content: center;
    align-items: center;
    
    /* LOGO */
.logo {
    position: absolute;
    top: -135px;      /* distância do topo */
    left: 25px;     /* distância da esquerda */
    width: 480px;   /* ajuste o tamanho se quiser */
    height: 370px;
}

    
}

/* MENU */
.menu {
    position: absolute;
    top: 30px;
    right: 60px;
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

/* EFEITO AO PASSAR O MOUSE */
.menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ffffff;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* HERO / IMAGEM */
.hero {
    margin-top: 60px; /* espaço da faixa fixa */
    height: 350px;
    background-image: url(fundo.jpg); /* ajuste o caminho */
    background-size: cover;
    background-position: center;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXTO SOBRE A IMAGEM */
.hero-texto {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: #ffffff;
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;

    background: rgba(0, 0, 0, 0.35); /* melhora a leitura */
    padding: 20px 30px;
}


/*CONTEÚDO DO INÍCIO */

.conteudo {
    background-color: #ffffff;
    max-width: 1900px;
    margin: -60px auto 0 auto;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.conteudo h1 {
    font-size: 28px;
    color: #1c2d4a;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.conteudo p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;

text-align:justify;
}




/*CONTEÚDO DO MEIO */

.conteudo2 {
    background-color: #ffffff;
    max-width: 1900px;
    margin: -20px auto 0 auto;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.conteudo h1 {
    font-size: 28px;
    color: #1c2d4a;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.conteudo p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 5px;
text-align:justify;
}


/* QUADRADOS COM AS IMAGENS DAS ÁREAS */

.quadrados {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 por linha */
    gap: 25px;
    max-width: 6000px;        /* controla a largura total */
    margin: 0 auto;          /* centraliza na página */
    padding: 50px;
}

.box {
    border: 3px solid #0a1f44;
    padding: 10px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}


.box img {
    width: 300px;
    height: auto;
    margin-bottom: 10px;
}

.box p {
    margin: 0;
    font-size: 16px;
    text-align: justify;
    font-family: Arial, Helvetica, sans-serif;
}











/* SOBRE NÓS */
.sobre {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.sobre h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.sobre p {
    text-align: justify;
    line-height: 1.7;
    font-size: 16px;
}





/* RODAPÉ */
.rodape {
    background-color: #1c2d4a;
    color: #d3d3d3;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    font-size: 14px;
}
