:root {
  --web5: #007490;
  --web5-strong: #005d73;
  --web5-dark: #063946;
  --web5-soft: #e8f6f9;
  --dark: #0e0e0e;
  --text: #111820;
  --muted: #65727c;
  --line: #dbe7ea;
  --bg: #f4fafb;
  --shadow: 0 22px 60px rgba(0, 40, 50, .10);
}
* { box-sizing: border-box; }
html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background: #071011;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.cc-container {
  width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
}
.cc-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,116,144,.12);
  backdrop-filter: blur(16px);
}
.cc-header-inner {
  height: 74px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cc-brand img {
  width: 146px;
  max-height: 68px;
  object-fit: contain;
}
.cc-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cc-nav > a, .cc-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 13px;
  color: #22303a;
  font-size: .86rem;
  font-weight: 850;
  text-transform: uppercase;
}
.cc-nav > a:hover, .cc-dropdown > a:hover, .cc-nav .active {
  background: var(--web5-soft);
  color: var(--web5);
}
.cc-dropdown { position: relative; }
.cc-dropdown:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.cc-dropdown > div {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 210px;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cc-dropdown:hover > div, .cc-dropdown:focus-within > div { display: grid; }
.cc-dropdown div a {
  padding: 11px 13px;
  border-radius: 12px;
  color: #22303a;
  font-weight: 850;
}
.cc-dropdown div a:hover {
  background: var(--web5-soft);
  color: var(--web5);
}
.cc-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--web5);
  font-size: 1.5rem;
}
.cc-dashboard-hero {
  padding: 34px 0;
  background: radial-gradient(circle at 86% 10%, rgba(158,232,243,.30), transparent 28%), linear-gradient(135deg, #071417 0%, #0b3039 52%, #081012 100%);
  color: #fff;
}
.dashboard-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}
.cc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(158,232,243,.15);
  color: #9ee8f3;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}
.dashboard-copy h1 {
  max-width: 760px;
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 5.8vw, 4.4rem);
  line-height: 1.02;
}
.dashboard-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.cc-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--web5), var(--web5-strong));
  color: #fff !important;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}
.cc-btn-light {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}
.cc-btn.muted {
  background: #65727c;
}
.cc-btn-soft {
  background: var(--web5-soft);
  color: var(--web5) !important;
  border: 1px solid rgba(0, 116, 144, .16);
}
.payment-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 310px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.payment-panel:after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.payment-panel.danger {
  background: linear-gradient(135deg, rgba(255,235,238,.16), rgba(0,116,144,.14));
}
.payment-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: #b4232f;
  font-size: 2rem;
}
.payment-panel strong {
  font-size: 1.8rem;
  line-height: 1.1;
}
.payment-panel p {
  margin: 0;
  color: rgba(255,255,255,.76);
}
.payment-panel a {
  color: #9ee8f3;
  font-weight: 950;
}
.cc-section { padding: 24px 0 30px; }
.metric-grid, .quick-grid {
  display: grid;
  gap: 18px;
}
.metric-card, .quick-card, .cc-card {
  border: 1px solid rgba(0,116,144,.10);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,40,50,.06);
}
.metric-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
}
.metric-card span, .quick-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--web5-soft);
  color: var(--web5);
  font-size: 1.35rem;
}
.metric-card small {
  display: block;
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.metric-card strong {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
}
.metric-card a {
  color: var(--web5);
  font-weight: 950;
}
.quick-grid {
  margin-top: 20px;
}
.quick-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 18px;
  row-gap: 6px;
  padding: 22px;
}
.quick-card strong, .quick-card span {
  display: block;
}
.quick-card i {
  grid-row: 1 / span 2;
}
.quick-card strong {
  align-self: end;
  font-size: 1.02rem;
  line-height: 1.2;
}
.quick-card span {
  grid-column: 2;
  color: var(--muted);
  line-height: 1.45;
}
.cc-home-support {
  display: grid;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(0, 116, 144, .12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 20%, rgba(158, 232, 243, .35), transparent 26%),
    linear-gradient(135deg, #fff, #eef9fb);
  box-shadow: 0 18px 45px rgba(0,40,50,.06);
}
.cc-home-support h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.12;
}
.cc-home-support p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cc-page-title {
  position: relative;
  overflow: hidden;
  padding: 52px 0 48px;
  background:
    radial-gradient(circle at 86% 12%, rgba(158,232,243,.26), transparent 28%),
    radial-gradient(circle at 72% 72%, rgba(0,116,144,.34), transparent 34%),
    linear-gradient(135deg, #071417 0%, #0b3039 52%, #081012 100%);
  color: #fff;
}
.cc-page-title:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(158, 232, 243, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 232, 243, .055) 1px, transparent 1px);
  background-size: 72px 72px;
}
.cc-page-title .cc-container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-items: center;
}
.cc-page-title h1 {
  max-width: 760px;
  margin: 12px 0 6px;
  color: #fff;
  font-size: clamp(2.5rem, 5.6vw, 4.35rem);
  line-height: 1;
}
.cc-page-title h1:before {
  content: "Central do Cliente";
  width: fit-content;
  display: flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(158,232,243,.15);
  color: #9ee8f3;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.cc-title-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.cc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 850;
}
.cc-breadcrumb a,
.cc-breadcrumb span {
  color: inherit;
}
.cc-breadcrumb i {
  color: #9ee8f3;
}
.cc-title-actions .cc-btn {
  flex: 0 0 auto;
  margin-bottom: 8px;
}
.cc-panel {
  padding: 26px;
}
.cc-info {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #063946, #007490);
  color: #fff;
}
.cc-info h2 { margin: 0 0 8px; }
.cc-info p { margin: 8px 0 0; color: rgba(255,255,255,.82); }
.cc-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}
th, td {
  padding: 15px 16px;
  border-bottom: 1px solid #e9eef1;
  text-align: left;
}
th {
  color: #22303a;
  font-size: .82rem;
  text-transform: uppercase;
}
tbody tr:nth-child(odd) { background: #f7fafb; }
.status-pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dff8ea;
  color: #075b32;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.status-pill.paid {
  background: #e8f6f9;
  color: var(--web5);
}
.table-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  color: var(--muted);
}
.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}
.pagination .page-item {
  width: 36px;
  height: 36px;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.cc-pagination-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cc-pagination-total {
  color: var(--muted);
}
.cc-pagination-total strong {
  color: var(--web5);
}
.pagination a,
.pagination .page-link {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--web5);
  background: #fff;
  font-weight: 800;
  line-height: 1;
  padding: 0 !important;
  box-shadow: none !important;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.pagination .active,
.pagination .active .page-link {
  color: #fff;
  background: transparent;
}
.pagination .page-item.active .page-link {
  width: 36px;
  height: 36px;
  color: #fff;
  background: var(--web5);
  border-color: var(--web5);
  transform: none;
}
.pagination .page-item:not(.disabled):not(.active) .page-link:hover,
.pagination > a:not(.disabled):not(.active):hover {
  background: var(--web5-soft);
  border-color: rgba(0, 116, 144, .30);
  color: var(--web5-strong);
  transform: translateY(-1px);
}
.pagination .disabled .page-link {
  opacity: .45;
  pointer-events: none;
}
.pagination i {
  font-size: .92rem;
  line-height: 1;
}
.cc-form {
  display: grid;
  gap: 18px;
}
#CentralCliente section.position-relative > .container > form,
#CentralCliente section.pt-grey-background > .container,
#CentralCliente .cc-card.cc-panel {
  border: 1px solid rgba(0, 116, 144, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,40,50,.06);
}
#CentralCliente section.position-relative > .container > form {
  padding: 26px;
}
#CentralCliente section.pt-grey-background > .container {
  padding: 26px;
}
#CentralCliente section.pt-grey-background .pt-section-title-1 {
  margin-bottom: 22px;
}
#CentralCliente section.pt-grey-background {
  padding: 34px 0 12px !important;
}
#CentralCliente section.position-relative {
  padding: 24px 0 36px !important;
}
.form-grid {
  display: grid;
  gap: 18px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 780;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ccd8dd;
  border-radius: 12px;
  padding: 10px 13px;
  background: #fff;
  color: #27353d;
  font: inherit;
}
textarea { min-height: 190px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--web5);
  box-shadow: 0 0 0 4px rgba(0,116,144,.12);
}
.editor-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #ccd8dd;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  padding: 0 14px;
  background: #fff;
}
.editor-bar + textarea {
  border-radius: 0 0 12px 12px;
}
.ticket-head {
  display: grid;
  gap: 16px;
}
.ticket-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.interaction {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.interaction header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #f7fafb;
  border-bottom: 1px solid var(--line);
}
.interaction span {
  align-self: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--web5);
  color: #fff;
  font-size: .75rem;
  font-weight: 950;
}
.interaction .client {
  background: #f4b400;
  color: #111;
}
.interaction p { margin: 18px; }
.response-panel {
  margin-top: 42px;
}
.alert-note {
  padding: 14px 16px;
  border: 1px solid #ffe3a3;
  border-radius: 14px;
  background: #fff3cd;
  color: #7a5700;
}
.icon-btn {
  min-width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #26323a;
  text-decoration: none;
}
.icon-btn.danger { background: #e83e4d; }
.icon-btn.action {
  width: auto;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  font-weight: 850;
}
.icon-btn.action + .icon-btn.action {
  margin-left: 6px;
}
.icon-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-contact-action {
  min-width: 38px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .25rem;
  padding: .25rem .5rem;
}
.btn-contact-action + .btn-contact-action {
  margin-left: 6px;
}
.doc-btn {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}
.doc-btn.nfse {
  background: #ffc107;
  color: #332600;
}
.doc-btn.receipt {
  background: var(--web5);
}
.view-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--web5-soft);
  color: var(--web5);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}
.view-btn:hover {
  background: var(--web5);
  color: #fff;
}
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.cc-modal.is-open {
  display: flex;
}
.cc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 17, .58);
}
.cc-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
  max-height: calc(100svh - 44px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .26);
}
.cc-modal-head {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}
.cc-modal-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  text-transform: uppercase;
}
.cc-modal-head button {
  border: 0;
  background: transparent;
  color: #777;
  font-size: 1.15rem;
  cursor: pointer;
}
.cc-modal-body {
  display: grid;
  gap: 16px;
  padding: 22px 16px 30px;
}
.cc-modal-body label {
  align-content: start;
}
.modal-alert {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 116, 144, .16);
  border-radius: 14px;
  background: var(--web5-soft);
  color: var(--web5);
  font-weight: 850;
}
.cc-modal-body small {
  display: block;
  min-height: 16px;
  margin-top: -2px;
  color: #e83e4d;
  font-size: .76rem;
  font-weight: 700;
}
.cc-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .modal-contact-grid { grid-template-columns: 235px minmax(0, 1fr); }
  .modal-contact-grid-3 { grid-template-columns: 170px 170px minmax(0, 1fr); align-items: end; }
}
.login-page {
  min-height: 100svh;
  background: #fff;
}
.login-shell {
  min-height: 100svh;
  display: grid;
}
.login-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 6vw, 78px);
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 116, 144, .88), rgba(6, 57, 70, .88)), url("../../assets/og-web5.jpg") center / cover no-repeat;
}
.login-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .35;
}
.login-brand-card, .login-welcome {
  position: relative;
  z-index: 1;
}
.login-brand-card {
  width: min(720px, 100%);
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .12);
}
.login-brand-card img {
  width: 210px;
}
.login-social {
  display: flex;
  gap: 18px;
}
.login-social a {
  color: #071011;
  font-size: 1.1rem;
}
.login-welcome {
  max-width: 640px;
  margin-top: 90px;
}
.login-welcome h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.05;
}
.login-welcome p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 850;
  color: rgba(255, 255, 255, .94);
}
.login-form-area {
  display: grid;
  place-items: center;
  padding: 38px 24px;
  background: #fff;
}
.login-form {
  width: min(610px, 100%);
  display: grid;
  gap: 18px;
}
.login-form .cc-kicker {
  width: fit-content;
  margin-inline: auto;
  background: var(--web5-soft);
  color: var(--web5);
}
.login-form h2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.forgot-link {
  justify-self: center;
  margin: 72px 0 8px;
  color: #22303a;
}
.forgot-link:hover {
  color: var(--web5);
}
.login-form .cc-btn {
  width: 100%;
  min-height: 58px;
  border-radius: 5px;
}
.login-cyber {
  min-height: 100svh;
  background: #071011;
}
.cyber-shell {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  display: grid;
  overflow: hidden;
  margin: 0 !important;
  background:
    radial-gradient(circle at 18% 18%, rgba(54, 255, 255, .18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(0, 116, 144, .26), transparent 24%),
    linear-gradient(135deg, #071011 0%, #063946 52%, #071011 100%);
  color: #fff;
}
.cyber-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(158, 232, 243, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 232, 243, .065) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}
.cyber-brand-panel, .cyber-login-panel {
  position: relative;
  z-index: 1;
}
.cyber-brand-panel {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: clamp(14px, 2.4vh, 26px);
  padding: clamp(18px, 3.2vh, 42px) clamp(24px, 4vw, 70px);
}
.cyber-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cyber-top img {
  width: min(300px, 42vh, 58vw);
}
.cyber-social {
  display: flex;
  gap: 10px;
}
.cyber-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(158, 232, 243, .24);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  color: #9ee8f3;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}
.cyber-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(158, 232, 243, .72);
  background: linear-gradient(135deg, rgba(158, 232, 243, .22), rgba(0, 116, 144, .30));
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 184, 216, .18);
}
.cyber-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(158, 232, 243, .14);
  color: #9ee8f3;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.cyber-kicker.dark {
  background: var(--web5-soft);
  color: var(--web5);
}
.cyber-copy {
  max-width: 760px;
  align-self: center;
  transform: translateY(-1vh);
}
.cyber-copy h1 {
  margin: clamp(10px, 1.8vh, 18px) 0 clamp(8px, 1.6vh, 16px);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
}
.cyber-copy p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.12rem;
}
.cyber-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  align-self: end;
  margin-bottom: clamp(18px, 4vh, 46px);
}
.cyber-tools span {
  min-height: clamp(48px, 7vh, 64px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border: 1px solid rgba(158, 232, 243, .20);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-weight: 850;
}
.cyber-tools i {
  color: #9ee8f3;
  font-size: 1.2rem;
}
.cyber-login-panel {
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vh, 42px) clamp(20px, 4vw, 70px);
}
.cyber-login-card {
  position: relative;
  width: min(520px, 100%);
  display: grid;
  gap: clamp(10px, 1.8vh, 18px);
  padding: clamp(20px, 3vh, 36px);
  max-height: calc(100dvh - 32px);
  border: 1px solid rgba(158, 232, 243, .20);
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
.login-lock {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--web5), var(--web5-strong));
  color: #fff;
  font-size: 1.35rem;
}
.cyber-login-card h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.02;
}
.cyber-login-card p {
  margin: -6px 0 8px;
  color: var(--muted);
}
.cyber-login-card label {
  color: #22303a;
}
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .92rem;
}
.remember {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
}
.remember input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}
.login-row a {
  color: var(--web5);
  font-weight: 850;
}
.cyber-login-card .cc-btn {
  width: 100%;
  min-height: clamp(46px, 6.4vh, 56px);
}
.cyber-login-card small {
  color: var(--muted);
  text-align: center;
}
.password-dialog {
  width: min(500px, 100%);
}
.password-body {
  display: grid;
  gap: 22px;
  padding: 22px 16px 16px;
}
.password-body p {
  margin: 0;
  color: #555;
  text-align: center;
}
.password-request {
  display: grid;
  gap: 10px;
}
.password-request .cc-btn {
  min-height: 48px;
}
.cc-footer {
  margin-top: 0;
  padding: 18px 0;
  background: linear-gradient(135deg, #063946, #007490);
  color: rgba(255,255,255,.82);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-inner img {
  width: 132px;
  max-height: 62px;
  object-fit: contain;
}
.back-top {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.back-top:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
}
.cc-floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #16b85f;
  color: #fff;
  box-shadow: 0 18px 38px rgba(22, 184, 95, .30);
  font-size: 1.65rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cc-floating-whatsapp:hover {
  background: #0fa852;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(22, 184, 95, .38);
}
@media (min-width: 760px) {
  .dashboard-grid { grid-template-columns: 1fr 360px; }
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .cc-home-support { grid-template-columns: 1fr auto; }
  .form-2 { grid-template-columns: repeat(2, 1fr); }
  .form-3 { grid-template-columns: repeat(3, 1fr); }
  .form-4 { grid-template-columns: 1fr 1fr 1.3fr .7fr; }
  .form-ticket { grid-template-columns: 300px 1fr; }
  .form-address { grid-template-columns: 190px 1fr 160px; }
}
@media (min-width: 980px) {
  .login-shell {
    grid-template-columns: 1.02fr 1fr;
  }
  .login-visual {
    min-height: 100svh;
  }
  .cyber-shell {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  }
  .cyber-brand-panel {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
  }
}
@media (min-width: 620px) {
  .password-request {
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 1050px) {
  .cc-menu-btn { display: grid; place-items: center; }
  .cc-nav {
    position: absolute;
    inset: 100% 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .cc-nav.open { display: flex; }
  .cc-dropdown > div {
    position: static;
    display: grid;
    min-width: 0;
    box-shadow: none;
    background: #f7fbfc;
  }
}
@media (max-width: 759px) {
  .cc-header-inner {
    height: 68px;
    min-height: 68px;
  }
  .cc-brand img { width: 130px; }
  .cc-dashboard-hero { padding: 30px 0; }
  .payment-panel { min-height: 0; }
  .metric-card {
    grid-template-columns: 52px 1fr;
  }
  .metric-card a {
    grid-column: 2;
  }
  .quick-card {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .cc-page-title { padding: 34px 0 30px; }
  .cc-page-title .cc-container { gap: 12px; }
  .cc-page-title h1 {
    margin-top: 8px;
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }
  .cc-title-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .cc-title-actions .cc-btn { margin-bottom: 0; }
  .cc-panel { padding: 18px; }
  #CentralCliente .container.p-0 .card-header,
  #CentralCliente .cc-interaction-meta {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  #CentralCliente .cc-interaction-meta strong {
    text-align: left;
  }
  #CentralCliente .cc-reopen-alert {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .table-actions, .ticket-summary, .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .login-brand-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .login-brand-card img {
    width: 180px;
  }
  .forgot-link {
    margin-top: 28px;
  }
  .cyber-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .cyber-tools {
    grid-template-columns: 1fr;
  }
  .login-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .login-lock {
    position: static;
    margin-bottom: 2px;
  }
}

/* Compatibility layer for the original PHP templates */
#CentralCliente {
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}
#CentralCliente:not(:has(.cyber-shell)) {
  display: flex;
  flex-direction: column;
}
#CentralCliente:not(:has(.cyber-shell)) .cc-section:last-of-type {
  flex: 1 0 auto;
}
#CentralCliente:has(.cyber-shell) {
  background: #071011;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
#CentralCliente:has(.cyber-shell) .cyber-shell {
  top: 0 !important;
  bottom: 0 !important;
}
#CentralCliente > .cyber-shell:first-child {
  margin-top: 0 !important;
}
#CentralCliente > script + .cyber-shell,
#CentralCliente > .cyber-shell {
  margin-bottom: 0 !important;
}
#CentralCliente .pt-breadcrumb {
  padding: 54px 0 38px;
  background: linear-gradient(180deg, #fff, #eef9fb);
}
#CentralCliente .pt-breadcrumb-title h1,
#CentralCliente .pt-breadcrumb-title h2,
#CentralCliente .pt-breadcrumb-title h3,
#CentralCliente .pt-breadcrumb-title h4,
#CentralCliente .pt-breadcrumb-title h5 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
  color: var(--text);
}
#CentralCliente .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  background: transparent;
  color: var(--web5);
  font-weight: 850;
}
#CentralCliente .breadcrumb a {
  color: var(--web5);
}
#CentralCliente section.position-relative,
#CentralCliente section.pt-grey-background {
  padding: 52px 0;
  background: transparent;
}
#CentralCliente .pt-section-padding.pt-negative-margin {
  padding: 42px 0 !important;
}
#CentralCliente section.pt-grey-background.mt-5,
#CentralCliente .pt-grey-background.mt-5 {
  margin-top: 0 !important;
}
#CentralCliente .pt-negative-margin {
  margin-top: 0 !important;
}
#CentralCliente .pt-blue-background,
#CentralCliente .pt-blue-background {
  border-radius: 22px;
  background: linear-gradient(135deg, #063946, #007490) !important;
  color: #fff;
}
#CentralCliente .pt-counter {
  background: transparent !important;
  padding: 30px !important;
}
#CentralCliente .pt-blue-background .row {
  position: relative;
  z-index: 1;
}
#CentralCliente .pt-background-overley-2 {
  opacity: .14 !important;
  pointer-events: none;
}
#CentralCliente .pt-btn-container {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 30px !important;
}
#CentralCliente .pt-btn-position {
  position: static !important;
  transform: none !important;
}
#CentralCliente .pt-button-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
#CentralCliente .pt-button-block .pt-button {
  min-width: 156px;
  min-height: 48px;
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
#CentralCliente .pt-button-block .pt-button:hover {
  transform: translateY(-2px);
}
#CentralCliente .pt-button-block .pt-button-change-color {
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, #12a6c2, #007490) !important;
}
#CentralCliente .pt-button-close-ticket {
  min-width: 174px !important;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
  color: #fff !important;
}
#CentralCliente .pt-button-close-ticket:hover {
  background: linear-gradient(135deg, #f05252, #991b1b) !important;
}
#CentralCliente .pt-section-title,
#CentralCliente .pt-section-title-1 h5 {
  color: inherit;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
}
#CentralCliente .pt-section-description,
#CentralCliente .pt-icon-list-text {
  color: rgba(255, 255, 255, .84) !important;
}
#CentralCliente .pt-icon-list-ul {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}
#CentralCliente .pt-icon-list-item {
  margin: 9px 0;
}
#CentralCliente .btn-grandient,
#CentralCliente .btn-normal,
#CentralCliente .pt-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--web5), var(--web5-strong)) !important;
  color: #fff !important;
  font-weight: 950;
  text-transform: uppercase;
}
#CentralCliente .table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
#CentralCliente .table thead th {
  border-bottom: 1px solid var(--line);
  color: #22303a;
  font-size: .82rem;
  text-transform: uppercase;
}
#CentralCliente .table td,
#CentralCliente .table th {
  padding: 15px 16px;
  vertical-align: middle;
}
#CentralCliente .table-striped tbody tr:nth-of-type(odd) {
  background: #f7fafb;
}
#CentralCliente .card {
  border: 1px solid rgba(0, 116, 144, .10);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,40,50,.06);
}
#CentralCliente .form-control {
  min-height: 48px;
  border: 1px solid #ccd8dd;
  border-radius: 12px;
  padding: 10px 13px;
}
#CentralCliente .form-control:focus {
  border-color: var(--web5);
  box-shadow: 0 0 0 4px rgba(0,116,144,.12);
}
#CentralCliente .modal-content {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}
#CentralCliente .modal-header,
#CentralCliente .modal-footer {
  border-color: var(--line);
}
#CentralCliente .modal-footer {
  gap: 10px;
}
#CentralCliente .modal-footer .btn,
#CentralCliente .modal-footer .btn-grandient,
#CentralCliente .modal-footer .btn-normal {
  min-width: 126px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
#CentralCliente .modal-footer .btn-secondary {
  background: #68737c;
  color: #fff;
}
#CentralCliente .modal-footer .btn-secondary:hover {
  background: #56616a;
  color: #fff;
}
#CentralCliente .badge-info,
#CentralCliente .badge-warning {
  border-radius: 999px;
  padding: 5px 9px;
}
#CentralCliente .container.p-0 .card {
  overflow: hidden;
  margin: 26px 0 !important;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,40,50,.045);
}
#CentralCliente .container.p-0 .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: #f7fafb;
  border-bottom: 1px solid var(--line);
}
#CentralCliente .container.p-0 .card-header .badge {
  float: none !important;
  flex: 0 0 auto;
}
#CentralCliente .cc-interaction-meta {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
}
#CentralCliente .cc-interaction-meta span,
#CentralCliente .cc-interaction-meta time {
  color: #304650;
  font-weight: 650;
}
#CentralCliente .cc-interaction-meta strong {
  display: inline;
  color: var(--text);
  overflow-wrap: anywhere;
}
#CentralCliente .container.p-0 .card-body {
  padding: 20px;
}
#CentralCliente .cc-reopen-wrap {
  padding-top: 36px !important;
}
#CentralCliente .cc-reopen-alert {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #f2dfaa;
  border-radius: 14px;
  padding: 14px 20px;
  background: #fff8df;
  color: #745b18;
  font-weight: 500;
  box-shadow: none;
}
#CentralCliente .cc-reopen-alert i {
  color: #a67c00;
  font-size: 1.25rem;
}
#CentralCliente .cc-inline-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  white-space: nowrap;
}
#CentralCliente .cc-inline-label label {
  margin-bottom: 0;
}
#CentralCliente .cc-field-hint {
  display: inline-flex;
  margin-left: 0;
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}
#CentralCliente .cc-email-label {
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}
#CentralCliente .cc-email-label small {
  white-space: nowrap;
}

@media (max-width: 759px) {
  #CentralCliente:has(.cyber-shell) {
    height: auto;
    min-height: 100dvh;
    overflow: auto;
  }

  #CentralCliente:has(.cyber-shell) .cyber-shell {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 100dvh;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .cyber-shell:before {
    mask-image: none;
    opacity: .72;
  }

  .cyber-brand-panel {
    height: auto;
    min-height: 0;
    grid-template-rows: auto auto auto;
    gap: 20px;
    padding: 24px 18px 18px;
  }

  .cyber-top {
    align-items: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cyber-top img {
    width: min(260px, 72vw);
  }

  .cyber-social {
    justify-content: center;
  }

  .cyber-social a {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .cyber-copy {
    max-width: 100%;
    align-self: auto;
    text-align: center;
    transform: none;
  }

  .cyber-copy .cyber-kicker {
    margin-inline: auto;
  }

  .cyber-copy h1 {
    margin: 14px auto 10px;
    max-width: 360px;
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.04;
  }

  .cyber-copy p {
    max-width: 360px;
    margin-inline: auto;
    font-size: .98rem;
    line-height: 1.5;
  }

  .cyber-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
  }

  .cyber-tools span {
    min-height: 46px;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    padding: 10px 8px;
    font-size: .9rem;
  }

  .cyber-login-panel {
    height: auto;
    min-height: 0;
    padding: 10px 14px 28px;
    place-items: start center;
  }

  .cyber-login-card {
    width: 100%;
    max-height: none;
    gap: 13px;
    border-radius: 22px;
    padding: 22px 18px;
  }

  .login-lock {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 1.15rem;
  }

  .cyber-login-card .cyber-kicker.dark {
    max-width: calc(100% - 58px);
  }

  .cyber-login-card h2 {
    max-width: calc(100% - 58px);
    font-size: clamp(1.8rem, 9vw, 2.25rem);
  }

  .cyber-login-card p {
    margin: -4px 0 4px;
    font-size: .95rem;
  }

  .g-recaptcha {
    max-width: 100%;
    overflow: hidden;
    transform: scale(.92);
    transform-origin: left top;
    margin-bottom: -6px;
  }

  .login-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .login-row a {
    width: fit-content;
  }

  .cyber-login-card .cc-btn {
    min-height: 50px;
  }

  .password-dialog {
    width: calc(100% - 24px);
  }
}
