@charset "UTF-8";
/*Google font*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* Variaveis globais: trocando essas cores e medidas voce reaproveita o template em outro cliente. */
  --bg: #000000;
  --btn: #ff6b00;
  --fontcor: #fff;
  --bgdegrad: linear-gradient(to right, #241437, #0d0214);
}
* {
  margin: 0;
  padding: 0;
  outline: none;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}
a {
  text-decoration: none !important;
}
.auth-page,
.admin-page {
  min-height: 100vh;
  background: #100819;
  color: #ffffff;
}
.auth-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background-image: url(../assets/img/bg-03.png);
  background-position: center;
  background-size: cover;
}
.auth-panel {
  width: min(100%, 430px);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(13, 2, 20, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}
.auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.auth-brand img,
.admin-brand img {
  height: 44px;
  width: auto;
}
.auth-copy {
  margin-bottom: 26px;
}
.auth-kicker {
  margin: 0 0 8px;
  color: var(--btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.auth-copy h1,
.admin-welcome h1 {
  margin: 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
.auth-form {
  display: grid;
  gap: 18px;
}
.auth-form label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}
.auth-form .form-control {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}
.auth-form .form-control:focus {
  border-color: var(--btn);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.18);
  color: #ffffff;
}
.auth-form .btn-success {
  width: 100%;
  margin-top: 4px;
}
.auth-back {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
.auth-back:hover {
  color: #ffffff;
}
.admin-layout-simple {
  min-height: 100vh;
  background: #0e0216;
}
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(10, 1, 16, 0.94);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.admin-topbar .admin-brand {
  display: flex;
  align-items: center;
}
.admin-topbar .admin-brand img {
  height: 42px;
}
.admin-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.8vw, 38px);
  margin-left: auto;
}
.admin-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.admin-nav a.active,
.admin-nav a:hover {
  color: var(--btn);
}
.admin-nav i {
  display: none;
}
.admin-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: var(--btn);
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}
.admin-logout:hover {
  color: #6d18c3;
}
.production-page {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}
.production-page h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  text-align: center;
}
.production-board {
  width: min(100%, 720px);
  min-height: 330px;
  margin: 0 auto;
  padding: 24px 38px 24px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background: #e6e6e6;
  color: #000000;
  display: grid;
  gap: 15px;
}
.production-row,
.production-line {
  display: flex;
  align-items: center;
  gap: 18px;
}
.production-row {
  min-width: 0;
}
.production-row-wide label {
  width: 118px;
  text-align: right;
}
.production-line-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 18px;
}
.production-line-split .production-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.production-line-split .production-row label,
.production-line-colors .production-row:first-child label {
  width: auto;
  text-align: right;
}
.production-row label {
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}
.production-row input {
  height: 40px;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #222222;
  font-size: 22px;
  font-weight: 400;
  padding: 0 18px;
}
.production-row input::placeholder {
  color: #969696;
}
.production-row input:focus {
  outline: 3px solid rgba(255, 107, 0, 0.45);
}
.production-row input[readonly] {
  cursor: default;
}
.production-row-wide input {
  flex: 1;
}
.production-line .production-row {
  flex: 0 1 auto;
}
.production-line-split input {
  width: 100%;
}
.production-line-colors {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 16px;
}
.production-line-colors .production-row {
  grid-template-columns: 118px 46px;
}
.production-line-colors .production-row:last-child {
  grid-template-columns: auto 46px;
}
.production-row .mini-input {
  width: 46px;
  padding: 0 8px;
  text-align: center;
}
.color-slots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.color-option {
  position: relative;
  display: inline-flex;
  margin: 0;
  cursor: pointer;
}
.color-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.color-option span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 2px #ffffff;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease;
}
.color-option:hover span,
.color-option input:checked + span {
  transform: translateY(-1px) scale(1.08);
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 5px #7b18d6;
}
.color-option input:focus-visible + span {
  outline: 3px solid rgba(255, 107, 0, 0.55);
  outline-offset: 4px;
}
.production-board button {
  justify-self: center;
  width: min(100%, 360px);
  height: 54px;
  margin-top: 6px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.production-board button:hover {
  background: var(--btn);
}
.sequence-page {
  width: min(820px, calc(100% - 32px));
}
.sequence-summary {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}
.sequence-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}
.production-alert {
  width: min(100%, 760px);
  margin: 0 auto 18px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.production-alert-success {
  background: #e9ffd2;
  border: 1px solid rgba(79, 150, 18, 0.28);
}
.production-alert-error {
  background: #ffe9e9;
  border: 1px solid rgba(230, 50, 50, 0.28);
}
.sequence-board {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 24px 38px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background: #e6e6e6;
  color: #000000;
}
.sequence-board fieldset {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}
.sequence-board legend {
  width: auto;
  margin: 0 10px 0 0;
  color: #000000;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}
.sequence-type {
  position: relative;
  display: inline-flex;
  margin: 0;
  cursor: pointer;
}
.sequence-type input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sequence-type span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 2px solid #7b18d6;
  border-radius: 999px;
  background: #ffffff;
  color: #7b18d6;
  font-weight: 800;
}
.sequence-type input:checked + span {
  background: #7b18d6;
  color: #ffffff;
}
.sequence-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 16px 18px;
  margin-bottom: 20px;
}
.sequence-mode-panel {
  display: none;
  margin-bottom: 20px;
}
.sequence-mode-panel.is-active {
  display: block;
}
.sequence-mode-panel .sequence-grid {
  margin-bottom: 0;
}
.sequence-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.sequence-row:nth-child(2),
.sequence-row:nth-child(4) {
  grid-template-columns: 34px minmax(0, 1fr);
}
.sequence-row label {
  margin: 0;
  color: #000000;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  text-align: right;
}
.sequence-row input {
  width: 100%;
  height: 40px;
  border: 0;
  background: #ffffff;
  color: #222222;
  font-size: 22px;
  padding: 0 16px;
}
.sequence-row input::placeholder {
  color: #969696;
}
.sequence-row input:focus {
  outline: 3px solid rgba(255, 107, 0, 0.45);
}
.sequence-color-list {
  display: grid;
  gap: 14px;
}
.sequence-color-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.sequence-color-row .sequence-row {
  grid-template-columns: 42px minmax(0, 1fr);
}
.sequence-color-dot {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 2px solid #000000;
  border-radius: 50%;
}
.layout-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}
.layout-upload {
  display: grid;
  place-items: center;
  min-height: 118px;
  margin: 0;
  padding: 16px;
  border: 2px dashed rgba(0, 0, 0, 0.28);
  background: #ffffff;
  color: #7b18d6;
  text-align: center;
  cursor: pointer;
}
.layout-upload input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.layout-upload span {
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}
.layout-upload small {
  display: block;
  margin-top: 8px;
  color: #666666;
  font-size: 13px;
  font-weight: 800;
}
.sequence-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.sequence-actions a {
  color: #7b18d6;
  font-size: 16px;
  font-weight: 800;
}
.sequence-actions button {
  width: min(100%, 360px);
  height: 54px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.sequence-actions button:hover {
  background: var(--btn);
}
.preview-page {
  width: min(920px, calc(100% - 32px));
}
.preview-board {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 24px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background: #e6e6e6;
}
.preview-list {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}
.wristband-preview {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 150px;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  overflow: hidden;
}
.wristband-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #140820;
}
.wristband-brand img {
  width: 72px;
  height: auto;
}
.wristband-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  color: #000000;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}
.wristband-layout span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wristband-layout img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wristband-code {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 44px;
  padding: 4px 10px;
  border-left: 1px dashed rgba(0, 0, 0, 0.28);
  color: #000000;
}
.wristband-code span {
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: 800;
}
.wristband-code small {
  color: #555555;
  font-size: 9px;
  font-weight: 800;
}
.wristband-color {
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  height: 100%;
}
.preview-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.preview-actions form {
  width: min(100%, 360px);
}
.preview-actions a {
  color: #7b18d6;
  font-size: 16px;
  font-weight: 800;
}
.preview-actions button {
  width: 100%;
  height: 54px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.preview-actions button:hover {
  background: var(--btn);
}
.db-test-page {
  width: min(720px, calc(100% - 32px));
}
.db-test-card {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 26px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  background: #e6e6e6;
  color: #000000;
}
.db-test-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  padding: 0 16px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-weight: 800;
}
.db-test-card.is-ok strong {
  background: #13a85b;
}
.db-test-card.is-error strong {
  background: #e63232;
}
.db-test-card p {
  margin: 0 0 18px;
  color: #222222;
  font-weight: 700;
}
.db-test-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
}
.db-test-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.db-test-card dt,
.db-test-card dd {
  margin: 0;
}
.db-test-card dt {
  font-weight: 800;
}
.db-test-card pre {
  white-space: pre-wrap;
  margin: 0 0 20px;
  padding: 14px;
  background: #ffffff;
  color: #222222;
}
.db-test-card a {
  color: #7b18d6;
  font-weight: 800;
}
.events-page {
  width: min(1120px, calc(100% - 32px));
}
.events-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.events-heading h1 {
  margin: 0;
  text-align: left;
}
.events-heading a {
  color: #aaff00;
  font-weight: 800;
}
.event-detail-header a,
.events-table a {
  color: #7b18d6;
  font-weight: 800;
}
.events-table-wrap,
.event-detail {
  width: 100%;
  margin: 0 auto 22px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background: #e6e6e6;
  color: #1f1f1f;
  overflow: hidden;
}
.events-table {
  width: 100%;
  border-collapse: collapse;
}
.events-table th,
.events-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}
.events-table th {
  background: #d8d8d8;
  color: #000000;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.events-table td {
  font-size: 15px;
  font-weight: 700;
}
.events-table td strong,
.events-table td small {
  display: block;
}
.events-table td small {
  margin-top: 3px;
  color: #666666;
  font-size: 12px;
}
.events-table tr:last-child td {
  border-bottom: 0;
}
.clients-table th,
.clients-table td {
  padding: 12px 14px;
}
.clients-table th:nth-child(2),
.clients-table th:nth-child(3),
.clients-table td:nth-child(2),
.clients-table td:nth-child(3) {
  width: 120px;
  text-align: center;
}
.clients-table th:last-child,
.clients-table td:last-child {
  width: 260px;
  text-align: right;
}
.clients-table .user-actions {
  justify-content: flex-end;
}
.event-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(123, 24, 214, 0.12);
  color: #5f13a8;
  font-size: 13px;
  font-weight: 900;
}
.events-empty {
  padding: 24px;
  text-align: center;
  font-weight: 800;
}
.event-detail {
  padding: 22px;
}
.event-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.event-detail-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.event-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}
.event-detail-actions a + a {
  background: #ffffff;
  color: #7b18d6;
}
.event-detail-header span {
  color: #666666;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-detail-header h2 {
  margin: 4px 0 0;
  color: #000000;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
}
.event-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
}
.event-stats div {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
}
.event-stats dt,
.event-stats dd {
  margin: 0;
}
.event-stats dt {
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-stats dd {
  margin-top: 5px;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
}
.event-detail h3 {
  margin: 0 0 12px;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
}
.event-links {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}
.event-links div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 92px 70px 112px;
  align-items: center;
  gap: 12px;
}
.event-links label {
  margin: 0;
  color: #555555;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-links input {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  padding: 0 12px;
}
.event-links button,
.event-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.event-links form {
  margin: 0;
}
.event-links form button {
  width: 100%;
}
.event-links a {
  background: #ffffff;
  color: #7b18d6;
  text-decoration: none;
}
.event-test-panel {
  margin: 0 0 22px;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
}
.event-test-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.event-test-header span {
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-test-header h3 {
  margin: 4px 0 0;
}
.event-test-header > strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(19, 168, 91, 0.14);
  color: #08783e;
  font-size: 13px;
  font-weight: 900;
}
.event-test-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.event-test-grid div {
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  background: #f2f2f2;
}
.event-test-grid span {
  display: block;
  color: #666666;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-test-grid strong {
  display: block;
  margin-top: 5px;
  color: #000000;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}
.event-test-grid .is-ready {
  border: 1px solid rgba(19, 168, 91, 0.22);
}
.event-test-grid .is-pending {
  border: 1px solid rgba(230, 50, 50, 0.22);
}
.event-test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.event-test-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.event-maintenance {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 14px;
  margin: 0 0 22px;
}
.event-maintenance-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
}
.event-maintenance-card > div {
  flex: 1 1 240px;
  min-width: 0;
}
.event-maintenance-card h3 {
  margin: 0 0 6px;
}
.event-maintenance-card p {
  margin: 0;
  color: #666666;
  font-size: 13px;
  line-height: 1.45;
}
.event-extra-form {
  flex: 1 1 360px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: end;
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.event-extra-form label {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #000000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.event-extra-form input,
.event-extra-form select {
  width: 100%;
  height: 42px;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  padding: 0 10px;
}
.event-extra-form button,
.event-danger-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  white-space: normal;
  text-align: center;
}
.event-danger-card {
  border: 1px solid rgba(230, 50, 50, 0.18);
  background: #fff7f7;
}
.event-danger-card form {
  margin: 0;
}
.event-danger-card button {
  background: #d62f2f;
}
.user-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
  padding: 22px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background: #e6e6e6;
  color: #111111;
}
.user-form div {
  display: grid;
  gap: 7px;
}
.user-form label {
  margin: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.user-form input,
.user-form select {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #222222;
  font-size: 16px;
  font-weight: 700;
  padding: 0 12px;
}
.user-form input:focus,
.user-form select:focus {
  outline: 3px solid rgba(255, 107, 0, 0.45);
}
.user-form button {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 300px);
  height: 50px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}
.user-form button:hover {
  background: var(--btn);
}
.user-cancel {
  grid-column: 1 / -1;
  justify-self: center;
  color: #7b18d6;
  font-weight: 900;
}
.user-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.user-actions a,
.user-actions button,
.user-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(123, 24, 214, 0.12);
  color: #5f13a8;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.user-actions form {
  margin: 0;
}
.user-actions button {
  background: rgba(230, 50, 50, 0.14);
  color: #b21f1f;
  cursor: pointer;
}
.user-actions span {
  background: #f2f2f2;
  color: #666666;
}
.event-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 18px;
  margin-bottom: 22px;
}
.event-color-list,
.event-layout-list,
.event-wristbands {
  display: grid;
  gap: 10px;
}
.event-color-item,
.event-wristband-row {
  display: grid;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #ffffff;
}
.event-color-item {
  grid-template-columns: 24px minmax(0, 1fr) auto;
}
.event-color-item span,
.event-color-dot {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
}
.event-color-dot-muted {
  background: #d8d8d8;
  opacity: 0.35;
}
.event-color-item small {
  color: #666666;
  font-weight: 800;
}
.event-layout-list {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}
.event-layout-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
}
.event-wristband-row {
  grid-template-columns: 24px 70px minmax(0, 1fr) 86px;
}
.event-wristband-row code {
  min-width: 0;
  overflow: hidden;
  color: #5f13a8;
  font-size: 13px;
  text-overflow: ellipsis;
}
.checkin-page {
  width: min(760px, calc(100% - 32px));
}
.checkin-card,
.checkin-result {
  width: 100%;
  margin: 0 auto 20px;
  padding: 24px;
  border: 2px solid rgba(0, 0, 0, 0.75);
  border-radius: 8px;
  background: #e6e6e6;
  color: #111111;
}
.checkin-card label {
  display: block;
  margin: 0 0 10px;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
}
.checkin-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
}
.checkin-input-row input {
  width: 100%;
  height: 54px;
  border: 0;
  background: #ffffff;
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  padding: 0 16px;
}
.checkin-input-row input:focus {
  outline: 3px solid rgba(255, 107, 0, 0.45);
}
.checkin-input-row button {
  height: 54px;
  border-radius: 999px;
  background: #7b18d6;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}
.checkin-input-row button:hover {
  background: var(--btn);
}
.checkin-result {
  background: #ffffff;
}
.checkin-result > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
}
.checkin-result.is-ok > strong {
  background: #13a85b;
}
.checkin-result.is-warning > strong {
  background: #ff9d00;
}
.checkin-result.is-error > strong {
  background: #e63232;
}
.checkin-result dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.checkin-result dl div {
  padding: 14px;
  border-radius: 8px;
  background: #f2f2f2;
}
.checkin-result dt,
.checkin-result dd {
  margin: 0;
}
.checkin-result dt {
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.checkin-result dd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
}
.checkin-result dd.checkin-number {
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}
.public-validate-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #1e1d1c;
}
.public-validate-card {
  width: min(100%, 430px);
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  text-align: center;
}
.public-validate-card img {
  width: 170px;
  margin-bottom: 22px;
}
.public-logo-link {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 22px;
}
.public-logo-link img {
  display: block;
  width: 190px;
  max-width: 100%;
  margin-bottom: 0;
}
.public-validate-card > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}
.public-validate-card > strong.is-ok {
  background: #13a85b;
}
.public-validate-card > strong.is-warning {
  background: #ff9d00;
}
.public-validate-card > strong.is-error {
  background: #e63232;
}
.public-validate-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}
.public-validate-card dl div {
  padding: 12px;
  border-radius: 8px;
  background: #f2f2f2;
}
.public-validate-card dt,
.public-validate-card dd {
  margin: 0;
}
.public-validate-card dt {
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.public-validate-card dd {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
}
.public-validate-card dd.public-validate-number {
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}
.public-validate-card p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  font-weight: 700;
}
.public-dashboard,
.public-gate {
  width: min(100%, 760px);
  color: #111111;
}
.public-gate {
  width: min(100%, 530px);
}
.public-dashboard > img,
.public-gate > img {
  display: block;
  width: 190px;
  margin: 0 auto 22px;
}
.public-dashboard-header {
  margin-bottom: 18px;
  color: #ffffff;
  text-align: center;
}
.public-dashboard-header span {
  color: #aaff00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.public-dashboard-header h1 {
  margin: 4px 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 900;
}
.public-dashboard-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}
.public-progress,
.public-stats,
.public-latest,
.public-wristbands {
  margin-bottom: 16px;
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
}
.public-progress strong {
  display: block;
  margin-bottom: 10px;
  color: #7b18d6;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}
.public-progress div {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6e6e6;
}
.public-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #13a85b;
}
.public-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.public-stats div {
  padding: 14px;
  border-radius: 8px;
  background: #f2f2f2;
  text-align: center;
}
.public-stats dt,
.public-stats dd {
  margin: 0;
}
.public-stats dt {
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.public-stats dd {
  margin-top: 4px;
  color: #000000;
  font-size: 28px;
  font-weight: 900;
}
.public-latest h2,
.public-wristbands h2 {
  margin: 0 0 12px;
  color: #000000;
  font-size: 18px;
  font-weight: 900;
}
.public-latest p {
  margin: 0;
  color: #666666;
  font-weight: 800;
}
.public-latest div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 800;
}
.public-wristbands-table {
  overflow-x: auto;
}
.public-wristbands table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.public-wristbands th,
.public-wristbands td {
  padding: 10px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
}
.public-wristbands th {
  color: #666666;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.public-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.public-status-ativo {
  background: rgba(123, 24, 214, 0.12);
  color: #5f13a8;
}
.public-status-usado {
  background: rgba(19, 168, 91, 0.14);
  color: #08783e;
}
.public-status-cancelado {
  background: rgba(230, 50, 50, 0.14);
  color: #b21f1f;
}
.public-gate-form {
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 26px;
  border: 2px solid #d7d7d7;
  background: #ffffff;
}
.public-gate-result {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.public-gate-result > strong {
  min-height: 92px;
  margin-bottom: 28px;
  border-radius: 8px;
  font-size: 34px;
}
.public-gate-result.is-ok > strong {
  background: #4fac66;
}
.public-gate-result.is-warning > strong {
  background: #ffa532;
}
.public-gate-result dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0;
}
.public-gate-result dl div {
  padding: 24px;
  border-radius: 8px;
  background: #f2f2f2;
}
.public-gate-result dt {
  color: #666666;
  font-size: 20px;
}
.public-gate-result dd {
  justify-content: flex-start;
  margin-top: 10px;
  font-size: 28px;
}
.public-gate-result dd.checkin-number {
  font-size: 64px;
}
.public-gate-form.has-result label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.public-gate-form .checkin-input-row {
  grid-template-columns: 1fr;
}
.public-gate-form .checkin-input-row input {
  height: 64px;
  border-color: #f0b985;
  border-radius: 0;
  font-size: 22px;
  text-align: center;
}
.public-gate-form.has-result .checkin-input-row input {
  height: auto;
  border: 0;
  padding: 0 28px;
  color: #1f1f1f;
  font-size: 28px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}
.public-gate-form.has-result .checkin-input-row input:focus {
  outline: 0;
}
.public-gate-form .checkin-input-row button {
  width: 100%;
  height: 64px;
  border: 4px solid #000000;
  font-size: 22px;
}
.gate-camera {
  display: grid;
  gap: 10px;
  margin-top: 0;
}
.gate-camera-panel {
  display: none;
  gap: 12px;
  width: 0;
  height: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}
.public-gate-form:not(.is-camera-active) .gate-camera-panel {
  display: none !important;
}
.public-gate-form.is-camera-active .gate-camera-panel {
  display: grid;
  width: 100%;
  height: auto;
  overflow: visible;
}
.public-gate-form.is-camera-active .checkin-input-row input {
  display: none;
}
.public-gate-form.is-camera-active .checkin-input-row {
  grid-template-columns: 1fr;
}
.gate-camera button {
  justify-self: center;
  min-width: 250px;
  min-height: 54px;
  border: 3px solid #000000;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}
.gate-camera p {
  display: none;
}
.gate-camera-panel p {
  min-height: 20px;
  margin: 0;
  color: #555555;
  font-size: 21px;
  font-weight: 800;
  text-align: center;
}
.gate-camera-panel video {
  display: none;
  width: 100%;
  max-width: 100%;
  max-height: 440px;
  aspect-ratio: 1 / 1;
  justify-self: center;
  border: 3px solid #000000;
  border-radius: 8px;
  background: #000000;
  object-fit: cover;
}
.gate-camera-panel video.is-active {
  display: block;
}
.gate-reset-flash {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 16px;
  border-radius: 8px;
  background: #4fac66;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}
.public-gate-hint {
  margin: 12px 0 0;
  color: #555555;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.btn-success {
  background-color: var(--btn);
  border-radius: 50px;
  border: none;
  font-weight: 600;
  padding: 15px 36px;
  box-shadow: 0 14px 24px rgba(255, 170, 0, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn-success:hover {
  transform: translateY(-2px);
  background-color: #6d18c3;
  box-shadow: 0 14px 24px rgba(123, 0, 255, 0.22);
}
.btn-light {
  color: var(--btn);
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 36px;
  cursor: pointer;
}
.btn-light:hover {
  color: var(--btn);
}
.btn-dark {
  background-color: var(--btn);
  border-radius: 50px;
  border: none;
  font-weight: 600;
  padding: 15px 36px;
  box-shadow: 0 14px 24px rgba(255, 170, 0, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.btn-dark:hover {
  transform: translateY(-2px);
  background-color: #5600ad;
  box-shadow: 0 14px 24px rgba(176, 101, 255, 0.22);
}
/*Título e Subtítulo*/
.section-title {
  margin-bottom: 60px;
  text-align: center;
}
.section-title .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--fontcor);
  line-height: 24px;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 0 15px;
  position: relative;
  padding: 5px 10px;
  z-index: 1;
}
.section-title .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--fontcor);
  z-index: -1;
  border-radius: 5px;
  opacity: 0.1;
}
.section-title .subtitle {
  font-size: 30px;
  line-height: 38px;
  color: var(--fontcor);
  font-weight: 700;
  margin: 0;
}
/*Header*/
.header {
  background: rgba(13, 2, 20, 0.7);
  backdrop-filter: blur(14px);
}
.header .navbar {
  padding: 0;
}
.header .navbar.navbar-light .navbar-brand img {
  height: 42px;
  width: auto;
}
.header .navbar #collapsibleNavbar .nav-item .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-weight: 600;
  padding: 20px 15px 20px;
  line-height: 26px;
  opacity: 0.6;
}
.header .navbar #collapsibleNavbar .nav-item .nav-link.active {
  opacity: 1;
  color: var(--btn);
}
.header .navbar-toggler {
  border: none;
  box-shadow: none !important;
}
/*Início*/
.inicio {
  background-image: url(../assets/img/bg-02.png);
  padding: 250px 0 200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inicio::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 112px;
  background-image: url(../assets/img/shape-bg-B.png);
  background-size: 100% 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
.inicio .hero-content {
  display: grid;
}
.inicio .hero-content h1 {
  font-size: 50px;
  color: #ffffff;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
  margin-top: -50px;
}
.inicio .hero-content p {
  color: #ffffff;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 40px;
  line-height: 28px;
  font-weight: 400;
}
.inicio .hero-produto img {
  max-width: 400px;
  width: 100%;
  position: relative;
  left: 150px;
  top: -50px;
  animation: productani01 5s linear infinite;
}
@keyframes productani01 {
  0%,
  100% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(-15px);
  }
}
.inicio .bg-shapes div {
  position: absolute;
  opacity: 0.08;
}
.inicio .bg-shapes div:nth-child(1) {
  height: 100px;
  width: 100px;
  top: 11%;
  left: 20%;
  background-color: #ffffff;
  border-radius: 50%;
  animation: shapeani01 5s linear infinite;
}
.inicio .bg-shapes div:nth-child(2) {
  height: 80px;
  width: 80px;
  top: 60%;
  left: 60%;
  background-color: transparent;
  border-radius: 50%;
  border: 5px solid #ffffff;
  border-bottom: 5px solid transparent;
  animation: shapeani02 7s linear infinite;
}
.inicio .bg-shapes div:nth-child(3) {
  height: 60px;
  width: 60px;
  top: 10%;
  left: 90%;
  background-color: transparent;
  border-radius: 50%;
  border: 5px solid #ffffff;
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  animation: shapeani02 7s linear infinite;
}
.inicio .bg-shapes div:nth-child(4) {
  height: 200px;
  width: 200px;
  top: 40%;
  left: calc(100% - 100px);
  background-color: #ffffff;
  border-radius: 50%;
  animation: shapeani03 10s linear infinite;
}
.inicio .bg-shapes div:nth-child(5) {
  height: 100px;
  width: 100px;
  top: 40%;
  left: calc(0% - 50px);
  background-color: transparent;
  border: 5px solid #ffffff;
  animation: shapeani02 8s linear infinite;
}
@keyframes shapeani01 {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(50px);
  }
}
@keyframes shapeani02 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shapeani03 {
  0%,
  100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
}
/*Benefícios*/
.beneficio {
  background-color: #110719;
  padding: 80px 0 80px;
}
.beneficio .beneficio-img {
  margin: auto;
}
.beneficio .beneficio-img img {
  max-width: 350px;
  width: 100%;
}
.beneficio .btn-success {
  justify-self: start;
}
.beneficio .section-title {
  text-align: left;
  margin-bottom: 30px;
}
.beneficio .beneficio-content {
  display: grid;
}
.beneficio .beneficio-content p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  margin: 0;
  font-weight: 400;
}
.beneficio .beneficio-content ul {
  display: block;
  margin: 30px 0 0;
}
.beneficio .beneficio-content ul li {
  font-size: 16px;
  line-height: 26px;
  color: var(--fontcor);
  margin-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 400;
  position: relative;
  padding-left: 32px;
}
.beneficio .beneficio-content ul li i {
  color: var(--btn);
  height: 25px;
  width: 25px;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  line-height: 25px;
  position: absolute;
  left: 0;
  top: 0;
}
/*Utilização*/
.ultilizacao {
  padding: 80px 0 80px;
  background: linear-gradient(to bottom, #241437, #0d0214);
}
.ultilizacao .features-item {
  box-shadow: 0 0 10px #401775;
  padding: 40px 30px;
  margin-bottom: 30px;
  background: var(--bgdegrad);
  border: 8px solid #401775;
  border-radius: 5px;
  text-align: center;
  transition: all 0.5s ease;
  width: 100%;
}
.ultilizacao .features-item:hover {
  background-color: #555;
  transform: translateY(-10px);
}
.ultilizacao .features-item .icon {
  margin-bottom: 25px;
}
.ultilizacao .features-item .icon i {
  color: var(--btn);
  font-size: 40px;
  display: inline-block;
  transition: all 0.5s ease;
}
.ultilizacao .features-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #7c23e2;
  margin: 0 0 15px;
  line-height: 30px;
  transition: all 0.5s ease;
}
.ultilizacao .features-item p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  margin: 0;
  transition: all 0.5s ease;
  font-weight: 400;
}
.ultilizacao .features-item:hover .icon i,
.ultilizacao .features-item:hover h3,
.ultilizacao .features-item:hover p {
  color: #ffffff;
}
/*Produtos*/
.produto {
  padding: 80px 0 80px;
  background: linear-gradient(to bottom, #241437, #0d0214);
}
.produto .produto-item {
  box-shadow: 0 0 10px #401775;
  margin: 15px 0;
  border-radius: 12px;
  border: 8px solid #401775;
  overflow: hidden;
  background: var(--bgdegrad);
}
.produto .produto-img {
  border-bottom: 1px solid #7c23e2;
  position: relative;
}
.produto .produto-img .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 1;
}
.produto .produto-item:hover .produto-img .overlay {
  opacity: 1;
}
.produto .produto-img .overlay .btn {
  margin: auto;
  transform: translateY(100px);
  transition: all 0.5s ease;
}
.produto .produto-item:hover .produto-img .overlay .btn {
  transform: translateY(0px);
}
.produto .produto-img .overlay a {
  margin: auto;
}
.produto .produto-img img {
  width: 100%;
  display: block;
}
.produto .produto-content {
  padding: 0 30px;
  text-align: center;
}
.produto .produto-content .preco-produto {
  margin: 15px 0 5px;
}
.produto .produto-content .preco-produto .preco {
  color: var(--btn);
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  margin: 0 5px;
}
.produto .produto-content .nome-produto {
  font-size: 16px;
  font-weight: 600;
  color: var(--fontcor);
  line-height: 26px;
  margin: 0;
  padding-bottom: 20px;
}
.carousel-track {
  --items: 1;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 6px 10px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-slide {
  flex: 0 0 calc((100% - (24px * (var(--items) - 1))) / var(--items));
  min-width: 0;
  scroll-snap-align: start;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.carousel-nav {
  background-color: var(--btn);
  height: 44px;
  width: 44px;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}
.carousel-nav span {
  font-size: 30px;
  line-height: 1;
}
.carousel-nav:hover:not(:disabled) {
  background-color: #401775;
  transform: translateY(-2px);
}
.carousel-nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
/* Depoimentos*/
.depoimentos {
  padding: 80px 0 80px;
  background-image: url("../assets/img/bg-03.png");
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.depoimentos::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.depoimentos .container {
  position: relative;
  z-index: 1;
}
.depoimentos .section-title .subtitle,
.depoimentos .section-title .title {
  color: #ffffff;
}
.depoimentos .section-title .title::before {
  background-color: #ffffff;
}
.depoimentos .testi-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
  height: 100%;
}
.depoimentos .testi-comment p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  font-weight: 400;
  margin: 0 0 10px;
  font-style: italic;
}
.depoimentos .testi-comment p .fa-quote-left {
  color: #6d18c3;
  margin-right: 5px;
}
.depoimentos .testi-comment p .fa-quote-right {
  margin-left: 5px;
  color: #6d18c3;
}
.depoimentos .testi-comment .stars {
  margin: 0 0 20px;
}
.depoimentos .testi-comment .stars li {
  display: inline-block;
  margin: 0 1px;
}
.depoimentos .testi-comment .stars li i {
  font-size: 13px;
  color: #ff9800;
}
.depoimentos .client-info {
  position: relative;
  padding-left: 80px;
  padding-top: 5px;
  min-height: 60px;
}
.depoimentos .client-info img {
  height: 60px;
  width: 60px;
  border: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  border-color: var(--btn);
}
.depoimentos .client-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 26px;
  margin: 0 0 2px;
  color: var(--btn);
}
.depoimentos .client-info p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #555;
}
/*Dúvidas*/
.duvidas {
  padding: 80px 0 80px;
  background-color: #6d18c3;
}
.duvidas .faq-item {
  margin-bottom: 40px;
  border: 8px solid #401775;
  height: 90%;
  padding: 28px 24px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.5);
}
.duvidas .faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #222222;
  margin: 0 0 10px;
}
.duvidas .faq-item p {
  font-size: 16px;
  line-height: 26px;
  color: #555;
  font-weight: 400;
  margin: 0;
}
.duvidas .support-text {
  margin: 15px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--fontcor);
  line-height: 26px;
}
/*Contato*/
.contato {
  background-color: #110719;
  padding: 80px 0 80px;
}
.contato .contact-form .form-group {
  margin-bottom: 20px;
  color: #13653f;
}
.contato .alert-feedback {
  border: none;
  border-radius: 18px;
  padding: 18px 22px;
  margin-bottom: 24px;
  box-shadow: 0 18px 40px rgba(25, 135, 84, 0.14);
  animation:
    alertPulseIn 0.55s ease,
    alertGlowFade 2.8s ease 0.55s 1;
}
.contato .alert-feedback.alert-danger {
  box-shadow: 0 18px 40px rgba(220, 53, 69, 0.14);
}
.contato .alert-feedback strong {
  display: block;
}
.contato .contact-form .form-control {
  height: 50px;
  color: #555;
  border: none;
  border-bottom: 2px solid #d9d9d9;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.contato .contact-form .form-control::placeholder {
  color: #b7b7b7;
  opacity: 1;
}
.contato .contact-form .form-control:focus::placeholder {
  color: #ffffff;
}
.contato .contact-form textarea.form-control {
  height: 120px;
}
.contato .contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--btn);
}
.contato .contact-item {
  position: relative;
  padding-left: 65px;
  margin-bottom: 35px;
}
.contato .contact-form {
  padding-right: 14px;
}
.contato .contact-item:last-child {
  margin-bottom: 0;
}
.contato .contact-item .icon {
  height: 50px;
  width: 50px;
  background-color: #f5f5ff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}
.contato .contact-item .icon i {
  color: var(--btn);
  line-height: 50px;
  font-size: 20px;
}
.contato .contact-item h5 {
  color: var(--btn);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 2px;
}
.contato .contact-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--fontcor);
  margin: 0 0 12px;
}
@keyframes alertPulseIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes alertGlowFade {
  0% {
    box-shadow:
      0 0 0 0 rgba(25, 135, 84, 0.28),
      0 18px 40px rgba(25, 135, 84, 0.16);
  }
  100% {
    box-shadow: 0 18px 40px rgba(25, 135, 84, 0.14);
  }
}
.contato .alert-feedback.alert-danger {
  animation:
    alertPulseIn 0.55s ease,
    alertGlowFadeError 2.8s ease 0.55s 1;
}
@keyframes alertGlowFadeError {
  0% {
    box-shadow:
      0 0 0 0 rgba(220, 53, 69, 0.22),
      0 18px 40px rgba(220, 53, 69, 0.16);
  }
  100% {
    box-shadow: 0 18px 40px rgba(220, 53, 69, 0.14);
  }
}
/* footer Section */
.footer {
  background-color: #000000;
  padding-top: 80px;
  text-align: center;
}
.footer .footer-logo a {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  display: block;
  margin: 0 0 15px;
}
.footer .footer-logo img {
  height: 42px;
  width: auto;
}
.footer .footer-text p {
  font-size: 16px;
  line-height: 26px;
  color: #eee;
  font-weight: 400;
  margin: 0 0 25px;
}
.footer .footer-social-links {
  margin-bottom: 80px;
}
.footer .footer-social-links a {
  display: inline-block;
  text-align: center;
  margin: 0 4px;
}
.footer .footer-social-links a i {
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff;
  display: block;
  color: #ffffff;
  line-height: 38px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.footer .footer-social-links a:hover i {
  background-color: #ffffff;
  color: #393939;
}
.footer .footer-social-links a:focus-visible i,
.carousel-nav:focus-visible,
.btn-success:focus-visible {
  outline: 3px solid rgba(170, 255, 0, 0.35);
  outline-offset: 3px;
}
.footer .copyright {
  background-color: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
}
.footer .copyright p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: #eee;
  font-weight: 400;
}
