body.info-page {
  min-height: 100vh;
  margin: 0;
  color: #e9f2f4;
  background:
    radial-gradient(circle at 15% 8%, rgba(32,195,227,.13), transparent 28rem),
    linear-gradient(160deg, #031018 0%, #02090f 58%, #02070b 100%);
}
.info-shell {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 72px;
}
.info-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.info-brand {
  color: #f4eee4;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: .05em;
}
.info-brand span { color: var(--cyan); }
.info-back {
  color: #91aab3;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .06em;
}
.info-back:hover { color: #e6fbfd; }
.info-hero { padding: 72px 0 38px; }
.info-kicker {
  color: #5ed7e5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
}
.info-hero h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  color: #f4f0e9;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 500;
  line-height: .98;
}
.info-hero p {
  max-width: 720px;
  margin: 0;
  color: #93a8af;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.info-card h2 {
  margin: 0 0 12px;
  color: #e9f3f5;
  font-size: 18px;
  letter-spacing: .02em;
}
.info-card p, .info-card li {
  color: #91a6ae;
  font-size: 15px;
  line-height: 1.75;
}
.info-card p { margin: 0; }
.info-card ul { margin: 0; padding-left: 20px; }
.info-card a { color: #67dce8; }
.info-card-wide { grid-column: 1 / -1; }
.info-footer {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #5f7780;
  font-size: 12px;
}
@media (max-width: 720px) {
  .info-shell { width: min(100% - 28px, 1080px); padding-top: 24px; }
  .info-topbar { align-items: flex-start; flex-direction: column; }
  .info-hero { padding-top: 52px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card-wide { grid-column: auto; }
}


/* v16 — corporate/legal page actions */
.info-card address {
  margin: 0;
  color: #91a6ae;
  font-size: 15px;
  font-style: normal;
  line-height: 1.75;
}
.info-card address strong { color: #dce9ec; }
.info-contact-link {
  color: #e5f7f9 !important;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
}
.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid rgba(94,215,229,.3);
  border-radius: 12px;
  background: rgba(30,151,173,.08);
  color: #dff9fb !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .05em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.info-button:hover {
  transform: translateY(-2px);
  border-color: rgba(94,215,229,.58);
  background: rgba(30,151,173,.14);
}
.info-button-whatsapp {
  flex-direction: column;
  align-items: flex-start;
  min-width: min(100%, 250px);
  border-color: rgba(75,222,128,.38);
  background: linear-gradient(135deg, rgba(31,170,91,.18), rgba(20,112,68,.08));
  color: #effff5 !important;
}
.info-button-whatsapp span {
  margin-top: 3px;
  color: #91cda8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}
