/* Estilo global */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f4;
    color: #333;
    margin: 0;
    padding-top: 80px;
    overflow-x: hidden;
}

  a{
    text-decoration: none;

  }
/* Títulos */
h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    color: #08376d;
    text-align: left;
    margin: 60px auto;
}

h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.6rem;
    color: #08376d;
    margin-top: 40px;
}

p{  margin:30px  0px;
    font-size: 1.2rem;
    text-align: justify;
    line-height: 2em;
}

.container li{
  margin: 0px 0;
}

.data-fonte{
  color: #746c6c;
  font-weight: 500;
}

.data-fonte a{
  color: #021b31;
}
.italic{
  font-style: italic;
}
a{
  text-decoration: none;
 
}


li{
    margin: 10px;
}

.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 */
.containe {
    margin-left: 270px; /* Espaço para a barra lateral */
    padding: 20px;
}

.content-detalhado li{
  line-height: 2em;
}
/* Responsividade */
@media (max-width: 1710px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none;
    }

    .containe {
        margin-left: 0;
    }

    .sidebar ul li a{
        width: 70%;
    }
}

/* Seção de conteúdo */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.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;
}

/* Responsividade */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .content img {
        max-width: 100%;
    }

}

.portal-destaque{
  padding: 5px;
  border: 2px solid;
  border-radius: 5px;
}

.destaque{
  display: block;
  width: 280px;
  text-decoration: none;
  color: #08376d;
  border: 2px solid #08376d;
  border-radius: 5px;
  padding: 5px;
  transition: transform 0.3s ease-in-out;
  margin: auto;
}

.destaque:hover{
  transform: scale(1.1);
  font-weight: 500;
}