/* ==========================================
   ACTUS GESTÃO - DESIGN TOKENS
   ========================================== */

:root {
  /* Colors */
  --actus-primary: #0d9488;
  --actus-primary-light: rgba(13, 148, 136, 0.1);
  --actus-primary-shadow: rgba(13, 148, 136, 0.2);
  --actus-text-primary: #0f172a;
  --actus-text-secondary: #64748b;
  --actus-text-muted: #94a3b8;
  --actus-border: #e2e8f0;
  --actus-background: #fafbfc;
  --actus-white: #ffffff;
  --actus-error: #dc2626;
  --actus-success: #16a34a;

  /* Typography */
  --actus-font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --actus-font-size-xs: 12px;
  --actus-font-size-sm: 14px;
  --actus-font-size-base: 16px;
  --actus-font-size-lg: 18px;
  --actus-font-size-xl: 24px;
  --actus-font-size-2xl: 30px;
  --actus-font-size-3xl: 36px;

  /* Spacing */
  --actus-space-xs: 4px;
  --actus-space-sm: 8px;
  --actus-space-md: 12px;
  --actus-space-lg: 24px;
  --actus-space-xl: 32px;
  --actus-space-2xl: 48px;

  /* Border Radius */
  --actus-radius-sm: 4px;
  --actus-radius-md: 10px;
  --actus-radius-lg: 16px;
  --actus-radius-xl: 24px;

  /* Shadows */
  --actus-shadow-sm: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  --actus-shadow-md: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
  --actus-shadow-lg: 0px 10px 15px -3px var(--actus-primary-shadow), 0px 4px 6px -4px var(--actus-primary-shadow);
}

body {
  font-family: "Arial", sans-serif;
  color: #080808;
}

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

header {
  min-height: 20vh;
}

section.ac-mainSection {
  min-height: 70vh;
  margin-top: 24px;
}

.ac-mainTitle {
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}

span#ac-highlightTitle {
  color: #93803d;
}

/* Overriden bootstrap classes */
.bg-dark {
  background-color: #191919 !important;
}

/* .fw-light {
  font-weight: 100 !important;
} */

/* End Overriden bootstrap classes */

.ac-bgSecondary {
  background-color: #958f804d;
}

/* These styles are required to make icons render reliably */
.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Alerts */
/* ====== */
.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}
/* End Alerts */

/* Menu */
/* ==== */
nav#ac-headMenu {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  border-bottom: 4px solid #93803d;
}

#ac-brandHeadMenu {
  font-size: 14px;
}

nav#ac-mainMenu {
  border-top: 4px solid #d7cca2;
  border-bottom: 4px solid #d7cca2;
}

.navbar-toggler#ac-navbarToggler,
.navbar-toggler#ac-navbarToggler:focus,
.navbar-toggler#ac-navbarToggler:hover {
  border-color: transparent;
  box-shadow: none;
}

.navbar-toggler-icon#ac-navbarTogglerIcon {
  background-image: none;
}

i.fa-ellipsis {
  color: #ffffff;
}

nav#ac-navSubMenu {
  font-size: 0.8rem;
}

a#ac-sitemapSubMenu::before {
  content: "\f0e8";
  font: var(--fa-font-solid);
  margin-right: 4px;
}

a#ac-contactSubMenu::before {
  content: "\f0e0";
  font: var(--fa-font-solid);
  margin-right: 4px;
}

div#ac-searchSocialMenu {
  background-color: #f4f4f1;
}

a#ac-facebookBadge {
  color: #3b5998;
  margin-right: 4px;
  font-size: 30px;
}

a#ac-twitterBadge {
  color: #1da1f2;
  margin-right: 4px;
  font-size: 30px;
}

a#ac-youtubeBadge {
  color: #ff0000;
  margin-right: 4px;
  font-size: 30px;
}

a#ac-instagramBadge {
  color: #e4405f;
  margin-right: 4px;
  font-size: 30px;
}

.ac-linkOppacityHover:hover {
  opacity: 0.7;
}

.ac-dropdownToggle.show {
  background-color: #f2f2f2;
  color: #333 !important;
}

/* BEGIN: Animation for ac-linkBorderBottomHover */
.ac-linkBorderBottomHover {
  position: relative;
}

.ac-linkBorderBottomHover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f2f2f2;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.ac-linkBorderBottomHover:hover::after {
  opacity: 1;
}

.ac-dropdownMenu {
  border-radius: 0;
  border-top: 4px solid #ccc;
  margin-top: 0px !important;
  min-width: -webkit-fill-available;
}

.ac-lightTopBorder {
  position: relative;
}

.ac-lightTopBorder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.ac-lightTopBorder:hover::before {
  opacity: 1;
}
/* END: Animation for ac-linkBorderBottomHover */

.ac-defaultLink {
  color: inherit;
  text-decoration: none;
}

.ac-defaultLink:hover {
  text-decoration: underline;
  color: inherit;
  opacity: 0.9;
}

.card.mb-3.ac-cardMediaHome {
  border-width: 0;
  font-weight: 700;
  width: 75%;
}

#ac-bottomFooter {
  border-top: 4px solid #93803d;
  font-size: 0.7rem;
}

#ac-logoutBtn {
  min-width: 50%;
  font-weight: bold;
}

.btn-danger#ac-logoutBtn:hover {
  background-color: #c82333 !important;
  border-color: #bd2130 !important;
}

.ac-noLinkStyle {
  text-decoration: none;
  color: inherit;
}

.ac-noLinkStyle:hover {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 992px) {
  .navbar-toggler {
    line-height: unset;
  }

  .ac-textRight {
    text-align: right !important;
  }

  #navbarTogglerHeadMenu {
    margin-right: 20px;
  }

  #ac-mainMenuToggleBtn {
    background-color: #fff;
    border: 1px solid #adb5bd;
    border-radius: 4px;
    color: #333;
    padding: 10px 15px;
  }

  i.fa-bars {
    color: #6c757d;
  }

  div#ac-subMenuCollapse {
    background-color: #e6e6e6;
    color: #333;
  }

  img#ac-brandSearchSocialMenu {
    width: 50px;
  }

  section.ac-mainSection {
    margin-top: 0px;
  }

  #ac-addressInfo {
    font-size: 0.9rem;
  }

  a#ac-facebookBadge:before {
    font-size: 28px;
  }

  a#ac-twitterBadge:before {
    font-size: 28px;
  }

  a#ac-youtubeBadge:before {
    font-size: 28px;
  }

  a#ac-instagramBadge:before {
    font-size: 28px;
  }
}
