/* ====== BASE ====== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-musgo {
  background-color: #1e4d30;
}

.text-musgo {
  color: #1e4d30;
}

.text-palha {
  color: #FFDEAD;
}

/* ====== BOTÕES ====== */
.btn-palha {
  background-color: #FFDEAD;
  color: #2f4f4f;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-palha:hover {
  background-color: #e0c97d;
  color: #1e2f2f;
  transform: scale(1.05);
}

.btn-success {
  transition: all 0.3s ease;
}

.btn-success:hover {
  transform: scale(1.05);
}

/* ====== HERO ====== */
.hero {
  background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(190, 255, 255, 0.531)),
              url('../../assets/img/banner.png') no-repeat center center/cover;
  color: rgb(2, 37, 12);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animações do conteúdo do banner */
.hero h1, 
.hero p, 
.hero a {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.hero.visible h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero.visible p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero.visible a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* ====== SEÇÕES ====== */
section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ====== FABRICANTES PARCEIROS - Slider Colorido ====== */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  background: #f9f9f9;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-box {
  width: 180px;
  height: 100px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-box img {
  max-width: 120px;
  max-height: 70%;
  object-fit: contain;
  filter: none; /* imagem já colorida */
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.logo-box:hover img {
  transform: scale(1.1);
  filter: brightness(1.2); /* deixa o logo mais vibrante */
}

/* ====== AVALIAÇÕES - Carrossel ====== */
.avaliacoes-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 20px;
}

.avaliacoes-track {
  display: flex;
  width: calc(350px * 8);
  animation: slideAvaliacao 20s linear infinite;
}

.avaliacao-card {
  width: 320px;
  min-height: 180px;
  margin: 0 15px;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avaliacao-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.avaliacao-card blockquote {
  font-style: italic;
  color: #333;
}

.avaliacao-card footer {
  margin-top: 10px;
  font-weight: bold;
  color: #006400;
}

@keyframes slideAvaliacao {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ====== CARDS ====== */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ====== NAVBAR ====== */
.navbar-brand img {
  height:220px; /* ajusta a altura da logo */
  width: auto;  /* mantém proporção */
  transition: transform 0.3s ease;
}


.navbar-brand img:hover {
  transform: scale(1.1);
}

/* ====== RODAPÉ ====== */
footer {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}


/* Gradiente suave em tons de bege e branco */
.bg-gradiente-bege {
background: linear-gradient(135deg, #fdf8f3 0%, #f7efe6 100%);
}

/* Ícones com cor de destaque */
.section-icon {
color: #c2a676;
font-size: 2rem;
margin-bottom: 0.5rem;
}

/* Botão personalizado */
.btn-palha {
background-color: #c2a676;
color: #fff;
border: none;
transition: all 0.3s ease;
}

.btn-palha:hover {
background-color: #b2915f;
color: #fff;
transform: scale(1.05);
}
.h4 {
color: #1e4d30; /* ajuste para o tom de verde que você preferir */
}