/* contact.css */

.info-banner {
  background: linear-gradient(135deg, #fffaf0 0%, #fff 62%);
  border-bottom: 1px solid #eee;
  padding: 58px 0;
}

.info-banner h1 {
  font-size: 34px;
  color: var(--texto-marrom);
  margin-bottom: 8px;
}

.info-banner p {
  color: #666;
  line-height: 1.5;
  max-width: 560px;
}

.contact-content {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0)),
    var(--bg-papel);
  padding: 58px 0 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  background: var(--papel-claro);
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 18px 42px rgba(62, 39, 10, 0.08);
}

.contact-card h2 {
  font-size: 24px;
  color: var(--texto-marrom);
  margin-bottom: 14px;
}

.contact-card p {
  color: #444;
  margin-bottom: 8px;
}

.contact-intro {
  color: #5d5143;
  line-height: 1.55;
  margin-bottom: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid #eadfca;
  border-radius: 14px;
  background: #fffdf8;
  color: #2f1b0c;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.contact-item:hover {
  border-color: #d4a43a;
  box-shadow: 0 10px 24px rgba(62, 39, 10, 0.1);
  transform: translateY(-2px);
}

.contact-item-label {
  color: #8b6a2b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-item strong {
  color: #2f1b0c;
  font-size: 15px;
}

.contact-note {
  margin-top: 18px;
  background: #fff;
  border: 1px solid #eadfca;
  border-radius: 14px;
  padding: 16px;
  color: #555;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.contact-note p {
  margin: 0;
  line-height: 1.5;
}

.contact-form-card {
  background: #fffdf8;
}

.contact-form .row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #d7cfc1;
  background: #fff;
  color: #24170b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c9972b;
  box-shadow: 0 0 0 4px rgba(201, 151, 43, 0.14);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.btn-info {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #f5c451, #c9972b);
  color: #1a1a1a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.contact-form small {
  display: block;
  margin-top: 10px;
  color: #666;
}

/* Responsivo */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .info-banner {
    padding: 44px 0;
  }

  .info-banner h1 {
    font-size: 28px;
  }

  .contact-card {
    padding: 22px;
  }
}
