/* =====================================================
   page-contacto.css — Estilos exclusivos de /contacto/
   ===================================================== */

/* ---- PAGE HERO ---- */
.page-hero--contacto {
  padding: 140px 2rem 60px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-orb-contact {
  position: absolute; bottom: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 65%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-hero--contacto .page-hero-inner { position: relative; z-index: 1; }
.page-hero--contacto h1 { font-size: var(--text-hero); margin-bottom: 1rem; }
.page-hero--contacto h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero--contacto .page-hero-lead {
  font-size: var(--text-lg); font-weight: 300;
  color: var(--muted); line-height: 1.75; max-width: 520px;
}

/* ---- CONTACT LAYOUT ---- */
.contact-layout {
  padding: 4rem 0;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

/* ---- FORM CARD ---- */
.form-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem;
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--grad);
}
.form-title {
  font-family: var(--font-d); font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 1.75rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
label {
  display: block; font-size: var(--text-xs); font-weight: 600;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.required { color: var(--or2); margin-left: 2px; }
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 11px 14px;
  font-size: var(--text-md); font-weight: 300; font-family: var(--font-b);
  color: var(--white); outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
input:focus, textarea:focus, select:focus {
  border-color: rgba(249,115,22,0.5);
  background: rgba(249,115,22,0.04);
}
input.field--error, textarea.field--error, select.field--error {
  border-color: rgba(239,68,68,0.5);
  background: rgba(239,68,68,0.04);
}
textarea { resize: vertical; min-height: 120px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
select option { background: #1a1a1a; color: var(--white); }
.field-hint { font-size: var(--text-xs); color: rgba(255,255,255,0.25); margin-top: 5px; line-height: 1.5; }
.submit-btn {
  width: 100%; margin-top: 8px;
  background: var(--grad); color: var(--white); border: none;
  border-radius: var(--r-sm); padding: 14px;
  font-size: var(--text-base); font-weight: 600; font-family: var(--font-b);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(249,115,22,0.3);
}
.submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note {
  font-size: var(--text-xs); color: rgba(255,255,255,0.2);
  text-align: center; margin-top: 12px; line-height: 1.5;
}
.form-feedback {
  border-radius: var(--r-sm); padding: 12px 16px;
  font-size: var(--text-sm); font-weight: 300; line-height: 1.5;
  margin-bottom: 12px;
}
.form-feedback--success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); color: #6EE7B7; }
.form-feedback--error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.2);  color: #FCA5A5; }

/* ---- SIDEBAR ---- */
.contact-sidebar { display: flex; flex-direction: column; gap: 14px; }
.response-card {
  background: var(--grad); border-radius: var(--r-lg); padding: 1.75rem;
  position: relative; overflow: hidden;
}
.response-card::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
  pointer-events: none;
}
.rc-content { position: relative; z-index: 1; }
.rc-title { font-family: var(--font-d); font-size: var(--text-lg); font-weight: 700; margin-bottom: 6px; }
.rc-text  { font-size: var(--text-md); color: rgba(255,255,255,0.8); font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.rc-channels { display: flex; flex-direction: column; gap: 8px; }
.rc-channel  { display: flex; align-items: center; gap: 10px; font-size: var(--text-md); color: rgba(255,255,255,0.9); }
.rc-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.9); flex-shrink: 0; box-shadow: 0 0 6px rgba(255,255,255,0.5); }
.info-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
}
.ic-title { font-family: var(--font-d); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.ic-item  { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: var(--text-md); }
.ic-item:last-child { margin-bottom: 0; }
.ic-icon  { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ic-text  { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.5; }
.ic-text a { color: var(--or3); text-decoration: none; }
.ic-text a:hover { text-decoration: underline; }
.faq-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 12px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child  { border-bottom: none; padding-bottom: 0; }
.faq-q { font-family: var(--font-d); font-size: var(--text-sm); font-weight: 600; margin-bottom: 5px; color: rgba(255,255,255,0.85); }
.faq-a { font-size: var(--text-sm); font-weight: 300; color: var(--muted); line-height: 1.6; }

/* ---- RECAPTCHA ---- */
.recaptcha-legal {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
}
.recaptcha-legal a:hover {
  color: var(--or3) !important;
}

/* Ocultar insignia flotante de reCAPTCHA v3 de forma segura */
.grecaptcha-badge {
  visibility: hidden !important;
}
