/* ============================================================
   CONTACT v2.0 — page rewrite, prefix .ctc-*
   No conflicts con CSS viejo (.contact-* / .wpcf7-*)
   ============================================================ */

/* ── HERO ───────────────────────────────────────────── */
.ctc-hero {
  position: relative;
  min-height: 360px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ctc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ctc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ctc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 78, 73, 0.55) 0%, rgba(15, 78, 73, 0.85) 100%);
}
.ctc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 64px 24px;
}
.ctc-hero__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #2dd4bf;
  font-weight: 700;
  margin-bottom: 14px;
}
.ctc-hero__title,
h1.ctc-hero__title,
.ctc-hero h1,
.ctc-hero .ctc-hero__title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif) !important;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.ctc-hero__sub {
  font-size: 1.05rem;
  margin: 0;
  color: #cbd5e1;
}

/* ── BODY (info + form, 2 cols) ─────────────────────── */
.ctc-body {
  background: #f8fafc;
  padding: 64px 24px;
}
.ctc-body__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .ctc-body__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── INFO column ────────────────────────────────────── */
.ctc-info {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.ctc-info__heading {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
  color: #134e4a;
}
.ctc-info__lead {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 24px;
}

.ctc-info__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ctc-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ctc-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ccfbf1;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctc-info__icon svg {
  width: 20px;
  height: 20px;
}
.ctc-info__data {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.ctc-info__label {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}
.ctc-info__value {
  font-size: 14px;
  color: #1e293b;
  line-height: 1.4;
  text-decoration: none;
}
.ctc-info__link:hover { color: #0d9488; }

.ctc-info__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  background: #25D366;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  transition: background 150ms ease;
}
.ctc-info__wa:hover { background: #1ebe5a; }
.ctc-info__wa svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── FORM column ────────────────────────────────────── */
.ctc-form {
  background: #fff;
  border-radius: 14px;
  padding: 36px 36px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.ctc-form__heading {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  color: #134e4a;
}
.ctc-form__lead {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 28px;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .ctc-form { padding: 24px 20px; }
}

/* Native form (fallback si no hay CF7) */
.ctc-form__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ctc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .ctc-form__row { grid-template-columns: 1fr; }
}
.ctc-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ctc-form__label {
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
}
.ctc-form__field input,
.ctc-form__field select,
.ctc-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 15px;
  background: #fff;
  color: #1e293b;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  box-sizing: border-box;
}
.ctc-form__field input:focus,
.ctc-form__field select:focus,
.ctc-form__field textarea:focus {
  outline: none;
  border-color: #0d9488;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.ctc-form__field textarea {
  resize: vertical;
  min-height: 120px;
}
.ctc-form__submit {
  align-self: flex-start;
  padding: 14px 32px;
  background: #0d9488;
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-family: var(--font-heading, 'Oswald', sans-serif);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.ctc-form__submit:hover {
  background: #0b7c72;
  transform: translateY(-1px);
}

/* ── CONTACT FORM 7 INSIDE .ctc-form ────────────────── */
.ctc-form .wpcf7,
.ctc-form .wpcf7-form {
  display: block !important;
}
.ctc-form .wpcf7-form p {
  margin: 0 0 18px !important;
}
.ctc-form .wpcf7-form label {
  display: block !important;
  font-family: var(--font-heading, 'Oswald', sans-serif) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #475569 !important;
  margin-bottom: 6px !important;
}
.ctc-form .wpcf7-form input[type="text"],
.ctc-form .wpcf7-form input[type="email"],
.ctc-form .wpcf7-form input[type="tel"],
.ctc-form .wpcf7-form input[type="url"],
.ctc-form .wpcf7-form select,
.ctc-form .wpcf7-form textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 8px !important;
  font-family: var(--font-body, 'Inter', sans-serif) !important;
  font-size: 15px !important;
  background: #fff !important;
  color: #1e293b !important;
  box-sizing: border-box !important;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.ctc-form .wpcf7-form input:focus,
.ctc-form .wpcf7-form select:focus,
.ctc-form .wpcf7-form textarea:focus {
  outline: none !important;
  border-color: #0d9488 !important;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15) !important;
}
.ctc-form .wpcf7-form textarea {
  min-height: 130px !important;
  resize: vertical !important;
}
.ctc-form .wpcf7-form input[type="submit"] {
  display: inline-block !important;
  padding: 14px 32px !important;
  background: #0d9488 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 8px !important;
  font-family: var(--font-heading, 'Oswald', sans-serif) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  cursor: pointer !important;
  transition: background 150ms ease, transform 150ms ease !important;
  width: auto !important;
}
.ctc-form .wpcf7-form input[type="submit"]:hover {
  background: #0b7c72 !important;
  transform: translateY(-1px);
}

/* ── MAP ────────────────────────────────────────────── */
.ctc-map {
  width: 100%;
  height: 540px;
  display: block;
  background: #e2e8f0;
}
.ctc-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .ctc-map { height: 380px; }
}
