
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  
}
html {
   scroll-behavior:smooth;
}

body {
  font-family: sans-serif;
  background-color: #fff;
  color: #fff;
 
}

/* Hero Section */
.hero {
  position: relative;
  background: url('beatriz-mello-belem.webp') center/cover no-repeat;
  min-height: 100vh;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Overlay escuro */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.subheading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #53a946;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
}

.highlight {
  color: #53a946;
}

.hero-content p {
  font-size: 16px;
  color: #ddd;
  margin-top: 20px;
}

.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background-color: #53a946;
  color: white;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}











/* Contêiner principal da seção (mantém a estrutura flex) */
.about-us-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
    position: relative; /* Para o badge de experiência (se posicionado fora do container da imagem) */
}

/* --- Contêiner da Imagem Única --- */
.single-image-container {
    flex: 1;
    max-width: 550px;
    margin-right: 40px;
    border-radius: 8px; /* Opcional: borda arredondada para o contêiner */
    overflow: hidden; /* Opcional: garante que a borda arredondada da imagem funcione */
    position: relative; /* Para posicionar o badge dentro */
}

.single-image-container img {
    width: 100%;
    height: auto; /* Mantém a proporção da imagem */
    display: block;
    object-fit: cover; /* Garante que a imagem cubra a área sem distorcer (pode ajustar para contain se preferir a imagem completa) */
    border-radius: inherit; /* Opcional: herda a borda arredondada do contêiner */
}

/* --- Área de Conteúdo (sem alterações significativas na estrutura) --- */
.content-area {
    margin-bottom: 40px;
    flex: 1.2;
    max-width: 550px;
    padding-top: 20px;
}

.subtitle {
    color: #53a946; /* Nova cor primária: verde */
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.content-area h2 {
    font-size: 2.8em;
    color: #333;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.content-area p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.features p {
    margin-bottom: 10px;
}

.features .author {
    font-weight: normal;
    color: #777;
    font-size: 0.9em;
}

a.read-more-button {
    background-color: #53a946; /* Nova cor primária: verde */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
  display: flex;
    width: max-content;
    margin-top: 30px;

  
}

.read-more-button:hover {
    background-color: #3d7e34; /* Verde mais escuro ao passar o mouse */
}



/* --- Responsividade (ajustes podem ser necessários dependendo do layout desejado em telas menores) --- */
@media (max-width: 992px) {
    .about-us-section {
        flex-direction: column;
        align-items: center;
    }

    .single-image-container {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .content-area {
        max-width: 100%;
        text-align: center;
    }

    .content-area h2 {
        font-size: 2em;
    }


}

@media (max-width: 768px) {
    /* Pode adicionar ajustes específicos para telas ainda menores, se necessário */
}



    /* FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER */

footer {
  width: 100%;
  height: auto;
  display: flex;
  padding: 40px 20px;
  background-color: #222;
  color:#ddd;
  justify-content: center;
  
}
    