/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f8f7f2;
  color: #333;
  min-height: 100vh;
}

#marcas,
#trabalhe-conosco {
  scroll-margin-top: 120px;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  overflow-y: auto;
}


/* BOTÃO */
.btn {
  background: #0a8f3c;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}



/* Banner principal */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  gap: 30px; /* junta texto e fachada */
  margin-top: 60px;
}

.hero-text {
  height: 350px;
  background: #008c45;
  color: #fff;
  padding: 30px;
  border-radius: 15px 0px;
  font-weight: bold;
  flex: 1;
}

.hero-text h2 {
  font-size: 30px;
  margin-top: 50px;
}

.hero-text p {
  font-size: 18px;
}

.hero-img img {
  border-radius: 15px 0px;
  height: 350px;
  width: 850px;
}


/* Seção Marcas */
.brands {
  text-align: center;
  padding: 50px 20px;
}

.brands h2 {
  font-size: 60px; /* aumentado */
  color: #008c45;
  font-weight: bold;
}

.brands p {
  font-size: 22px;
  color: #008c45;
  margin-top: 10px;
}

/* ========================
   PARTE 2 - SOBRE A PAU BRASIL
======================== */
.about-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f7f2;
}

.about-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  margin-top: -40px;
  flex-wrap: wrap; /* se a tela for pequena, quebra linha */
}

.about-item {
  height: 440px;
  width: 400px;
  border-radius: 15px;
  overflow: hidden;
  border-radius: 15px 0px;
}

.cajuina {
  margin-left: 50px;
  height: 440px;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  border-radius: 15px 0px;
}

.velas {
  height: 440px;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  border-radius: 15px 0px;
}

.about-item img {
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
  border-radius: 15px 0px;
}

.about-item2 {
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 15px;
  overflow: hidden;
  border-radius: 15px 0px;
}

.about-item2 img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: transform 0.3s ease;
  border-radius: 15px 0px;
}

.about-item2 img:hover {
  transform: scale(1.05);
}

.about-item img:hover {
  transform: scale(1.05);
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #147d31; 
  margin-bottom: 10px;
}

.about-text p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #147d31;
  margin-bottom: -50px;
}


/* Terceira parte */
.info-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 50px;
}

.info-card {
  border-radius: 15px 0px ;
  padding: 20px;
}

.info-card.green {
  height: 300px;
  background: #008c45;
  color: #fff;
  font-weight: bold;
}

.info-card.green h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.info-card.green p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.info-card.green a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.info-card.image img {
  height: 300px;
  width: 100%;
  border-radius: 15px 0px;
  font-weight: bolder;
  margin-top: -20px;
}

.info-card.image1 img {
  width: 100%;
  height: 300px;
  border-radius: 15px 0px;
  font-weight: bolder;
  margin-top: -20px;
}

/* 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 {
  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;
}


/* ========================
   CARROSSEL UNIDADES
======================== */
.carousel {
  width: 100%;
  height: 250px; /* mantém sua altura */
  overflow: hidden;
  border-radius: 15px 0;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out; /* troca suave */
  will-change: transform;
}

.carousel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  flex: 0 0 100%; /* cada imagem ocupa 100% da largura */
  display: block;
}