/* Seccion contacto - Muebleria SK */
.msk-contact-section {
  background: #f8f6f3;
  padding: 70px 0 50px;
}

.msk-contact-section .section-header h2 {
  font-size: 30px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.msk-contact-section .section-header p {
  color: #777;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.msk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.msk-contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.msk-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.msk-contact-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 15px;
}

.msk-contact-list li:last-child { border-bottom: none; }

.msk-contact-list .lnr {
  font-size: 22px;
  color: #8b7355;
  margin-top: 2px;
}

.msk-contact-list a {
  color: #8b7355;
  text-decoration: none;
  font-weight: 500;
}

.msk-contact-list a:hover { text-decoration: underline; }

.msk-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.msk-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #8b7355;
  color: #8b7355;
  background: #fff;
}

.msk-contact-btn:hover {
  background: #8b7355;
  color: #fff;
}

.msk-contact-btn--wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.msk-contact-btn--wa:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

.msk-contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msk-contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #8b7355;
  text-decoration: none;
}

.msk-contact-map-link:hover {
  text-decoration: underline;
}

.msk-contact-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 320px;
  background: #e8e4df;
}

.msk-contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.msk-contact-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

@media (max-width: 991px) {
  .msk-contact-grid { grid-template-columns: 1fr; }
}
