/* ================================

   PALETA DE CORES

   --------------------------------

   Verde principal: #2E7D32

   Verde escuro:   #1B5E20

   Bege claro:     #F5F3E6

   Preto suave:    #111

=============================== */

/* RESET BÁSICO */

* {
  margin: 0;

  padding: 0px;

  box-sizing: border-box;

  font-family: "Inter", sans-serif;
}

body {
  background: #f5f3e6; /* Bege claro suave */

  color: #111;

  line-height: 1.6;
}

/* ======================

   CONTAINERS & SECTIONS

====================== */

.container {
  width: 90%;

  max-width: 1100px;

  margin: auto;
}

.section {
  padding: 4rem 0;
}

.section--soft {
  background: #e9e6d8;
}

/* ======================

   MENU SUPERIOR

====================== */

nav.menu {
  background: #111; /* Preto elegante */

  color: white;

  padding: 1rem 0;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

  position: sticky;

  top: 0;

  z-index: 10;

  padding-right: 20px;

  padding-left: 20px;
}

.menu__wrap {
  display: flex;

  justify-content: space-between;

  align-items: center;
}

.brand {
  font-size: 1.4rem;

  font-weight: 700;

  color: #f5f3e6;
}

.brand span {
  color: #2e7d32; /* Verde qualidade */
}

.menu__links {
  list-style: none;

  display: flex;

  gap: 2rem;
}

.menu__links a {
  color: #f5f3e6;

  text-decoration: none;

  font-weight: 500;

  transition: 0.2s;
}

.menu__links a:hover,
.menu__links .active {
  color: #2e7d32;
}

/* ======================

   HERO (HOME)

====================== */

.hero {
  text-align: center;

  padding: 0;
}

.hero h1 {
  font-size: 2.5rem;

  font-weight: 700;

  color: #1b5e20; /* Verde mais forte */
}

.lead {
  margin: 1rem auto 2rem;

  max-width: 680px;

  color: #333;
}

/* BOTÕES */

.btn {
  background: #2e7d32;

  color: white;

  padding: 0.8rem 1.5rem;

  border-radius: 6px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.2s;
}

.btn:hover {
  background: #1b5e20;
}

.btn--ghost {
  background: transparent;

  border: 2px solid #2e7d32;

  color: #2e7d32;
}

.btn--ghost:hover {
  background: #2e7d32;

  color: white;
}

/* ======================

   GRID DE CARDS

====================== */

.grid {
  display: grid;

  gap: 2rem;

  margin-top: 3rem;
}

@media (min-width: 720px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: white;

  border-radius: 10px;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  padding-bottom: 1rem;

  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;

  height: 300px;

  border-radius: 10px 10px 0 0;
}

.card h3 {
  margin: 1rem;

  color: #1b5e20;
}

.card p {
  margin: 0 1rem 1rem;

  color: #444;
}

.card a {
  text-decoration: none;

  color: #1b5e20;
}

/* ======================

   TEXTO / LISTAS

====================== */

.text {
  max-width: 760px;

  margin-bottom: 2rem;
}

.bullets {
  list-style: none;

  margin-bottom: 2rem;
}

.bullets li {
  margin-bottom: 0.6rem;

  padding-left: 1.4rem;

  position: relative;

  color: #1b5e20;

  font-weight: 600;
}

.bullets li::before {
  content: "●";

  color: #2e7d32;

  position: absolute;

  left: 0;
}

/* ======================

   CONTATO

====================== */

.contact {
  display: flex;

  flex-direction: column;

  gap: 0.5rem;

  margin-bottom: 2rem;

  font-weight: 600;

  color: #1b5e20;
}

.form {
  display: flex;

  flex-direction: column;

  gap: 1rem;
}

.form__row {
  display: flex;

  flex-direction: column;

  gap: 1rem;
}

@media (min-width: 720px) {
  .form__row {
    flex-direction: row;
  }
}

form input,
form textarea {
  padding: 0.8rem;

  border: 2px solid #2e7d32;

  border-radius: 6px;

  outline: none;

  font-size: 1rem;
}

form input:focus,
form textarea:focus {
  border-color: #1b5e20;
}

/* ======================

   FOOTER

====================== */

.footer {
  background: #111;

  color: #f5f3e6;

  text-align: center;

  padding: 1.5rem 0;

  margin-top: 3rem;

  font-size: 0.9rem;
}

/* ======================
   MENU RESPONSIVO - ADICIONADO
====================== */

.menu__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.menu__toggle span {
  width: 100%;
  height: 3px;
  background: #f5f3e6;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu__toggle.active span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu__toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu__toggle.active span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 720px) {
  .menu__toggle {
    display: flex;
  }

  .menu__links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 15;
    display: flex !important;
  }

  .menu__links.active {
    left: 0;
  }

  .menu__links li {
    width: 100%;
    text-align: center;
  }

  .menu__links a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .menu__links a:hover,
  .menu__links .active {
    background: rgba(46, 125, 50, 0.2);
    color: #2e7d32;
  }
}
