/* ============================================================
   UNIVERSAL LEARNING — Contacto
   Built on ul-tokens.css + landing.css.
   ============================================================ */

/* ---------- Active nav ---------- */
.nav-link.is-active { color: var(--ul-navy); font-weight: 700; }
.nav-link.is-active::after { right: 0; }
.mobile-nav a.m-link.is-active { color: var(--ul-turquoise); }

/* ============================================================
   HERO (light)
   ============================================================ */
.ct-hero { position: relative; overflow: hidden; background: var(--ul-bg-soft); padding: 66px 0 78px; }
@media (min-width: 880px) { .ct-hero { padding: 92px 0 100px; } }
.ct-hero .hex-field { opacity: 0.6; }
.ct-hero .ul-wrap { position: relative; z-index: 2; }
.ct-hero__inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.ct-hero h1 {
  color: var(--ul-navy); width: 100%;
  font-size: clamp(38px, 6vw, 64px);
  text-transform: none; letter-spacing: -0.02em; line-height: 1.2;
  margin: 20px 0 0;
}
.ct-hero__lead { font-size: 24px; line-height: 1.62; color: var(--ul-muted); margin: 24px 0 0; max-width: 52ch; }
.ct-accent { display: flex; gap: 8px; margin-top: 26px; }
.ct-accent span { width: 30px; height: 4px; border-radius: 999px; }
.ct-accent span:nth-child(1) { background: var(--ul-turquoise); }
.ct-accent span:nth-child(2) { background: var(--ul-sky); }
.ct-accent span:nth-child(3) { background: var(--ul-yellow); }

/* ============================================================
   CONTACT GRID
   ============================================================ */
.ct-section { background: var(--ul-bg-soft); padding: 24px 0 96px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 0.82fr 1.18fr; gap: 28px; } }

/* Info column */
.ct-info { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  background: #fff; border: 1px solid var(--ul-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 26px 26px 24px;
}
.info-card__head { display: flex; align-items: center; gap: 14px; }
.info-card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-md); flex: 0 0 auto;
  background: var(--gradient-turquoise); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow-turquoise);
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card__head h3 { font-size: 21px; text-transform: none; letter-spacing: 0.01em; color: var(--ul-navy); }
.info-card p { font-size: 20.5px; line-height: 1.6; color: var(--ul-muted); margin: 14px 0 0; }
.info-card .link-arrow { margin-top: 14px; }

/* Navy HQ card */
.info-card--navy {
  background: var(--gradient-navy-radial); color: #fff; position: relative; overflow: hidden;
  border: 1px solid rgba(14,239,218,0.2); box-shadow: var(--shadow-glow-blue);
  padding: 0;
}
.info-card--navy .hex-field { opacity: 0.5; }
.info-card--navy__media { position: relative; }
.info-card--navy image-slot { display: block; width: 100%; height: 160px; }
.info-card--navy image-slot::part(empty) { color: rgba(255,255,255,0.72); }
.info-card--navy image-slot::part(frame) { background: rgba(255,255,255,0.06); }
.info-card--navy__body { position: relative; z-index: 2; padding: 22px 26px 26px; }
.info-card--navy .tech-label { font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: 0.16em; text-transform: none; color: var(--ul-turquoise); }
.info-card--navy h3 { font-size: 24px; text-transform: none; letter-spacing: 0.01em; color: #fff; margin-top: 8px; }
.info-card--navy address { font-style: normal; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.78); margin-top: 12px; }
.info-card--navy .ct-status { display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 16px; letter-spacing: 0.12em; text-transform: none; color: rgba(255,255,255,0.85); }
.info-card--navy .ct-status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--ul-turquoise); box-shadow: 0 0 0 4px rgba(14,239,218,0.2); animation: ctPulse 2.6s var(--ease-out) infinite; }
@keyframes ctPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
@media (prefers-reduced-motion: reduce) { .info-card--navy .ct-status::before { animation: none; } }

/* Form card */
.contact-form-card {
  background: #fff; border: 1px solid var(--ul-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 34px 34px 32px;
}
@media (max-width: 560px) { .contact-form-card { padding: 24px 20px; } }
.contact-form-card .form { margin-top: 0; }
.ct-form-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.ct-form-foot p { font-size: 18.5px; color: var(--ul-muted); line-height: 1.5; max-width: 46ch; margin: 0; flex: 1 1 240px; }
.ct-form-foot a { color: var(--ul-turquoise-dark); }
.ct-form-foot .btn { flex: 0 0 auto; }

/* Success (visual) */
.ct-sent { display: none; flex-direction: column; align-items: center; text-align: center; padding: 28px 10px; }
.contact-form-card.is-sent .form { display: none; }
.contact-form-card.is-sent .ct-sent { display: flex; }
.ct-sent .success-ring { width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-turquoise); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: var(--shadow-glow-turquoise); }
.ct-sent .success-ring svg { width: 30px; height: 30px; }
.ct-sent h2 { font-size: 30px; text-transform: none; color: var(--ul-navy); margin-top: 18px; }
.ct-sent p { font-size: 21px; color: var(--ul-muted); margin-top: 10px; max-width: 40ch; line-height: 1.6; }

/* ============================================================
   IMAGE BAND (Visítanos)
   ============================================================ */
.ct-band { padding: 0 0 96px; background: var(--ul-bg-soft); }
.ct-band__head { text-align: center; max-width: 620px; margin: 0 auto 28px; }
.ct-band__head h2 { font-size: clamp(28px, 3vw, 40px); text-transform: none; letter-spacing: -0.01em; color: var(--ul-navy); margin-top: 12px; }
.ct-band__head p { font-size: 21.5px; color: var(--ul-muted); margin-top: 10px; line-height: 1.6; }
.ct-gallery { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 760px) { .ct-gallery { grid-template-columns: 1.6fr 1fr; } }
.ct-gallery__col { display: grid; gap: 16px; }
.ct-gallery image-slot { display: block; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.ct-gallery .ct-shot--tall { height: 380px; }
.ct-gallery .ct-shot--half { height: 182px; }
@media (max-width: 759px) { .ct-gallery .ct-shot--tall { height: 260px; } .ct-gallery .ct-shot--half { height: 200px; } }
