/* ===== Orçamentos ===== */
.budgets {
  padding: 100px 20px;
  background: #f8f8f8;
  color: #111;
  text-align: center;
}

.budgets-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 40px;
  text-transform: uppercase;
  color: #111;
}

/* Texto introdutório */
.budgets-content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.6;
}

.budgets-content p {
  margin-bottom: 20px;
}

/* Contato */
.budgets-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  padding: 12px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card img {
  width: 20px;
  height: auto; /* mantém proporção */
}

/* Grid de itens */
.budgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.budget-item {
  background: #fff;
  padding: 24px;
  text-align: center; /* centraliza texto e imagem */
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* texto começa alinhado no topo após o ícone */
}

.budget-item:hover {
  transform: translateY(-5px);
}

/* Ícone */
.budget-item img {
  max-height: 70px;  /* define altura padrão */
  width: auto;       /* mantém proporção */
  margin-bottom: 16px;
  object-fit: contain;
}

/* Texto */
.budget-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

/* Texto final */
.budgets-final {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  color: #555;
}
