/* Importar a fonte Comfortaa */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Comfortaa', cursive;
  background-color: #f8f9fa;
  color: #333;
}

.schneider-header .schneider-img-wrapper img {
  object-fit: cover;
  height: 100%;
}

.schneider-text h1 {
  font-weight: 700;
  color: #007A33; 
}

.schneider-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Garantir que strong funcione corretamente */
.schneider-text strong {
  font-weight: 700;
  color: #005b26;
}

.schneider-text .btn-primary {
  background-color: #007A33;
  border: none;
  transition: all 0.3s ease;
}

.schneider-text .btn-primary:hover {
  background-color: #005b26;
}

/* Produtos */
.schneider-products h2 {
  font-weight: 700;
  color: #007A33;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.product-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.product-card h5 {
  color: #007A33;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Secção Peça já o seu orçamento */
.schneider-cta {
  background-color: #007A33;
  color: #fff;
  border-radius: 0; /* retira cantos arredondados */
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 0; /* elimina espaço antes do footer */
}

.schneider-cta h2 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.schneider-cta p {
  font-size: 1.1rem;
}

/* Garantir que strong funcione na CTA */
.schneider-cta strong {
  font-weight: 700;
}

.schneider-cta .btn-primary {
  background-color: #fff;
  color: #007A33;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.schneider-cta .btn-primary:hover {
  background-color: #e6e6e6;
  color: #005b26;
}

@media (max-width: 768px) {
  .schneider-header .schneider-img-wrapper img {
    height: 200px;
  }
}