/* ── Contacto Page ── */

.ct-hero {
  background: linear-gradient(135deg, #14213d 0%, #0a9396 100%);
  padding: 64px 28px 52px;
  text-align: center;
}
.ct-hero-inner { max-width: 640px; margin: 0 auto; }
.ct-hero-eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 12px;
}
.ct-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin: 0 0 12px; }
.ct-hero-sub   { font-size: .97rem; color: rgba(255,255,255,.8); line-height: 1.65; margin: 0; }

.ct-body {
  max-width: 1100px; margin: 0 auto;
  padding: 52px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* ── FORM ── */
.ct-form-card {
  background: #fff; border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 36px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.ct-form-title { font-size: 1.2rem; font-weight: 800; color: #14213d; margin: 0 0 6px; }
.ct-form-sub   { font-size: .87rem; color: #6b7280; margin: 0 0 28px; }

.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field label { font-size: .82rem; font-weight: 700; color: #374151; }

.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  font-size: .9rem; font-family: inherit;
  color: #111827;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  background: #fafafa;
  width: 100%; box-sizing: border-box;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: #0a9396;
  box-shadow: 0 0 0 3px rgba(10,147,150,.1);
  background: #fff;
}
.ct-field textarea { resize: vertical; min-height: 120px; }
.ct-error { font-size: .78rem; color: #dc2626; }

.ct-submit {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  background: linear-gradient(135deg, #0a9396, #14213d);
  color: #fff; font-weight: 800; font-size: .9rem; letter-spacing: .03em;
  padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
  transition: opacity .15s, transform .15s;
  width: 100%;
}
.ct-submit:hover { opacity: .92; transform: translateY(-1px); }

/* ── SIDEBAR ── */
.ct-wa-card {
  display: flex; align-items: center; gap: 16px;
  background: #25D366; color: #fff;
  border-radius: 14px; padding: 20px 22px;
  text-decoration: none;
  transition: background .15s, transform .15s;
  margin-bottom: 20px;
}
.ct-wa-card:hover { background: #1ebe5c; transform: translateY(-2px); }
.ct-wa-icon {
  width: 52px; height: 52px; background: rgba(255,255,255,.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ct-wa-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ct-wa-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.ct-wa-num   { font-size: 1.1rem; font-weight: 900; }
.ct-wa-hint  { font-size: .74rem; opacity: .75; }
.ct-wa-arrow { flex-shrink: 0; }

.ct-info-block {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 14px; padding: 22px 22px;
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.ct-info-item { display: flex; align-items: flex-start; gap: 14px; }
.ct-info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ct-info-item strong { display: block; font-size: .88rem; font-weight: 700; color: #14213d; margin-bottom: 3px; }
.ct-info-item p { font-size: .82rem; color: #6b7280; margin: 0; line-height: 1.55; }

.ct-faq-teaser {
  background: #f0fdfc; border: 1px solid #b2dfdb;
  border-radius: 12px; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.ct-faq-teaser p { font-size: .87rem; color: #374151; margin: 0; }
.ct-faq-link { font-size: .87rem; font-weight: 700; color: #0a9396; text-decoration: none; white-space: nowrap; }
.ct-faq-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .ct-body { grid-template-columns: 1fr; }
  .ct-form-card { padding: 24px 20px; }
}
@media (max-width: 540px) {
  .ct-field-row { grid-template-columns: 1fr; }
  .ct-hero { padding: 48px 16px 36px; }
}
