/* ══════════════════════════════════════════
   Contacto — estilos específicos de página
══════════════════════════════════════════ */

/* ── Sección principal ───────────────────── */
.ct-section { background: var(--bg-1); padding: 80px 0; }

/* ── Formulario ──────────────────────────── */
.ct-form     { display: flex; flex-direction: column; gap: 16px; }
.ct-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.ct-label {
  display: block;
  font-size: 12px; font-family: 'Poppins', sans-serif;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
}
.ct-input {
  width: 100%; background: var(--bg-3);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: #fff;
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.2s;
}
.ct-input:focus    { border-color: rgba(37,101,165,0.6); }
textarea.ct-input  { resize: vertical; }
.ct-submit         { align-self: flex-start; }

/* ── Grid de campos ──────────────────────── */
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .ct-row { grid-template-columns: 1fr; } }

/* ── Mensajes de estado ──────────────────── */
.ct-success {
  background: rgba(32,165,72,0.1); border: 1px solid rgba(32,165,72,0.3);
  border-radius: 12px; padding: 28px; text-align: center;
}
.ct-success-icon { font-size: 32px; color: #20a548; margin-bottom: 12px; display: block; }
.ct-success h3   { font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 8px; }
.ct-success p    { color: var(--text); font-size: 14px; }

.ct-error {
  background: rgba(242,40,29,0.1); border: 1px solid rgba(242,40,29,0.3);
  border-radius: 8px; padding: 14px 18px; margin-bottom: 20px;
  font-size: 14px; color: #f2281d;
}

/* ── Sidebar — canales de contacto ──────── */
.ct-sidebar-title { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 20px; margin-bottom: 28px; }
.ct-channels      { display: flex; flex-direction: column; gap: 16px; }

.ct-channel {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
  transition: border-color 0.2s; text-decoration: none;
}
.ct-channel:hover     { border-color: rgba(37,101,165,0.4); }
.ct-channel--wa:hover { border-color: rgba(37,211,102,0.4); }

.ct-channel-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ct-icon--wa   { background: rgba(37,211,102,0.12); color: #25d366; }
.ct-icon--blue { background: rgba(37,101,165,0.12);  color: var(--blue); }

.ct-channel-name   { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; color: #fff; }
.ct-channel-detail { font-size: 13px; color: var(--muted); }
