
@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root{
  --cor1:#002447;
  --cor2:#001932;
  --cor3:#bfdfff;
  --cor4:#80c0ff;
  --cor5:#ffffff;

  --fonte-destaque: Quicksand, sans-serif;
  --fonte-normal: Poppins, sans-serif;
}
/* Estilo global */
html, body{
  scroll-behavior: smooth;
}


body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f4;
    color: #333;
    margin: 0;

}

  a{
    text-decoration: none;

  }
/* Títulos */
main h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 200;
    color: #08376d;
    text-align: left;
    margin: 60px auto;
}

h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.6rem;
    color: #08376d;
    margin-top: 50px;

}

p{  margin: 30px 0px;
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2em;
}


.data-fonte{
  color: #746c6c;
  font-weight: 500;
}

.data-fonte a{
  color: #021b31;
}
.italic{
  font-style: italic;
}
a{
  text-decoration: none;
 
}


li{
    margin: 0px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 80px;
    width: 250px;
    color:#08376d;
    padding: 50px;
    height: 100vh;
    overflow-y: auto;
   
}

.sidebar h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    background: #08376d;
    color: white;
}

/* Ajuste do conteúdo para não ficar sobreposto */
.container {
    margin-left: 270px; /* Espaço para a barra lateral */
    padding: 20px;
}

/* Responsividade */
@media (max-width: 1710px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .container {
        margin-left: 0;
    }

    .sidebar ul li a{
        width: 70%;
    }
}

/* Seção de conteúdo */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.content-detalhado li{
  line-height: 2em;
}

.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.content img {
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content .text {
    flex: 1;
    line-height: 1.6;
}

/* Botão interativo */
.btn-interativo {
    display: inline-block;
    background: #134068;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    border: none;
}

.btn-interativo:hover {
    background: #00CCE7;
}

a{
  color: #08376d;
}

/* Responsividade */
@media (max-width: 768px) {
    .valores{
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
}


.banner{
  width: 100%;
  height: 700px;
  background-image: url(../imagens/banner5.jpg);
  background-position: center;
  background-size: cover;

}
.valores{
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 50px 0;

}

.box-valor{
  width: 300px;
  height: 200px;
 
}

.box-valor h2{
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  margin: 0;
  font-weight: 400;
}

.box-valor p {
  font-size: 1em;
  margin: 10px 0px;
  font-style: italic;
  text-align: center;
}

.destaque{
  color: #023970;
}

.destacado{
 border: 2px solid #023970;
  display: block;
  width: 290px;
  padding: 5px;
  border-radius: 8px;
}
.assinatura{
  margin-top: 30px;
}

.assinatura p{
    text-align: left;
    
}