
.hero-contact {
  background-image: url("../img/contactos/contactos-hero.jpg");
}

.hero-contact::before {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.15) 70%,
    rgba(0,0,0,0) 100%
  );
}
.contact {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  background: #121212;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, border 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.4);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.7);
}

.btn-contact {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #E9550D;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-contact:hover {
  background: #E9550D;
  color: #ffffff;
}

.contact-address {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto; /* espaço por baixo */
}

.contact-address h3 {
  margin-bottom: 12px;
}

.contact-address p {
  color: #aaa;
  line-height: 1.6;
  margin: 6px 0;
}


/* responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.hero-contact .hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: left;
}

.hero-contact h1 {
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.hero-contact p {
  margin-top: 0;
  color: rgba(255,255,255,0.8);
}
