/* ============================
   CONTACTO / TOKENS
============================ */
:root {
  --navy: #02122b;
  --navy2: #021C5D;
  --cyan: #8ED1FC;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(2, 18, 43, .10);
  --shadow: 0 18px 46px rgba(2, 18, 43, .10);
}

/* ============================
   CONTACTO / PAGE + LAYOUT
============================ */
.sealog-contact-page {
  background: #fff;
  color: var(--text);
  overflow-x: hidden;
}

.sealog-contact {
  padding: 3.6rem 1.5rem 5rem;
  overflow-x: hidden;
}

.sealog-contact-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* ============================
   CONTACTO / HEADER
============================ */
.sealog-contact-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.sealog-contact-header h1 {
  margin: 0 0 .55rem 0;
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: .01em;
}

.sealog-contact-header p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================
   CONTACTO / TEAM GRID
============================ */
.sealog-contact-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

/* ============================
   CONTACTO / CARD
============================ */
.sealog-contact-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(2, 18, 43, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.sealog-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(142, 209, 252, .55);
  box-shadow: var(--shadow);
}

.sealog-contact-card-photo-wrap {
  height: 500px;
  background: linear-gradient(135deg, rgba(2, 18, 43, .92), rgba(2, 28, 93, .82));
}

.sealog-contact-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  filter: saturate(.9) contrast(1.02);
}

.sealog-contact-card-body {
  min-width: 0;
  padding: 1.25rem 1.25rem 1.3rem;
}

.sealog-contact-card-body h3 {
  margin: 0 0 .35rem 0;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 800;
}

.sealog-contact-role {
  margin: 0 0 1rem 0;
  color: rgba(2, 28, 93, .72);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================
   CONTACTO / INFO LINKS
============================ */
.sealog-contact-info {
  display: grid;
  gap: .55rem;
  margin-bottom: 1.1rem;
}

.sealog-contact-info-link {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;

  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: rgba(2, 18, 43, .86);

  background: transparent;
  border: 0;
  padding: .35rem 0;
  border-radius: 0;

  transition: color .18s ease, text-decoration-color .18s ease;
}

.sealog-contact-info-link:hover {
  color: var(--navy2);
  text-decoration: underline;
  text-decoration-color: rgba(142, 209, 252, .8);
  text-underline-offset: 4px;
}

.sealog-contact-ico {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  opacity: .85;
}

.sealog-contact-ico svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  display: block;
}

/* ============================
   CONTACTO / ACTIONS + BUTTONS
============================ */
.sealog-contact-actions {
  margin-top: .9rem;
  display: flex;
  gap: .6rem;
}

.sealog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .15s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.sealog-btn--primary {
  background: var(--navy2);
  color: #fff;
  border-color: rgba(2, 28, 93, .85);
  box-shadow: 0 12px 26px rgba(2, 28, 93, .18);
  padding: .62rem 1rem;
  letter-spacing: .12em;
}

.sealog-btn--primary:hover {
  transform: translateY(-1px);
  border-color: rgba(142, 209, 252, .65);
  box-shadow: 0 16px 36px rgba(2, 28, 93, .22);
}

.sealog-btn--ghost {
  background: #fff;
  color: var(--navy2);
  border-color: rgba(2, 28, 93, .22);
}

.sealog-btn--ghost:hover {
  background: rgba(2, 28, 93, .04);
  border-color: rgba(2, 28, 93, .32);
}

.sealog-btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================
   CONTACTO / RESPONSIVE
============================ */
@media (min-width: 768px) {
  .sealog-contact-header h1 {
    font-size: 2.35rem;
  }
}

@media (min-width: 860px) {
  .sealog-contact-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .sealog-contact {
    padding: 3.2rem 1.25rem 4.5rem;
  }

  .sealog-contact-inner {
    max-width: 980px;
  }
}

@media (max-width: 860px) {
  .sealog-contact-card-photo-wrap {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .sealog-contact {
    padding: 2.8rem 1rem 4rem;
  }

  .sealog-contact-header {
    margin-bottom: 1.6rem;
  }

  .sealog-contact-header h1 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .sealog-contact-header p {
    font-size: .98rem;
    max-width: 52ch;
  }
}

@media (max-width: 640px) {
  .sealog-contact-team {
    gap: 1rem;
  }

  .sealog-contact-card-photo-wrap {
    height: 320px;
  }

  .sealog-contact-card-body {
    padding: 1.1rem 1.1rem 1.2rem;
  }
}

@media (max-width: 520px) {
  .sealog-contact-actions {
    flex-direction: column;
    gap: .5rem;
  }

  .sealog-contact-actions .sealog-btn {
    width: 100%;
  }

  .sealog-btn {
    padding: .7rem 1rem;
  }
}

@media (max-width: 420px) {
  .sealog-contact-card-photo-wrap {
    height: 260px;
  }
}
