:root {
  --verde: #9BBF9B;
  --verde-claro: #CFE3CF;
  --marrom: #6B4F3D;
  --bege: #F9F7F3;
  --branco: #FFFFFF;
}

/* -------- */
a {
  color: inherit;
  text-decoration: none;
}
/* -------- */


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--verde-claro);
  color: var(--marrom);
  scroll-behavior: smooth;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background: var(--bege);
  color: var(--marrom);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  height: 65px;
  transition: transform .3s ease;
}
.logo:hover { transform: scale(1.05); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--marrom);
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
}

.nav-links a:hover {
  color: var(--verde);
}

/* HERO */
.hero {
  background: var(--verde-claro);
  padding-bottom: 110px;
  padding-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--marrom);
}

.hero-content {
  
  animation: fadeIn 1.5s ease;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn {
  background: transparent;
  border: 2px solid var(--marrom);
  color: var(--marrom);
  padding: .9rem 1.6rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
  display: inline-block;
  width: 200px;
  text-align: center;
}

.btn:hover {
  background: var(--verde);
  color: var(--branco);
  transform: translateY(-3px);
}

.btnContato {
  background: transparent;
  border: 2px solid var(--bege);
  color: var(--bege);
  padding: .9rem 1.6rem;
  border-radius: 25px; /* mesmo valor dos outros botões */
  text-decoration: none;
  font-weight: 500;
  transition: all .3s ease;
  display: block;
  width: 200px;
  text-align: center;
  margin: 20px auto;
  cursor: pointer; /* garante comportamento de botão */
  appearance: none; /* remove estilos padrões do navegador */
}

.btnContato:hover {
  background: var(--marrom);
  color: var(--bege);
  transform: translateY(-3px);
}

/* SOBRE */
.sobre {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 8%;
  gap: 3rem;
  border-radius: 20px;
  background-color: var(--bege);
  margin: 25px;
  
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sobre-imagem img {
  width: 380px;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
  transition: transform .3s ease;
}
.sobre-imagem img:hover { transform: scale(1.03); }

/* PRODUTOS */
.produtos {
  padding: 5rem 8%;
  text-align: center;
}

.produtos h2{
  font-size: 2rem;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--branco);
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  padding: 1.2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: .8rem;
}

/* CONTATO */
.contato-form {
  background: var(--bege);
  color: var(--bege);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 25px;
}

p {
  font-weight: 600px;
}


.contato-form form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato-form input {
  padding: .9rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.block {
  background-color: #9BBF9B;
  padding: 25px;
  margin-left: 400px;
  margin-right: 400px;
  border-radius: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
}


/* FOOTER */
footer {
  background: var(--bege);
  text-align: center;
  padding: 1rem;
  font-size: .9rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 55px;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ocultar a barra visual em todos os elementos (mantém rolagem) */
* {
  scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge antigos */
}
*::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Edge (WebKit/Blink) */
}

