/* Criado por Raylan victor - 2025 */
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    background: #f8f7f2;
    color: #333;
  }
  
/* Cabeçalho */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background: #f7f5ef; /* mesma cor do fundo do print */
}

/* LOGO */
.logo img {
  height: 120px;
}

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #1f7a3f;
  font-weight: 500;
  font-size: 15px;
}

/* BOTÃO */
.btn {
  background: #0a8f3c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.btn:hover {
  background: #087a34;
}

  /* Banner principal */
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    gap: 30px; /* junta texto e fachada */
    margin-bottom: 50px;
    margin-left: 60px;
  }
  
  .hero-text {
    height: 350px;
    background: #008c45;
    color: #fff;
    padding: 30px;
    border-radius: 35px 0px;
    font-weight: bold;
    flex: 1;
  }
  
  .hero-text h2 {
    font-size: 40px;
    margin-top: 50px;
  }
  
  .hero-text p {
    font-size: 18px;
  }
  
  .hero-img img {
    border-radius: 15px 0px;
    height: 350px;
    width: 600px;
    margin-right: 60px;
    margin-left: -10px;
  }
  
  /* Seção Marcas */
  .qualidades {
    max-width: 900px;
    margin: 0 auto; /* centraliza na tela */
    text-align: center; /* centraliza o texto */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #006633;
  }

  .categoria {
    max-width: 1000px;
    margin: 0 auto; /* centraliza na tela */
    text-align: justify; /* centraliza o texto */
    padding: 40px 20px;
  }
  
  .qualidades h2 {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
  .qualidades ul {
    list-style: none; /* remove marcadores padrão */
    padding: 0;
  }
  
  .qualidades li {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .qualidades strong {
    font-weight: bold;
  }
  
  .qualidades .destaque {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #00994d;
  }
  

  /* Fonte global */
* {
    font-family: 'Montserrat', sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
    font-weight: 800; /* títulos bem fortes */
  }
  
  p, li, a, span {
    font-weight: 400; /* texto normal */
  }
  
  .btn {
    font-weight: 700; /* botões em negrito */
  }
  
  /* ========================
     UNIDADES
  ======================== */
  .units {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background: #63a91f; /* verde do fundo */
  }
  
  .units-text {
    height: 250px;
    flex: 1;
    background: #008c45;
    color: #fff;
    border-radius: 15px 0;
    padding: 40px;
    font-weight: bold;
  }
  
  .units-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: -15px;
  }
  
  .units-text p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .units-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
  }
  
  .units-img {
    flex: 1;
  }
  
  .units-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px 0;
    object-fit: cover;
  }
  
  /* ========================
     RODAPÉ
  ======================== */
  
  footer {
    background: #63a91f;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    flex-direction: column; /* organiza em duas linhas */
    gap: 15px; /* espaço entre as linhas */
  }
  
  /* Linha de cima */
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-logo img {
    height: 80px;
  }
  
  .footer-nav {
    display: flex;
    gap: 20px;
  }
  
  .footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .footer-nav a:hover {
    text-decoration: underline;
  }
  
  /* Linha de baixo */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  .creditos {
    font-size: 13px;
    margin-top: -20px;
  }
  
  .creditos a {
    color: #fff;
    text-decoration: underline;
  }
  