* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #222;
}

/* Header */
.header {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
 height: 50px;
}

.logo img {
  height: 50px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.btn-primary {
  background: #3CB371;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #2a8c55;
}

/* Hero Section */
.hero {
  display: flex;
  height: 100vh;
  justify-content: space-between;
  padding: 80px 60px;
}

.hero-text {
  max-width: 45%;
}

.hero-text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn-green {
  background: #3CB371;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-green:hover {
  background: #2a8c55;
}

.btn-light {
  background: #f2f2f2;
  color: #333;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Image */
.hero-image {
  position: relative;
  max-width: 45%;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    background-color: #1E1E1E;
}
.divisao-footer {
    display: flex;
    width: 90%;
    border: 1px solid #F7FCFE;
}
.conteudo-footer-pt2 {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-height: auto;
    margin-top: 1%;
}

.conteudo-footer-pt2 p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 19px;
    color: #F7FCFE;
}
.conteudo-footer-pt2 a{
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 0.7rem;
    line-height: 19px;
    color: #F7FCFE;
    
    
}
.conteudo-footer-pt2 img {
    display: flex;
    height: 50px;
    margin-left: 70%;
}

/* Responsivo */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: 120vh;
    width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    display: none;
    max-width: 100%;
    margin-top: 30px;
  }

  .header {
    flex-direction: column;
    gap: 20px;
  }
  footer {
        padding: 1.5rem 0;
        text-align: center;
        height: 200px;
    }

    .conteudo-footer {
        padding: 0 5%;
        text-align: center;
    }

    .conteudo-footer-navegacao,
    .conteudo-footer-navegacao-contribua {
        display: none;
    }

    .conteudo-footer-navegacao h2,
    .conteudo-footer-navegacao-contribua h2 {
        font-size: 1.2rem;
    }

    .conteudo-footer-navegacao a {
        font-size: 0.9rem;
    }

    .conteudo-footer-navegacao h3 {
        font-size: 1rem;
    }

    .conteudo-footer-navegacao-p {
        font-size: 0.8rem;
    }

    .conteudo-footer-navegacao-contato-img img {
        height: 18px;
    }

    .conteudo-footer-navegacao-contato-img a {
        font-size: 0.8rem;
    }

    .conteudo-footer-navegacao-contribua-p {
        font-size: 0.9rem;
    }

    .conteudo-footer-navegacao-contribua-a {
        width: 60%;
        font-size: 0.9rem;
    }

    .divisao-footer {
        width: 90%;
        margin-top: 1.5rem;
    }

    .conteudo-footer-pt2 {
        flex-direction: column;
        width: 90%;
        margin-top: 1.5rem;
        text-align: center;
    }

    .conteudo-footer-pt2 p {
        font-size: 0.75rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .conteudo-footer-pt2 img {
        margin: 0 auto;
        height: 60px;
        width: 100px;
    }
}
