/* ── PAGE HEADER ── */
.page-header {
  background: #0a0a0a;
  border-bottom: 2px solid #e8342a;
  padding: 36px 24px;
}

.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-header-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e8342a;
  margin-bottom: 8px;
}

.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #f0ede6;
  line-height: 1;
  margin-bottom: 10px;
}

.page-header-desc {
  font-size: 14px;
  color: #5a5550;
}

/* ── CONTAINER ── */
.contacto-container {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 24px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── INFO ── */
.contacto-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #f0ede6;
  margin-bottom: 14px;
}

.contacto-texto {
  font-size: 14px;
  color: #7a7570;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contacto-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contacto-item-icon {
  width: 40px;
  height: 40px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8342a;
  flex-shrink: 0;
}

.contacto-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a5550;
  margin-bottom: 4px;
}

.contacto-item-value {
  font-size: 14px;
  color: #c8c5be;
}

/* ── FORM ── */
.contacto-form-wrap {
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  padding: 28px;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a5550;
}

.form-input {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 14px;
  color: #f0ede6;
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: #e8342a;
}

.form-input option {
  background: #0d0d0d;
  color: #f0ede6;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-btn {
  background: #e8342a;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.15s;
}

.form-btn:hover {
  background: #c42820;
}

.form-success {
  background: rgba(46,204,113,0.1);
  border: 1px solid #2ecc71;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: #2ecc71;
}

/* ═══════════════════════════════════
   MOBILE — hasta 768px
═══════════════════════════════════ */
@media (max-width: 768px) {

  .page-header { padding: 24px 16px; }
  .page-header-title { font-size: 36px; }

  .contacto-container {
    margin: 28px auto;
    padding: 0 16px;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contacto-form-wrap {
    padding: 20px 16px;
  }
}

/* ═══════════════════════════════════
   TABLET — entre 769px y 1024px
═══════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  .contacto-grid {
    gap: 28px;
  }
}
