/* ===========================================================================
   Integratec — Contacto · nuevo diseño
   Reutiliza tokens.css + landing.css (header.site, footer.site, .btn, .shell).
   =========================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.ct-hero { position: relative; text-align: center; padding: 60px 32px 48px; overflow: hidden; background: linear-gradient(180deg, var(--brand-softer) 0%, transparent 72%); }
.ct-hero::after { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 880px; height: 540px; background: radial-gradient(ellipse, var(--brand-soft), transparent 62%); opacity: .7; pointer-events: none; z-index: 0; }
.ct-hero > * { position: relative; z-index: 1; }
.ct-eyebrow { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-deep); margin-bottom: 16px; }
.ct-hero h1 { font-weight: 800; font-size: clamp(34px, 5vw, 56px); line-height: 1.04; letter-spacing: -.035em; color: var(--ink); margin-bottom: 16px; text-wrap: balance; }
.ct-hero h1 em, .ct-section__head h2 em { font-style: normal; background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ct-hero p { font-size: clamp(16px, 2vw, 19px); font-weight: 500; line-height: 1.55; color: var(--muted); max-width: 560px; margin: 0 auto; text-wrap: balance; }

/* ── Sección genérica ─────────────────────────────────────────────────────── */
.ct-section { max-width: 1160px; margin: 0 auto; padding: var(--section-y) 32px; }
.ct-section__head { text-align: center; margin-bottom: 40px; }
.ct-section__head h2 { font-weight: 800; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.1; letter-spacing: -.03em; color: var(--ink); text-wrap: balance; }

/* ── Oficinas ─────────────────────────────────────────────────────────────── */
.offices-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: start; }
.office-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 1px 2px rgba(24, 24, 27, .04); transition: transform .2s, box-shadow .2s, border-color .2s; }
.office-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: 0 20px 40px -22px rgba(24, 24, 27, .2); }
.office-card__flag { width: 46px; height: 34px; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(0, 0, 0, .12); margin-bottom: 16px; }
.office-card__flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.office-card__country { font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); margin-bottom: 16px; }
.office-card__locations { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.office-card__city { font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 2px; }
.office-card__phone { font-size: 14px; font-weight: 600; color: var(--brand-deep); text-decoration: none; transition: color .15s; }
.office-card__phone:hover { color: var(--brand); }

.contact-email { text-align: center; margin-top: 34px; font-size: 15px; color: var(--muted); }
.contact-email a { color: var(--cta); font-weight: 600; text-decoration: none; }
.contact-email a:hover { text-decoration: underline; }

/* ── Equipo ───────────────────────────────────────────────────────────────── */
.ct-section--soft { background: var(--brand-softer); }
.team-photos { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 24px; }
.team-photos__item { display: flex; flex-direction: column; align-items: center; }
.team-photos__img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid var(--brand); margin-bottom: 10px; }
.team-photos__name { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.team-photos__more { width: 84px; height: 84px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 11.5px; font-weight: 600; line-height: 1.25; color: var(--brand-deep); background: var(--brand-soft); border: 1px dashed rgba(217, 127, 58, .4); padding: 8px; box-sizing: border-box; }

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.ct-cta { max-width: 1160px; margin: 0 auto var(--section-y); padding: 52px 40px; text-align: center; background: #1e2a38; border-radius: 22px; }
.ct-cta__eyebrow { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
.ct-cta h2 { font-weight: 800; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; letter-spacing: -.02em; color: #fff; max-width: 720px; margin: 0 auto 14px; text-wrap: balance; }
.ct-cta p { font-size: 16px; line-height: 1.55; color: #b8c5cd; max-width: 560px; margin: 0 auto 28px; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1000px) { .offices-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
	.ct-hero { padding: 40px 20px 32px; }
	.ct-section { padding: 40px 20px; }
	.ct-cta { padding: 40px 24px; margin-left: 20px; margin-right: 20px; }
}
@media (max-width: 560px) { .offices-grid { grid-template-columns: repeat(2, 1fr); } }
