/* Correção de largura e rolagem lateral */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Box-sizing para controle mais preciso de largura */
* {
    box-sizing: border-box;
}

/* Estilos gerais */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    padding: 0;
}

/* Barra superior */
.top-bar {
    background: #154926;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 10px;
    width: 100%;
    position: relative;
    margin-top: -10px;
}

/* Navegação */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #154926;
}
.navbar {
  background-color: #ffffff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #154926;
}

.icons {
  display: flex;
  gap: 15px;
}

.icons a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  position: relative;
}

.badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: black;
  color: white;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 10px;
}
.foto-logo {
    display: block;
    margin: 0 auto 20px;
    width: 80px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: hsl(119, 20%, 54%);
    font-weight: bold;
    font-size: 10px
}
/* Banner */
.banner {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('Banner.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
}

/* Introdução */
.introducao {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #154926;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.introducao p {
    line-height: 1.6;
    text-align: justify;
    margin-top: 10px;
}


footer {
    background-color: #154926;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    padding-bottom: 12px;
}

.footer-section h3 {
    font-size: 12px;
    margin-bottom: 12px;
}

.footer-section p {
    font-size: 12px;
}

.copyright {
    font-size: 12px;
    margin-top: 10px;
}

