/* ===== PÁGINA | CONTATO ===== */

.contact{
  padding: 80px 0;
  background: #fef9f5;
}

.contact__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.contact__head{
  margin-bottom: 18px;
  max-width: 620px;
}

.contact__title{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: var(--brand);
}

.contact__subtitle{
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.contact__cards{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

/* Card */
.contact-card{
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;

  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;

  background: #fef9f5; /* off-white da paleta */
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);

  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.14);
}

.contact-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  background: rgba(0,0,0,.06);
  color: #111;
  font-weight: 900;
}

.contact-card__title{
  display: block;
  font-weight: 900;
  color: #000;
  margin-bottom: 2px;
}

.contact-card__value{
  display: block;
  color: #333;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-word;
}

.contact-card__cta{
  font-weight: 900;
  color: var(--brand);
}

/* WhatsApp destacado */
.contact-card--wpp .contact-card__icon{
  background: #25D366;
  color: #fff;
}

.contact-icon{
  width: 28px;
  height: 28px;
  display: block;
}

/* Coluna direita */
.contact__right{
  background: #fef9f5;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,.10);
}

.contact__h2{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--brand);
}

.contact__addr{
  margin: 0 0 14px;
  color: #111;
  font-weight: 700;
  line-height: 1.5;
}

.contact__map{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
}

.contact__map iframe{
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact__directions{
  display: inline-block;
  margin-top: 12px;
  font-weight: 900;
  color: var(--brand);
  text-decoration: none;
}

.contact__directions:hover{
  text-decoration: underline;
}

/* Ícones em SVG dentro do quadradinho */
.contact-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

/* SVG */
.contact-icon{
  width: 28px;
  height: 28px;
  display: block;
}

/* ===== CORES POR REDE ===== */
.contact-card__icon--wpp{
  background: #25D366;
  color: #fff;
  border: none;
}

.contact-card__icon--ig{
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
  border: none;
}

.contact-card__icon--in{
  background: #0A66C2;
  color: #fff;
  border: none;
}


/* Responsivo */
@media (max-width: 980px){
  .contact__grid{
    grid-template-columns: 1fr;
  }

  .contact__map iframe{
    height: 280px;
  }
}
