/* Seccion de contacto — Telecom Cordillera
   Paleta oficial 2026: negro #0b0b0b, verde oscuro #162813, lima #d3f369,
   lima palido #dfeea8, crema #f2f0e1. Tipografia Inter y textos bilingues
   "Espanol / English". */

.tc-contact {
  width: 100%;
  background: #f2f0e1;
  padding: 80px 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.tc-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .tc-contact__inner {
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
  }
}

.tc-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #162813;
  font-weight: 600;
  margin: 0 0 14px;
}

.tc-contact__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d3f369;
  box-shadow: 0 0 0 3px rgba(211, 243, 105, 0.3);
}

.tc-contact__title {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  color: #162813;
  font-weight: 700;
  margin: 0 0 18px;
}

.tc-contact__text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 28px;
  max-width: 46ch;
}

.tc-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.tc-contact__list a,
.tc-contact__list span {
  color: #162813;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.25s ease;
}

.tc-contact__list a:hover {
  color: #0b0b0b;
}

.tc-contact__list a:hover .tc-contact__icon {
  background: #162813;
  color: #d3f369;
  transform: scale(1.06);
}

/* Chip circular alrededor de cada icono (mail / telefono / pin), en vez del
   icono suelto: consistente con los botones circulares del resto del sitio. */
.tc-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d3f369;
  color: #0b0b0b;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.tc-contact__icon svg {
  display: block;
}

/* --- formulario --- */

.tc-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #dfeea8;
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.6) inset,
    0 24px 48px -28px rgba(11, 11, 11, 0.35),
    0 2px 8px rgba(22, 40, 19, 0.08);
  transition: box-shadow 0.3s ease;
}

.tc-form:focus-within {
  box-shadow:
    0 1px 1px rgba(255, 255, 255, 0.7) inset,
    0 28px 54px -26px rgba(11, 11, 11, 0.4),
    0 0 0 3px rgba(211, 243, 105, 0.35);
}

.tc-form__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .tc-form__grid--two {
    grid-template-columns: 1fr 1fr;
  }
}

.tc-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  margin-bottom: 8px;
}

.tc-field input,
.tc-field textarea {
  width: 100%;
  border: 1px solid #dfeea8;
  border-radius: 10px;
  background: #f2f0e1;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tc-field input::placeholder,
.tc-field textarea::placeholder {
  color: #bcd1c4;
}

.tc-field input:focus,
.tc-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: #162813;
  box-shadow: 0 0 0 3px rgba(211,243,105, 0.45);
}

.tc-field textarea {
  resize: vertical;
  min-height: 120px;
}

.tc-form__honey {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
}

.tc-form__submit {
  appearance: none;
  border: none;
  cursor: pointer;
  background: #162813;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(22, 40, 19, 0.5);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.tc-form__submit:hover:not(:disabled) {
  background: #d3f369;
  color: #0b0b0b;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(211, 243, 105, 0.55);
}

.tc-form__submit:active:not(:disabled) {
  transform: translateY(0);
}

.tc-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.tc-form__status {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  display: none;
}

.tc-form__status--ok {
  display: block;
  color: #1b7a4b;
}

.tc-form__status--error {
  display: block;
  color: #c0392b;
}
