.contacto-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.contacto-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contacto-form { padding: 28px; }
@media (max-width: 480px) {
  .contacto-form { padding: 20px; }
}

.contacto-form h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.contacto-form > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.contacto-submit {
  width: 100%;
  font-size: 0.95rem;
  padding: 13px 16px;
}
@media (min-width: 481px) {
  .contacto-submit { width: auto; min-width: 200px; }
}

/* ── Sidebar de datos de contacto ── */
.contacto-info {
  padding: 28px;
  position: sticky;
  top: 88px;
}
@media (max-width: 860px) {
  .contacto-info { position: static; }
}

.contacto-info h3 {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.contacto-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contacto-info-item:last-child { margin-bottom: 0; }

.contacto-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacto-info-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.contacto-info-value {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}
.contacto-info-value a { color: var(--text); }
.contacto-info-value a:hover { color: var(--secondary); }

.contacto-info-social {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
