html {
  scroll-behavior: smooth;
}

body, html, h1, h2, h3, h4, h5, h6, ul, figure, p {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  background: none;
  margin: 0;
  padding: 0;
}

select, input[type=text], input[type=submit], input[type=number], input[type=phone], input[type=email], input[type=password],
input[type=mail], input[type=tel], textarea {
  outline: none;
  margin: 0;
  border-radius: 0;
}

input[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
}

div, section, main, aside, header, footer, p, h1, h2, h3, h4, h5, h6, form, input, ul, li, td, aside, a, nav {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

iframe {
  border: none;
}

@font-face {
  font-family: "inter";
  src: url("../fonts/inter.ttf");
  font-display: swap;
}
@font-face {
  font-family: "roboto";
  src: url("../fonts/roboto.ttf");
  font-display: swap;
}
p, a, ul, li, button, label, table {
  font-family: "inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "roboto", sans-serif;
}

.u-c-main {
  color: #2d808c;
}

.u-bg-main {
  background: #2d808c;
}

.u-c-second {
  color: #4cbab1;
}

.u-bg-second {
  background: #4cbab1;
}

.u-c-third {
  color: #D56732;
}

.u-bg-third {
  background: #D56732;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1032;
  background: linear-gradient(135deg, #160f47 0%, #5b1d5c 100%);
  padding: 3px 0;
  display: flex;
  align-items: center;
}
body:not(.dark) .l-header {
  background: linear-gradient(45deg, #BBBDBF 0%, #E5E6E7 100%);
}

.l-main {
  width: 100%;
  margin: 110px 0 0 0;
  height: calc(100vh - 110px);
  padding: 0;
  background: #160f47;
  grid-area: unset;
  display: flex;
}
body:not(.dark) .l-main {
  background: #F0F0F0;
}

.l-breadcrumb {
  position: relative;
  width: 100%;
  height: 50px;
  background: #FAFAFA;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin: 0 0 75px 0;
}

.l-sidebar {
  width: 255px;
  height: 100%;
  border-right: 1px solid #1e2f47;
  position: relative;
  flex-shrink: 0;
  transition: width 0.3s ease;
  padding: 20px;
}
body:not(.dark) .l-sidebar {
  background: #0056ff;
  border-right: none;
}
.l-sidebar--collapsed {
  width: 0px;
  padding: 3px;
}
.l-sidebar--collapsed .menu-text {
  opacity: 0;
  visibility: hidden;
}

.l-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.aegis-table-wrapper {
  width: 100%;
}

.table-title {
  font-size: 20px;
  letter-spacing: 0.25px;
  color: #e7515a;
  margin: 0 0 20px 0;
  font-weight: normal;
  font-family: "inter" !important;
}
body:not(.dark) .table-title {
  color: #0056ff;
}

.table-search-wrapper {
  margin-bottom: 15px;
  position: relative;
}
.table-search-wrapper .lucide-search {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: white;
  opacity: 0.6;
}
body:not(.dark) .table-search-wrapper .lucide-search {
  color: #929497;
  opacity: 0.7;
}

.table-search {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #929497;
  border-radius: 5px !important;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  background: none;
  color: white;
}
body:not(.dark) .table-search {
  background: white;
  border-color: #ddd;
  color: #333;
}
.table-search:focus {
  outline: none;
  border-color: #667eea;
}

.table-container {
  overflow-x: auto;
}

.aegis-table {
  width: 100%;
}
body:not(.dark) .aegis-table {
  background: white;
}
.aegis-table th,
.aegis-table td {
  padding: 17px;
  text-align: left;
  color: #C6C7C9;
  font-size: 14px;
}
body:not(.dark) .aegis-table th,
body:not(.dark) .aegis-table td {
  color: #3F3F41;
}
.aegis-table th {
  font-weight: normal;
  color: white;
}
.aegis-table tbody tr {
  border-bottom: 1px solid #3F3F41;
  transition: background 0.2s ease;
}
body:not(.dark) .aegis-table tbody tr {
  border-bottom-color: #eee;
}
.aegis-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.25);
}
body:not(.dark) .aegis-table tbody tr:hover {
  background: #f9f9f9;
}
.aegis-table.table-striped tbody tr:nth-child(even) {
  background: #4C4C4E;
}
body:not(.dark) .aegis-table.table-striped tbody tr:nth-child(even) {
  background: #f8f8f8;
}
.aegis-table.table-bordered {
  border: 1px solid #57585A;
}
body:not(.dark) .aegis-table.table-bordered {
  border-color: #ddd;
}
.aegis-table.table-bordered th,
.aegis-table.table-bordered td {
  border: 1px solid #57585A;
}
body:not(.dark) .aegis-table.table-bordered th,
body:not(.dark) .aegis-table.table-bordered td {
  border-color: #ddd;
}
.aegis-table.table-compact th,
.aegis-table.table-compact td {
  padding: 8px 10px;
}
.aegis-table.header-primary th {
  background: none;
  border-bottom: 1px solid #B1B3B5;
}
.aegis-table.header-secondary th {
  background: #95a5a6;
}
.aegis-table.header-success th {
  background: #27ae60;
}
.aegis-table.header-dark th {
  background: #2c3e50;
}

.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 30px;
}
.sortable .sort-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.sortable:hover .sort-icon {
  opacity: 0.7;
}
.sortable.asc .sort-icon, .sortable.desc .sort-icon {
  opacity: 1;
}

.table-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  padding: 15px;
  font-family: "roboto";
}
body:not(.dark) .table-pagination {
  background: white;
}
.table-pagination span {
  font-family: "roboto";
}

.page-btn {
  padding: 8px 16px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease;
  font-family: "roboto";
  font-size: 14px;
}
.page-btn:hover:not(:disabled) {
  opacity: 0.9;
}
.page-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.page-info {
  font-size: 14px;
  color: #929497;
}
body:not(.dark) .page-info {
  color: #666;
}
.page-info .current-page,
.page-info .total-pages {
  font-weight: 600;
  color: #667eea;
}

.aegis-table-error {
  padding: 20px;
  background: #fee;
  color: #c33;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  font-family: "roboto";
}

.table-no-results {
  text-align: center;
  padding: 20px;
  color: #929497;
}
body:not(.dark) .table-no-results {
  color: #999;
}

.table-loading {
  text-align: center;
  padding: 20px;
}

.table-loading-icon {
  animation: spin 1s linear infinite;
}

.table-error {
  text-align: center;
  padding: 20px;
  color: #e7515a;
}
body:not(.dark) .table-error {
  color: #c33;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.aegis-table-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 10;
  border-radius: 8px;
}
body:not(.dark) .aegis-table-loading {
  background: rgba(255, 255, 255, 0.95);
}
body.dark .aegis-table-loading {
  background: rgba(30, 30, 30, 0.95);
}
.aegis-table-loading .spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #ff6201;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
body.dark .aegis-table-loading .spinner {
  border-color: #444;
  border-top-color: #5b1d5c;
}
.aegis-table-loading span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
body.dark .aegis-table-loading span {
  color: #aaa;
}

.aegis-table-empty {
  display: none;
  padding: 40px 20px;
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 16px;
}
body.dark .aegis-table-empty {
  background: #1e1e1e;
}
.aegis-table-empty p {
  margin: 0;
  font-size: 16px;
  color: #666;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
body.dark .aegis-table-empty p {
  color: #aaa;
}

.hidden-filter-column {
  display: none !important;
}

@media (max-width: 751px) {
  .aegis-table th,
  .aegis-table td {
    font-size: 14px;
  }
  .table-search {
    font-size: 13px;
  }
  .table-pagination {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.aegis-filter-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-label {
  font-size: 20px;
  letter-spacing: 0.25px;
  color: #e7515a;
  margin: 0 0 8px 0;
  font-family: "inter" !important;
}
body:not(.dark) .filter-label {
  color: #0056ff;
}

.filter-select {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #929497;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
body:not(.dark) .filter-select {
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  border-color: #ddd;
  color: #333;
}
.filter-select:focus {
  outline: none;
  border-color: #5b1d5c;
}

.filter-date-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.filter-preset-btn {
  padding: 10px 15px;
  background: #282542;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}
body:not(.dark) .filter-preset-btn {
  background: #f0f0f0;
  color: #333;
}
.filter-preset-btn:hover {
  background: #2d808c;
  color: white;
}
.filter-preset-btn:active {
  transform: scale(0.98);
}
.filter-preset-btn.active {
  background: #5b1d5c;
  color: white;
  font-weight: 600;
}
body:not(.dark) .filter-preset-btn.active {
  background: #2d808c;
  color: white;
}

.filter-date-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: mobile) {
  .filter-date-inputs {
    grid-template-columns: 1fr;
  }
}

.filter-date-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-date-label {
  font-size: 13px;
  font-weight: 500;
  color: #B1B3B5;
}
body:not(.dark) .filter-date-label {
  color: #57585A;
}

.filter-date-input {
  padding: 10px 12px;
  border: 1px solid #929497;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background: none;
  color: white;
  transition: all 0.3s ease;
}
body:not(.dark) .filter-date-input {
  background: white;
  border-color: #ddd;
  color: #333;
}
.filter-date-input:focus {
  outline: none;
  border-color: #5b1d5c;
}
.filter-date-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
body:not(.dark) .filter-date-input::-webkit-calendar-picker-indicator {
  filter: invert(0);
}

.aegis-filter-error {
  padding: 15px;
  background: #fee;
  color: #c33;
  border-radius: 4px;
  font-weight: 600;
}

.filter-mesano {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-mesano__container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.filter-mesano__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-mesano__field label {
  font-size: 13px;
  font-weight: 500;
  color: #B1B3B5;
}
body:not(.dark) .filter-mesano__field label {
  color: #57585A;
}
.filter-mesano__select {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #929497;
  border-radius: 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
body:not(.dark) .filter-mesano__select {
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  border-color: #ddd;
  color: #333;
}
.filter-mesano__select:focus {
  outline: none;
  border-color: #5b1d5c;
}
.filter-mesano__actions {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}
.filter-mesano__button {
  padding: 10px 15px;
  background: #282542;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
body:not(.dark) .filter-mesano__button {
  background: #f0f0f0;
  color: #333;
}
.filter-mesano__button:hover {
  background: #2d808c;
  color: white;
}
.filter-mesano__button:active {
  transform: scale(0.98);
}
.filter-mesano__button--secondary {
  background: #1f1d38;
}
body:not(.dark) .filter-mesano__button--secondary {
  background: #e0e0e0;
  color: #666;
}
.filter-mesano__button--secondary:hover {
  background: rgb(21.7, 20.3, 39.2);
}
body:not(.dark) .filter-mesano__button--secondary:hover {
  background: rgb(198.5, 198.5, 198.5);
}

@media (max-width: mobile) {
  .filter-mesano__actions {
    flex-direction: column;
  }
  .filter-mesano__actions button {
    width: 100%;
  }
}
.page-builder-col-1 .metric-card,
.page-builder-col-2 .metric-card,
.page-builder-col-3 .metric-card,
.page-builder-col-4 .metric-card,
.page-builder-col-5 .metric-card,
.page-builder-col-6 .metric-card {
  width: 100%;
  height: 100%;
}

.metric-card {
  display: flex;
  flex-direction: row;
  align-items: inherit;
  justify-content: space-between;
  flex-wrap: wrap;
}
.metric-card__icon {
  width: 35%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.metric-card__theicon {
  color: white;
  width: 40px;
  height: 40px;
  background: #5b1d5c;
  border-radius: 50%;
  padding: 15px;
}
.metric-card__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 65%;
  padding: 0 0 25px 0;
}
.metric-card__title h5 {
  color: #ff6201;
  font-family: "inter";
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 10px 0;
}
.metric-card__title p {
  color: white;
  font-family: "roboto";
  font-size: 35px;
}
body:not(.dark) .metric-card__title p {
  color: #3F3F41;
}
.metric-card__value {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
}
.metric-card__value p {
  font-size: 13px;
  color: #ffffff;
  padding: 7px 15px;
  border-radius: 5px;
}
.metric-card__value--positive {
  background: rgb(7, 104, 214);
}
.metric-card__value--negative {
  background: red;
}
.metric-card__details {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: nowrap;
}
.metric-card__details a {
  font-size: 16px;
  color: rgb(102, 126, 234);
  font-family: "roboto";
  padding: 0 0 5px 0;
  border-bottom: 1px dashed rgb(102, 126, 234);
}

.chart-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
}
.chart-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chart-header {
  margin-bottom: 20px;
}

.chart-title {
  font-size: 20px;
  font-weight: normal;
  color: #ff6201 !important;
  margin-bottom: 7px;
  font-family: "inter";
}

.chart-subtitle {
  font-size: 13px;
  color: #E5E6E7;
  font-family: "inter";
}

.chart-container {
  min-height: 300px;
  width: 100%;
  overflow: hidden;
}
.chart-container .apexcharts-canvas {
  width: 100% !important;
  max-width: 100% !important;
}
.chart-container svg {
  width: 100% !important;
  max-width: 100% !important;
}
.chart-container .apexcharts-xaxis-label,
.chart-container .apexcharts-yaxis-label {
  fill: gray !important;
  font-size: 12px !important;
}
.chart-container .apexcharts-legend-text {
  color: #4a5568 !important;
  font-size: 13px !important;
}
.chart-container .apexcharts-gridline {
  stroke: #e2e8f0 !important;
}

body.dark .chart-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
body.dark .chart-title {
  color: #f7fafc;
}
body.dark .chart-subtitle {
  color: #a0aec0;
}
body.dark .apexcharts-xaxis-label,
body.dark .apexcharts-yaxis-label {
  fill: white !important;
  font-size: 12px !important;
}
body.dark .apexcharts-legend-text {
  color: white !important;
  font-size: 13px !important;
}

@media (max-width: 768px) {
  .chart-title {
    font-size: 16px;
  }
  .chart-subtitle {
    font-size: 12px;
  }
}
.imagelink-wrapper {
  border-radius: 5px;
}

.imagelink-link {
  display: block;
  width: 100%;
  height: 100%;
}

.imagelink-image {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px !important;
  object-fit: cover;
}

.imagelink-link:hover .imagelink-image {
  opacity: 0.9;
  transition: opacity 0.2s;
}

.page-builder-card:has(.imagelink-wrapper) {
  position: relative;
  padding: 0 !important;
}

.imagelink-error {
  background: #f0f0f0;
  padding: 20px;
  text-align: center;
  color: #999;
  border-radius: 8px;
}
body:not(.dark) .imagelink-error {
  background: #f0f0f0;
  color: #999;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain;
}

.object-fit-fill {
  object-fit: fill;
}

.aegis-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 1200px;
  width: 100%;
}

.hero-small {
  min-height: 300px;
}

.hero-medium {
  min-height: 500px;
}

.hero-large {
  min-height: 700px;
}

.hero-fullscreen {
  min-height: 100vh;
}

.text-light .hero-title,
.text-light .hero-subtitle {
  color: #ffffff;
}

.text-dark .hero-title,
.text-dark .hero-subtitle {
  color: #333333;
}

.align-left .hero-content {
  text-align: left;
}

.align-center .hero-content {
  text-align: center;
}

.align-right .hero-content {
  text-align: right;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 30px 0;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-cta {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: #667eea;
  color: white;
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: #27ae60;
  color: white;
  border: 2px solid transparent;
}
.btn-secondary:hover {
  background: #229954;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 751px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-cta {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .hero-small {
    min-height: 250px;
  }
  .hero-medium {
    min-height: 400px;
  }
  .hero-large {
    min-height: 500px;
  }
}
.aegis-spacer {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aegis-spacer--with-divider .aegis-spacer__divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  margin: 0;
}

.aegis-spacer--divider-solid .aegis-spacer__divider {
  border-top-style: solid;
}

.aegis-spacer--divider-dashed .aegis-spacer__divider {
  border-top-style: dashed;
}

.aegis-spacer--divider-dotted .aegis-spacer__divider {
  border-top-style: dotted;
}

.aegis-spacer--divider-width-full .aegis-spacer__divider {
  width: 100%;
}

.aegis-spacer--divider-width-75 .aegis-spacer__divider {
  width: 75%;
}

.aegis-spacer--divider-width-50 .aegis-spacer__divider {
  width: 50%;
}

.aegis-spacer--divider-width-25 .aegis-spacer__divider {
  width: 25%;
}

.aegis-spacer--divider-thin .aegis-spacer__divider {
  border-top-width: 1px;
}

.aegis-spacer--divider-medium .aegis-spacer__divider {
  border-top-width: 2px;
}

.aegis-spacer--divider-thick .aegis-spacer__divider {
  border-top-width: 4px;
}

.aegis-spacer--divider-color-default .aegis-spacer__divider {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark .aegis-spacer--divider-color-default .aegis-spacer__divider {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body:not(.dark) .aegis-spacer--divider-color-default .aegis-spacer__divider {
  border-top-color: rgba(0, 0, 0, 0.1);
}

.aegis-spacer--divider-color-primary .aegis-spacer__divider {
  border-top-color: #2d808c;
}

.aegis-spacer--divider-color-secondary .aegis-spacer__divider {
  border-top-color: #4cbab1;
}

.aegis-spacer--divider-color-light .aegis-spacer__divider {
  border-top-color: rgba(255, 255, 255, 0.3);
}

.aegis-spacer--divider-color-dark .aegis-spacer__divider {
  border-top-color: rgba(0, 0, 0, 0.3);
}

.page-builder-card:has(.aegis-spacer) {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.page-builder-card:has(.aegis-spacer):hover {
  transform: none !important;
  box-shadow: none !important;
}

.html-livre-wrapper {
  box-sizing: border-box;
}

.html-livre-empty {
  padding: 40px 20px;
  text-align: center;
  color: #929497;
  background: #E5E6E7;
  border: 2px dashed #BBBDBF;
  border-radius: 8px;
  font-style: italic;
}
body.dark .html-livre-empty {
  background: #3F3F41;
  border-color: #6C6D70;
  color: #A6A9AB;
}

.ultima-atualizacao {
  font-family: "roboto";
  color: white !important;
}
.ultima-atualizacao i[data-lucide] {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.ultima-atualizacao__text {
  margin-right: 8px;
  color: white !important;
}
.ultima-atualizacao__date {
  font-weight: 600;
  color: white !important;
}
.ultima-atualizacao--default {
  color: white !important;
  font-size: 16px;
  margin: 16px 0;
}
.ultima-atualizacao--badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: white !important;
}
.ultima-atualizacao--badge .ultima-atualizacao__badge {
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}
.ultima-atualizacao--card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 16px 0;
}
.ultima-atualizacao--card .ultima-atualizacao__icon-wrapper {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
}
.ultima-atualizacao--card .ultima-atualizacao__icon-wrapper i[data-lucide] {
  width: 20px;
  height: 20px;
  margin: 0;
  color: var(--primary-color);
}
.ultima-atualizacao--card .ultima-atualizacao__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ultima-atualizacao--card .ultima-atualizacao__content .ultima-atualizacao__text {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}
.ultima-atualizacao--card .ultima-atualizacao__content .ultima-atualizacao__date {
  font-size: 16px;
  color: var(--text-primary);
}
.ultima-atualizacao--inline {
  display: inline;
  font-size: inherit;
  color: inherit;
}
.ultima-atualizacao--inline i[data-lucide] {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.ultima-atualizacao--inline .ultima-atualizacao__text {
  margin-right: 4px;
}
.ultima-atualizacao--empty, .ultima-atualizacao--error {
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}
.ultima-atualizacao--empty {
  background: #f5f5f5;
  color: #999;
}
.ultima-atualizacao--error {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.section-wrapper {
  width: 90%;
  margin: 0 auto;
}

.m-artigos-search {
  max-width: 600px;
  margin: 30px auto 40px;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .m-artigos-search {
    max-width: 100%;
    margin: 20px auto 30px;
  }
}
.m-artigos-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.m-artigos-search__input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  font-size: 16px;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  outline: none;
  transition: all 0.3s ease;
  background: white;
}
@media (max-width: 768px) {
  .m-artigos-search__input {
    font-size: 14px;
    padding: 12px 50px 12px 16px;
  }
}
.m-artigos-search__input:focus {
  border-color: #2d808c;
  box-shadow: 0 0 0 3px rgba(45, 128, 140, 0.1);
}
.m-artigos-search__input::placeholder {
  color: #adb5bd;
}
.m-artigos-search__icon {
  position: absolute;
  right: 18px;
  color: #adb5bd;
  pointer-events: none;
  font-size: 20px;
}
.m-artigos-search__clear {
  position: absolute;
  right: 50px;
  background: #dee2e6;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 14px;
  padding: 0;
}
.m-artigos-search__clear:hover {
  background: #adb5bd;
  transform: scale(1.1);
}
.m-artigos-search__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .m-artigos-search__filters {
    gap: 8px;
  }
}
.m-artigos-search__filters-label {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}
.m-artigos-search__filter-select {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  background: white;
  color: #495057;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  min-width: 150px;
}
@media (max-width: 768px) {
  .m-artigos-search__filter-select {
    padding: 6px 12px;
    font-size: 13px;
    min-width: 130px;
  }
}
.m-artigos-search__filter-select:hover {
  border-color: #2d808c;
}
.m-artigos-search__filter-select:focus {
  border-color: #2d808c;
  box-shadow: 0 0 0 3px rgba(45, 128, 140, 0.1);
}
.m-artigos-search__status {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
  font-weight: 500;
}
.m-artigos-search__status--loading {
  color: #2d808c;
}
.m-artigos-search__status--success {
  color: #28a745;
}
.m-artigos-search__status--error {
  color: #dc3545;
}

.m-artigo__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #2d808c;
  font-family: "roboto", sans-serif;
}
@media (max-width: 768px) {
  .m-artigo__title {
    font-size: 1.5rem;
  }
}
.m-artigo__meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 1.5rem;
}
.m-artigo__intro {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 2rem;
}
.m-artigo__image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.m-artigo__form-card {
  position: sticky;
  top: 100px;
}
.m-artigo__form-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d808c;
  margin-bottom: 1rem;
  font-family: "roboto", sans-serif;
}
.m-artigo__form-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 1rem;
}
.m-artigo__info-text {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
}
.m-artigo__info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d808c;
  margin-bottom: 1rem;
  font-family: "roboto", sans-serif;
}
.m-artigo__info-list {
  font-size: 14px;
  padding-left: 20px;
  margin: 10px 0;
}
.m-artigo__info-list li {
  margin-bottom: 5px;
  color: #6C6D70;
}

.m-artigos-list__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.m-artigos-list__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.m-artigos-list__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.m-artigos-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.m-artigos-list__thumb img:hover {
  transform: scale(1.05);
}
.m-artigos-list__title {
  font-size: 20px;
  height: 48px;
  overflow: hidden;
  margin: 15px 0 10px;
}
.m-artigos-list__title a {
  color: #3F3F41;
  text-decoration: none;
}
.m-artigos-list__title a:hover {
  color: #2d808c;
}
.m-artigos-list__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #808184;
  margin-bottom: 10px;
}
.m-artigos-list__autor {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.m-artigos-list__intro {
  height: 70px;
  overflow: hidden;
  font-size: 14px;
  color: #6C6D70;
  line-height: 1.6;
}
.m-artigos-list__footer {
  padding-top: 15px;
  border-top: 1px solid #DBDDDE;
}
.m-artigos-list__read-more {
  color: #2d808c;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}
.m-artigos-list__read-more:hover {
  gap: 8px;
  text-decoration: underline;
}

.m-blog {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  padding: 60px 0;
}
@media (max-width: 992px) {
  .m-blog {
    width: 90%;
    flex-direction: column;
  }
}
.m-blog__materia {
  width: 70%;
}
@media (max-width: 992px) {
  .m-blog__materia {
    width: 100%;
    margin-bottom: 40px;
  }
}
.m-blog__materia h1 {
  font-size: 33px;
  color: #2d808c;
  font-family: "roboto", sans-serif;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .m-blog__materia h1 {
    font-size: 28px;
  }
}
.m-blog__meta {
  margin: 10px 0 20px 0;
  color: #808184;
  font-size: 14px;
}
.m-blog__image {
  width: 100%;
  margin: 0 0 40px 0;
  border-radius: 8px;
}
.m-blog__aside {
  width: 25%;
  background: #f1f1f1;
  padding: 30px;
  align-self: flex-start;
  position: sticky;
  top: 80px;
  border-radius: 8px;
}
@media (max-width: 992px) {
  .m-blog__aside {
    width: 100%;
    position: static;
  }
}
.m-blog__aside h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
  color: #3F3F41;
  font-family: "roboto", sans-serif;
}
.m-blog__back-link {
  display: inline-block;
  color: #2d808c;
  text-decoration: none;
  font-weight: 600;
  margin-top: 40px;
  transition: all 0.3s ease;
}
.m-blog__back-link:hover {
  color: #4cbab1;
  transform: translateX(-5px);
}

.m-blog-related {
  margin: 0 0 40px 0;
}
.m-blog-related__item {
  margin: 0 0 15px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #D0D2D4;
}
.m-blog-related__item:last-child {
  border-bottom: none;
}
.m-blog-related__item a {
  color: #57585A;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.m-blog-related__item a:hover {
  color: #2d808c;
}

.m-blog-courses {
  margin: 0 0 40px 0;
}
.m-blog-courses__item {
  margin-bottom: 20px;
}
.m-blog-courses__item:last-child {
  margin-bottom: 0;
}
.m-blog-courses__item a {
  display: block;
}
.m-blog-courses__item img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}
.m-blog-courses__item img:hover {
  transform: scale(1.02);
}

.m-breadcrumb {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
}
.m-breadcrumb__toggle {
  display: none;
}
.m-breadcrumb__nav {
  flex: 1;
}
.m-breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  font-family: "inter", sans-serif;
}
.m-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6c757d;
}
.m-breadcrumb__item a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}
.m-breadcrumb__item a:hover {
  color: #D56732;
}
.m-breadcrumb__item--active {
  color: #0e1726;
  font-weight: 500;
}
.m-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #adb5bd;
  font-weight: 300;
}

.downloads-section {
  padding: 30px 0;
}

.downloads-header {
  margin-bottom: 30px;
}
.downloads-header h2 {
  font-size: 20px;
  letter-spacing: 0.25px;
  color: #e7515a;
  margin: 0 0 8px 0;
  font-weight: normal;
  font-family: "inter" !important;
}
body:not(.dark) .downloads-header h2 {
  color: #0056ff;
}
.downloads-header p {
  color: #fff;
  font-size: 14px;
}
body:not(.dark) .downloads-header p {
  color: #57585A;
}

.alert-error {
  background: #fee;
  color: #c33;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #fcc;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.report-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
body.dark .report-card {
  background: rgba(0, 0, 0, 0.2);
}
.report-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.report-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: #fff;
}
body:not(.dark) .report-icon {
  color: #0056ff;
}
.report-icon i {
  width: 48px;
  height: 48px;
}

.report-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
body:not(.dark) .report-card h3 {
  color: #0056ff;
}

.report-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #5b1d5c;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
body:not(.dark) .btn-download {
  background: #0056ff;
}
.btn-download:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
.btn-download i {
  width: 16px;
  height: 16px;
}

.report-meta {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .reports-grid {
    grid-template-columns: 1fr;
  }
}
.m-header__top {
  border-bottom: 1px solid #E5E6E7;
}

.m-home {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #160f47 0%, #5b1d5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-home__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.m-home__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.m-home__logo img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.m-home__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.m-home__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: #5b1d5c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: "inter", sans-serif;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
}
.m-home__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-builder-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-builder-row {
    flex-direction: column;
    gap: 15px;
  }
}

.page-builder-col-1 {
  flex: 0 0 calc(16.6666666667% - 16.6666666667px);
}
@media (max-width: 768px) {
  .page-builder-col-1 {
    flex: 0 0 100%;
  }
}

.page-builder-col-2 {
  flex: 0 0 calc(33.3333333333% - 13.3333333333px);
}
@media (max-width: 768px) {
  .page-builder-col-2 {
    flex: 0 0 100%;
  }
}

.page-builder-col-3 {
  flex: 0 0 calc(50% - 10px);
}
@media (max-width: 768px) {
  .page-builder-col-3 {
    flex: 0 0 100%;
  }
}

.page-builder-col-4 {
  flex: 0 0 calc(66.6666666667% - 6.6666666667px);
}
@media (max-width: 768px) {
  .page-builder-col-4 {
    flex: 0 0 100%;
  }
}

.page-builder-col-5 {
  flex: 0 0 calc(83.3333333333% - 3.3333333333px);
}
@media (max-width: 768px) {
  .page-builder-col-5 {
    flex: 0 0 100%;
  }
}

.page-builder-col-6 {
  flex: 0 0 100%;
}

.page-builder-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.page-builder-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
body.dark .page-builder-card {
  background: rgba(0, 0, 0, 0.2);
}
.page-builder-card h3 {
  font-size: 20px;
  letter-spacing: 0.25px;
  color: #e7515a;
  font-family: "inter" !important;
  margin: 0;
  font-weight: 600;
}
body:not(.dark) .page-builder-card h3 {
  color: #0056ff;
}

.page-builder-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  border-radius: 7px;
  color: purple;
  font-weight: 500;
}
body.dark .page-builder-placeholder {
  color: red;
}
.page-builder-placeholder p {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-section {
  padding: 30px 0;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0;
  transition: all 0.3s ease;
}
body.dark .profile-card {
  background: rgba(0, 0, 0, 0.2);
}

.profile-card-header {
  padding: 24px;
  border-bottom: 1px solid var(--border-color);
}
.profile-card-header h3 {
  font-size: 20px;
  letter-spacing: 0.25px;
  color: #e7515a;
  margin: 0 0 4px 0;
  font-weight: normal;
  font-family: "inter" !important;
}
body:not(.dark) .profile-card-header h3 {
  color: #0056ff;
}
.profile-card-header p {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.profile-card-body {
  padding: 24px;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 8px;
}
.info-item p {
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
body:not(.dark) .info-item p {
  color: #333;
  background: #f5f5f5;
}

.avatar-section {
  text-align: center;
}
.avatar-section .form-group {
  text-align: center;
}

.avatar-preview {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
}
body.dark .avatar-preview {
  background: rgba(255, 255, 255, 0.05);
}
.avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.avatar-placeholder i {
  width: 48px;
  height: 48px;
  color: white;
}

.btn-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #5b1d5c;
  color: white;
  padding: 15px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  margin: 0 auto;
}
body:not(.dark) .btn-upload {
  background: #0056ff;
  color: white;
}
body:not(.dark) .btn-upload span {
  color: white;
}
.btn-upload:hover {
  background: #764ba2;
}
.btn-upload i {
  width: 14px;
  height: 14px;
}

.upload-info {
  margin-top: 12px;
}
.upload-info p {
  font-size: 12px;
  color: #999;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}
body:not(.dark) .form-group label {
  color: #333;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid transparent;
  border-radius: 6px !important;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: all 0.3s ease;
  outline: none;
}
body:not(.dark) .form-control {
  background: #f5f5f5;
  color: #333;
}
.form-control:focus {
  border-color: #5b1d5c;
}
.form-control::placeholder {
  color: #666;
}

.form-help {
  display: block;
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.profile-section .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #5b1d5c;
  color: white;
  padding: 15px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: none !important;
  transform: none !important;
}
body:not(.dark) .profile-section .btn-primary {
  background: #0056ff;
}
.profile-section .btn-primary:hover {
  background: #764ba2 !important;
  box-shadow: none !important;
  transform: none !important;
}
.profile-section .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.profile-section .btn-primary i {
  width: 14px;
  height: 14px;
}

.alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
body.dark .alert-success {
  background: rgba(40, 167, 69, 0.2);
  color: #8bff8b;
  border-color: rgba(40, 167, 69, 0.3);
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
body.dark .alert-error {
  background: rgba(220, 53, 69, 0.2);
  color: #ff9999;
  border-color: rgba(220, 53, 69, 0.3);
}

.loading {
  opacity: 0.6;
  pointer-events: none;
}
.loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.m-sidebar {
  width: 100%;
  height: 100%;
}
.m-sidebar .menu-text {
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.m-sidebar__toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.m-sidebar__toggle:hover {
  transform: scale(1.1);
}
.m-sidebar__toggle svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .m-sidebar__toggle {
    display: none;
  }
}
.m-sidebar__menu {
  padding: 10px 0;
}

.menu-item {
  position: relative;
  margin: 0 0 5px 0;
}
.menu-item__link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}
.menu-item__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 7px;
}
.menu-item__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.menu-item__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.menu-item__text {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 0 12px;
}
.menu-item__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.menu-item--active > .menu-item__link {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-left: 3px solid #5b1d5c;
}
body:not(.dark) .menu-item--active > .menu-item__link {
  border-left: 3px solid #ff6201;
}
.menu-item--open .menu-item__arrow {
  transform: rotate(90deg);
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.submenu--open {
  max-height: 500px;
}
.submenu__item {
  padding-left: 25px;
}
.submenu__icon {
  margin: 0 15px 0 0;
  width: 20px;
  height: 20px;
}
.submenu__item a {
  display: flex;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}
.submenu__item a:hover {
  color: white;
  padding-left: 15px;
}
.submenu__item a.active {
  color: white;
  font-weight: 600;
  padding-left: 25px;
}
.submenu__item a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #5b1d5c;
  border-radius: 2px;
}
body:not(.dark) .submenu__item a.active::before {
  background: #ff6201;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: calc(100vh - 120px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 997;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sidebar-backdrop--active {
  display: block;
  opacity: 1;
}
@media (max-width: 768px) {
  .sidebar-backdrop {
    display: block;
  }
}

.m-sobre-nos {
  padding-bottom: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .m-sobre-nos {
    width: 95%;
  }
}
.m-sobre-nos div {
  width: 100%;
}
.m-sobre-nos h1 {
  font-size: 48px;
  font-weight: 700;
  color: #2d808c;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .m-sobre-nos h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.m-sobre-nos .titulo-opcao-1 {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .m-sobre-nos .titulo-opcao-1 {
    margin-bottom: 40px;
  }
}
.m-sobre-nos .titulo-opcao-1 .badge {
  display: inline-block;
  font-family: "inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2d808c;
  background: rgba(45, 128, 140, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.m-sobre-nos .titulo-opcao-1 h1 {
  margin-bottom: 0;
}
.m-sobre-nos .titulo-bg {
  position: relative;
  z-index: 1;
}
.m-sobre-nos .titulo-bg::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: #D56732;
  opacity: 0.08;
  z-index: -1;
  letter-spacing: 8px;
}
@media (max-width: 768px) {
  .m-sobre-nos .titulo-bg::before {
    font-size: 80px;
    letter-spacing: 4px;
  }
}
.m-sobre-nos .opcao-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.m-sobre-nos .opcao-3 i {
  width: 40px;
  height: 40px;
  color: #2d808c;
  stroke-width: 2;
}
@media (max-width: 768px) {
  .m-sobre-nos .opcao-3 i {
    width: 32px;
    height: 32px;
  }
}
.m-sobre-nos .opcao-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.m-sobre-nos .opcao-4::before, .m-sobre-nos .opcao-4::after {
  content: "";
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2d808c);
}
@media (max-width: 768px) {
  .m-sobre-nos .opcao-4::before, .m-sobre-nos .opcao-4::after {
    flex: 0 0 40px;
  }
}
.m-sobre-nos .opcao-4::before {
  background: linear-gradient(90deg, #2d808c, transparent);
}
.m-sobre-nos .opcao-5 {
  background: #FAFAFA;
  border-left: 6px solid #2d808c;
  padding: 32px 48px;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .m-sobre-nos .opcao-5 {
    padding: 24px 32px;
    margin-bottom: 40px;
    border-left-width: 4px;
  }
}
.m-sobre-nos .opcao-5 h1 {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .m-sobre-nos .opcao-5 h1 {
    font-size: 32px;
  }
}
.m-sobre-nos .opcao-6 span {
  color: #2d808c;
  font-weight: 700;
}
.m-sobre-nos .opcao-6 {
  color: #6C6D70;
  font-weight: 400;
}
.m-sobre-nos .conteudo {
  max-width: 1200px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 60px;
}
@media (max-width: 768px) {
  .m-sobre-nos .conteudo {
    column-count: 1;
  }
}
.m-sobre-nos .conteudo p {
  font-size: 18px;
  line-height: 1.9;
  color: #626466;
  margin-bottom: 32px;
  break-inside: avoid;
}
@media (max-width: 768px) {
  .m-sobre-nos .conteudo p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
}
.m-sobre-nos .conteudo p strong {
  color: #3F3F41;
  font-weight: 600;
}
.m-sobre-nos .conteudo p:last-child {
  margin-bottom: 0;
}
.m-sobre-nos .missao-visao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .m-sobre-nos .missao-visao {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }
}
.m-sobre-nos .missao-visao .coluna h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2d808c;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  padding-left: 20px;
  border-left: 4px solid #D56732;
}
@media (max-width: 768px) {
  .m-sobre-nos .missao-visao .coluna h2 {
    font-size: 24px;
    margin-bottom: 16px;
    border-left-width: 3px;
    padding-left: 16px;
  }
}
.m-sobre-nos .missao-visao .coluna p {
  font-size: 18px;
  line-height: 1.9;
  color: #626466;
}
@media (max-width: 768px) {
  .m-sobre-nos .missao-visao .coluna p {
    font-size: 16px;
    line-height: 1.8;
  }
}
.m-sobre-nos .valores {
  margin-top: 100px;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .m-sobre-nos .valores {
    margin-top: 60px;
  }
}
.m-sobre-nos .valores h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2d808c;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.3px;
}
@media (max-width: 768px) {
  .m-sobre-nos .valores h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.m-sobre-nos .valores .valores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .m-sobre-nos .valores .valores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .m-sobre-nos .valores .valores-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.m-sobre-nos .valores .valores-grid .valor-item {
  text-align: center;
}
.m-sobre-nos .valores .valores-grid .valor-item .icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #4cbab1;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .m-sobre-nos .valores .valores-grid .valor-item .icon-circle {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }
}
.m-sobre-nos .valores .valores-grid .valor-item .icon-circle i, .m-sobre-nos .valores .valores-grid .valor-item .icon-circle svg {
  color: white;
  stroke: white;
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .m-sobre-nos .valores .valores-grid .valor-item .icon-circle i, .m-sobre-nos .valores .valores-grid .valor-item .icon-circle svg {
    width: 36px;
    height: 36px;
  }
}
.m-sobre-nos .valores .valores-grid .valor-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #3F3F41;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
@media (max-width: 768px) {
  .m-sobre-nos .valores .valores-grid .valor-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.m-sobre-nos .valores .valores-grid .valor-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #6C6D70;
}
@media (max-width: 768px) {
  .m-sobre-nos .valores .valores-grid .valor-item p {
    font-size: 14px;
    line-height: 1.6;
  }
}
