/* ============================================================
   CONTACTO.CSS — Estilos específicos de la página de contacto
   ============================================================ */

/* ============ HERO ============ */
.ct-hero {
  padding: 90px 48px 48px;
  background:
    radial-gradient(700px 400px at 80% -10%, rgba(29, 158, 117, 0.06), transparent 60%),
    linear-gradient(180deg, #FCFBF7 0%, #F7F4EC 100%);
  border-bottom: 0.5px solid var(--line);
}
.ct-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}
.ct-hero-kicker {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
}
.ct-hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -1.1px;
  color: var(--ink);
  margin: 0 0 20px;
}
.ct-hero-title em { font-style: italic; color: var(--blue); }
.ct-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}

/* ============ BLOQUE DE CANALES ============ */
.ct-canales {
  padding: 80px 48px;
}
.ct-canales-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.ct-canal {
  padding: 32px 28px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 16px;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ct-canal:hover {
  box-shadow: 0 16px 36px rgba(12, 68, 124, 0.08);
  transform: translateY(-2px);
}
.ct-canal.featured {
  background: linear-gradient(160deg, rgba(29, 158, 117, 0.1), #fff);
  border-color: rgba(29, 158, 117, 0.3);
}
.ct-canal-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.ct-canal.featured .ct-canal-icon {
  background: var(--wa);
  color: #fff;
}
.ct-canal-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.ct-canal-value {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0;
}
.ct-canal-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.ct-canal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 500;
  margin-top: 8px;
}
.ct-canal.featured .ct-canal-link { color: var(--wa); }
.ct-canal-link svg { transition: transform .25s; }
.ct-canal:hover .ct-canal-link svg { transform: translateX(3px); }

/* ============ FORMULARIO ============ */
.ct-form-section {
  padding: 100px 48px;
  background: var(--warm);
  border-top: 0.5px solid var(--warm-border);
  border-bottom: 0.5px solid var(--warm-border);
}
.ct-form-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.ct-form-head .kicker { margin-bottom: 12px; }
.ct-form-head .h2 { margin: 0 0 20px; }
.ct-form-head p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 360px;
}
.ct-form-hint {
  padding: 18px 20px;
  background: rgba(12, 68, 124, 0.05);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
  max-width: 360px;
}
.ct-form-hint strong { font-weight: 500; }

.ct-form {
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ct-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ct-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.1px;
}
.ct-input,
.ct-textarea,
.ct-select {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  padding: 12px 14px;
  background: var(--warm);
  border: 0.5px solid var(--line);
  border-radius: 9px;
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.ct-input:focus,
.ct-textarea:focus,
.ct-select:focus {
  border-color: var(--blue);
  background: #fff;
}
.ct-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.ct-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.ct-check input {
  margin-top: 3px;
  accent-color: var(--blue);
}
.ct-check a { color: var(--blue); border-bottom: 0.5px solid rgba(12, 68, 124, 0.3); }
.ct-submit {
  background: var(--blue);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(12, 68, 124, 0.22);
  margin-top: 4px;
}
.ct-submit:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(12, 68, 124, 0.35);
}

/* ============ DIRECCIÓN / HORARIO ============ */
.ct-info {
  padding: 90px 48px;
}
.ct-info-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.ct-info-card {
  padding: 32px;
  background: #fff;
  border: 0.5px solid var(--line);
  border-radius: 14px;
}
.ct-info-kicker {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}
.ct-info-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.3px;
  font-weight: 500;
}
.ct-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ct-info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 0.5px dashed rgba(12, 68, 124, 0.18);
  font-size: 14px;
  color: var(--muted);
  gap: 16px;
}
.ct-info-list li:last-child { border-bottom: none; }
.ct-info-list li strong {
  color: var(--ink);
  font-weight: 500;
}
.ct-info-address {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 16px;
}
.ct-info-address span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .ct-hero { padding: 60px 20px 40px; }
  .ct-hero-title { font-size: 34px; letter-spacing: -0.8px; }
  .ct-canales, .ct-form-section, .ct-info { padding: 60px 20px; }
  .ct-form-inner { grid-template-columns: 1fr; gap: 32px; }
  .ct-field-row { grid-template-columns: 1fr; }
  .ct-info-inner { grid-template-columns: 1fr; }
  .ct-form { padding: 24px; }
}
@media (max-width: 520px) {
  .ct-hero { padding: 44px 16px 32px; }
  .ct-hero-kicker { font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
  .ct-hero-title { font-size: 26px; letter-spacing: -0.6px; }
  .ct-hero-sub { font-size: 15px; }
  .ct-canales, .ct-form-section, .ct-info { padding: 44px 16px; }
  .ct-canales-inner { grid-template-columns: 1fr; gap: 14px; }
  .ct-canal { padding: 22px 18px; border-radius: 12px; }
  .ct-canal-value { font-size: 19px; }
  .ct-form { padding: 20px; border-radius: 12px; }
  .ct-form-head p, .ct-form-hint { max-width: none; }
  .ct-info-card { padding: 22px; border-radius: 12px; }
  .ct-info-title { font-size: 19px; }
  .ct-info-list li { flex-direction: column; align-items: flex-start; gap: 2px; }
  .ct-submit { padding: 12px 18px; font-size: 14.5px; }
}
