/* =========================================================
   FEI 2026 — DESIGN TOKENS (fonte única)
   Consolidado a partir de style-minteste.css + fei26-theme-override.css.
   Dois valores conflitantes entre os arquivos originais foram
   resolvidos aqui (o arquivo perdedor sobrescreveria o vencedor
   por vir depois na cascata, então a fonte única evita o bug):
   - --fei26-primary-light: override trazia #eefcea (verde), que
     não faz sentido como "tom claro" do azul primário #006EAA.
     Mantido o valor de style-minteste.css (#EAF6FC, azul claro).
   - --fei26-success: override trazia #63C1D0 (ciano), fora do
     padrão de "sucesso = verde" usado no resto do sistema.
     Mantido o valor de style-minteste.css (#198754).
   - --fei26-font: mantida a pilha mais completa de fallback do
     style-minteste.css (inclui -apple-system, Segoe UI, Roboto).
========================================================= */

:root {
  /* Cores principais */
  --fei26-primary: #006EAA;
  --fei26-primary-dark: #004F7A;
  --fei26-primary-deep: #003B5C;
  --fei26-primary-light: #EAF6FC;

  /* Neutras */
  --fei26-white: #FFFFFF;
  --fei26-black: #111111;
  --fei26-text: #20252B;
  --fei26-text-soft: #4E5964;
  --fei26-text-muted: #737D87;

  /* Superfícies */
  --fei26-surface: #F5F7F9;
  --fei26-surface-2: #EDF1F4;
  --fei26-border: #DCE2E7;

  /* Feedback */
  --fei26-success: #198754;
  --fei26-warning: #C98A00;
  --fei26-danger: #C0392B;

  /* Cores temáticas por seção (notícias, projetos, vestibular) */
  --fei26-news: #6536a6;
  --fei26-project: #ff8c27;
  --fei26-vest: #f7b31b;

  /* Tipografia */
  --fei26-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Tamanhos de fonte em px para não quebrar o rem legacy */
  --fei26-fs-xs: 12px;
  --fei26-fs-sm: 14px;
  --fei26-fs-md: 16px;
  --fei26-fs-lg: 18px;
  --fei26-fs-xl: 20px;
  --fei26-fs-2xl: 24px;
  --fei26-fs-3xl: 32px;
  --fei26-fs-4xl: 40px;
  --fei26-fs-5xl: 52px;

  /* Espaçamentos */
  --fei26-space-1: 4px;
  --fei26-space-2: 8px;
  --fei26-space-3: 12px;
  --fei26-space-4: 16px;
  --fei26-space-5: 20px;
  --fei26-space-6: 24px;
  --fei26-space-7: 32px;
  --fei26-space-8: 40px;
  --fei26-space-9: 48px;
  --fei26-space-10: 64px;
  --fei26-space-11: 80px;
  --fei26-space-12: 96px;

  /* Bordas */
  --fei26-radius-sm: 4px;
  --fei26-radius-md: 8px;
  --fei26-radius-lg: 14px;
  --fei26-radius-xl: 22px;
  --fei26-radius-pill: 999px;

  /* Sombras */
  --fei26-shadow-sm: 0 2px 10px rgba(17, 17, 17, 0.06);
  --fei26-shadow-md: 0 12px 30px rgba(17, 17, 17, 0.09);
  --fei26-shadow-lg: 0 20px 50px rgba(17, 17, 17, 0.13);

  /* Transições */
  --fei26-transition-fast: 160ms ease;
  --fei26-transition: 280ms ease;
  --fei26-transition-slow: 500ms ease;
}


/* =========================================================
   CAMADA 1 — BASE ESTRUTURAL (de style-teste13.css)
   Reset (Bootstrap 4 reboot) + grid + classes legadas FEI
   já convertidas para a nomenclatura BEM (.fei-navigation__*)
========================================================= */
/**
 * =============================================================================
 * ARQUIVO DE ESTILOS: style-teste13og.css
 * Organizado e Comentado para Manutenção
 * =============================================================================
 */

/* -----------------------------------------------------------------------------
   1. RESET E CONFIGURAÇÕES GLOBAIS
   Reset padrão, box-sizing e tipografia base
   ----------------------------------------------------------------------------- */
@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/* Seleção de texto personalizada */
::-moz-selection {
  color: #fff;
  background: #12205d;
}

::selection {
  color: #fff;
  background: #12205d;
}

/* -----------------------------------------------------------------------------
   2. TIPOGRAFIA E ESTILOS BASE DO TEMA (FEI)
   Sobrescritas globais e escala tipográfica
   ----------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  /* Base 10px */
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1.6rem;
}

/* Escala de Títulos */
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6,
.d1,
.d2,
.d3,
.fei-section-title {
  color: #12205d;
  position: relative;
  margin: 0.5rem 0 0.5em 0;
  line-height: 1.4;
  font-weight: 600;
}

.h1 small,
h1 small,
.h2 small,
h2 small,
.h3 small,
h3 small,
.h4 small,
h4 small,
.h5 small,
h5 small,
.h6 small,
h6 small,
.d1 small,
.d2 small,
.d3 small,
.fei-section-title small {
  font-size: 0.5em;
}

.h1,
h1 {
  font-size: 3.6rem;
}

.h2,
h2 {
  font-size: 3.2rem;
}

.h3,
h3 {
  font-size: 2.8rem;
}

.h4,
h4 {
  font-size: 2.4rem;
}

.h5,
h5 {
  font-size: 2rem;
}

.h6,
h6 {
  font-size: 1.8rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
li {
  margin: 0 0 1.2rem 0;
  line-height: 2;
}

/* Links Globais do Tema */
a {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration-color: #12205d;
  text-decoration-color: #12205d;
  font-weight: normal;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

@media screen and (min-width: 992px) {

  a:hover,
  a:focus {
    color: inherit;
    opacity: .7;
  }
}

/* Cores de links por seção */
.fei-projects a {
  -webkit-text-decoration-color: #ff8c27;
  text-decoration-color: #ff8c27;
}

.fei-vest a {
  -webkit-text-decoration-color: #f7b31b;
  text-decoration-color: #f7b31b;
}

.fei-news a {
  -webkit-text-decoration-color: #6536a6;
  text-decoration-color: #6536a6;
}

code {
  display: block;
  background-color: #222222;
  color: #f9f9f9;
  font-size: 1.4rem;
  font-weight: lighter;
  line-height: 2;
  padding: 1.6rem;
  border-radius: 0.6rem;
}

small {
  font-size: 70%;
  color: inherit;
  font-weight: lighter;
  opacity: 0.8;
}

/* -----------------------------------------------------------------------------
   3. LAYOUT GLOBAL E ESTRUTURA
   Box-sizing global, body states e elementos básicos
   ----------------------------------------------------------------------------- */
@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  display: block;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: margin .2s ease-in-out, -webkit-transform .3s ease-in-out;
  transition: margin .2s ease-in-out, -webkit-transform .3s ease-in-out;
  -o-transition: transform .3s ease-in-out, margin .2s ease-in-out;
  transition: transform .3s ease-in-out, margin .2s ease-in-out;
  transition: transform .3s ease-in-out, margin .2s ease-in-out, -webkit-transform .3s ease-in-out;
}

body.open,
body.is-openned {
  overflow: hidden;
}

blockquote {
  border-left: 0.5rem solid #12205d;
  padding: 2rem 2rem 2rem 3em;
  margin: 0 0 1.6rem 0;
  font-style: italic;
}

blockquote p:last-child {
  margin: 0;
}

img {
  max-width: 100%;
  opacity: 1;
  -webkit-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}

img[data-src],
img.cell-img {
  opacity: 0;
}

button {
  outline: none;
}

address {
  font-style: normal;
}

hr {
  border: 0.051rem solid #e6e6e6;
  margin: 2rem 0;
}

/* -----------------------------------------------------------------------------
   4. FORMULÁRIOS E INPUTS
   Estilização de campos de formulário
   ----------------------------------------------------------------------------- */
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
textarea,
select,
.fei-input-group .fei-input__control {
  display: block;
  width: 100%;
  color: #000000;
  background-color: #ffffff;
  font-size: 1.6rem;
  padding: 1rem 1.6rem;
  margin-bottom: 1.2rem;
  border-radius: 0.6rem;
  line-height: 1.4;
  border: 0.15rem solid #e6e6e6;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

form {
  font-size: 1.6rem;
}

form input[type="submit"] {
  display: block;
  width: 100%;
}

label,
.label {
  display: block;
  font-size: 1.6rem;
  margin: 1.6rem 0 0 0;
}

label+.fei-input-group,
.label+.fei-input-group {
  margin-top: 0;
}

textarea {
  resize: none;
}

input[type="file"] {
  display: none;
}

/* -----------------------------------------------------------------------------
   5. UTILITÁRIOS (CORES, TEXTO, DISPLAY)
   Classes helper para backgrounds, textos e espaçamentos
   ----------------------------------------------------------------------------- */

/* Backgrounds */
.bg {
  background-color: #f9f9f9 !important;
}

.bg-negative {
  background-color: #222222 !important;
}

.bg-primary {
  background-color: #12205d !important;
}

.bg-primary-light {
  background-color: #006eab !important;
}

.bg-secondary {
  background-color: #258dd3 !important;
}

.bg-secondary-light {
  background-color: #006EAA !important;
}

.bg-vest {
  background-color: #f7b31b !important;
}

.bg-projects {
  background-color: #ff8c27 !important;
}

.bg-news {
  background-color: #6536a6 !important;
}

/* Texto */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

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

.text-bold {
  font-weight: bold !important;
}

.text-lighter {
  font-weight: lighter;
}

.text-ucase {
  text-transform: uppercase !important;
}

.text-lcase {
  text-transform: lowercase !important;
}

.text-color-white {
  color: #ffffff !important;
}

.text-color-default {
  color: #444444 !important;
}

.text-color-primary {
  color: #12205d !important;
}

.text-color-primary-light {
  color: #006eab !important;
}

.text-color-secondary {
  color: #258dd3 !important;
}

.text-color-secondary-light {
  color: #006EAA !important;
}

.text-color-vest {
  color: #f7b31b !important;
}

.text-color-project {
  color: #ff8c27 !important;
}

.text-color-news {
  color: #6536a6 !important;
}

.text-color-warn {
  color: #dc4e41 !important;
}

/* Layout Helpers */
.l-equal-height [class^="col-"] {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

/* -----------------------------------------------------------------------------
   6. GRID SYSTEM (BOOTSTRAP CUSTOMIZADO)
   Container, Row e Colunas responsivas
   ----------------------------------------------------------------------------- */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1265px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Definições base das colunas */
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* Colunas Flex Base */
.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

/* Larguras Fixas (Col-1 a Col-12) */
.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* Order e Offset Base */
.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

/* Breakpoint SM (min-width: 576px) */
@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

/* Breakpoint MD (min-width: 768px) */
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    float: left !important;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

/* Breakpoint LG (min-width: 992px) */
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

/* Breakpoint XL (min-width: 1200px) */
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

/* -----------------------------------------------------------------------------
   7. DISPLAY E FLEXBOX UTILITIES
   Classes utilitárias de display e alinhamento flex
   ----------------------------------------------------------------------------- */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

/* Flex Direction & Wrap */
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

/* Justify Content */
.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

/* Align Items */
.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

/* Align Content */
.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

/* Align Self */
.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

/* Responsive Flex Utilities (SM, MD, LG, XL) - Mantidos compactos para brevidade visual mas completos no código */
@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

/* Floats e Pulls Legados */
.l-block {
  width: 100%;
  display: block !important;
}

.l-inline-block {
  display: inline-block !important;
}

.l-float-left {
  float: left;
}

.l-float-right {
  float: right;
}

[class*="pull"] {
  padding: 0 .5em;
}

@media screen and (max-width: 768px) {

  .pull-right,
  .pull-left,
  .l-float-right,
  .l-float-left {
    float: inherit !important;
  }

  .pull-right,
  .pull-left {
    margin: 1.6rem 0;
  }
}

@media screen and (min-width: 992px) {
  .pull-right {
    margin: 0 0 1.6rem 1.6rem;
  }

  .pull-left {
    margin: 0 1.6rem 1.6rem 0;
  }
}

/* -----------------------------------------------------------------------------
   8. SEÇÕES E TÍTULOS INSTITUCIONAIS
   Estilos específicos para seções FEI e títulos decorativos
   ----------------------------------------------------------------------------- */
.fei-section {
  position: relative;
  padding: 4rem 0;
  color: #000000;
  font-weight: lighter;
}

@media screen and (max-width: 767px) {
  .l-text-responsive {
    position: absolute;
    top: 0;
    left: -9999px;
    width: 0;
  }
}

@media screen and (min-width: 992px) {

  .break,
  .l-responsive-break {
    display: block;
  }
}

.d1 {
  font-size: 4.2rem;
}

.d2 {
  font-size: 4rem;
}

.d3 {
  font-size: 3.8rem;
}

.fei-section-title {
  position: relative;
  text-transform: uppercase;
  font-size: 4rem;
}

@media screen and (min-width: 992px) {
  .fei-section-title {
    font-size: 4.2rem;
  }

  .fei-section-title.is-smaller {
    font-size: 3.8rem;
  }
}

.fei-section-title:before {
  content: attr(data-background);
  display: none;
  font-size: 2em;
  font-weight: lighter;
  position: absolute;
  top: 50%;
  left: 0;
  opacity: .05;
  white-space: nowrap;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 992px) {
  .fei-section-title:before {
    display: block;
  }
}

.fei-section-title:first-of-type {
  margin-top: 0;
}

.fei-section-title.fei-section-title--bordered:after {
  content: '';
  background: #63C1D0;
  display: block;
  position: absolute;
  bottom: -0.2em;
  width: 5rem;
  height: 0.5rem;
  left: 0.1rem;
}

.fei-slideshow__caption .fei-section-title,
.fei-modal .fei-section-title,
.fei-footer .fei-section-title {
  color: #ffffff;
}

/* -----------------------------------------------------------------------------
   9. NAVEGAÇÃO E HEADER
   Menu principal, dropdowns, mobile menu e ícones
   ----------------------------------------------------------------------------- */
.fei-navigation--main,
.fei-slideshow-nav,
.fei-tabs,
.fei-footer .fei-footer__section .fei-footer__navigation {
  font-size: 1.19rem;
  font-weight: lighter;
  z-index: 15;
}

.fei-navigation--main li,
.fei-slideshow-nav li,
.fei-tabs li,
.fei-footer .fei-footer__section .fei-footer__navigation li {
  display: inline-block;
  margin: 0 -0.4rem;
  line-height: 1.2;
  vertical-align: middle;
  list-style: none;
}

/* Dropdown Hover States */
.fei-navigation--main li:hover>a+.fei-navigation-dropdown,
.fei-slideshow-nav li:hover>a+.fei-navigation-dropdown,
.fei-tabs li:hover>a+.fei-navigation-dropdown,
.fei-footer .fei-footer__section .fei-footer__navigation li:hover>a+.fei-navigation-dropdown,
.fei-navigation--main li.hover>a+.fei-navigation-dropdown,
.fei-slideshow-nav li.hover>a+.fei-navigation-dropdown,
.fei-tabs li.hover>a+.fei-navigation-dropdown,
.fei-footer .fei-footer__section .fei-footer__navigation li.hover>a+.fei-navigation-dropdown {
  display: block;
  -webkit-animation: fade .3s;
  animation: fade .3s;
}

.fei-navigation--main a,
.fei-slideshow-nav a,
.fei-tabs a,
.fei-footer .fei-footer__section .fei-footer__navigation a {
  display: block;
}

.fei-navigation--main a,
.fei-slideshow-nav a,
.fei-tabs a,
.fei-footer .fei-footer__section .fei-footer__navigation a,
.fei-navigation--main a:hover,
.fei-slideshow-nav a:hover,
.fei-tabs a:hover,
.fei-footer .fei-footer__section .fei-footer__navigation a:hover {
  text-decoration: none;
}

/* Affix / Sticky Nav */
.affix {
  position: relative;
}

@media screen and (max-width: 991px) {
  [data-tab="affix"] {
    width: 100% !important;
  }
}

@media screen and (min-width: 992px) {
  .affix-top {
    position: relative;
  }

  .affix {
    position: fixed;
    top: 0;
    margin-top: 1.6rem;
  }

  .affix-bottom {
    position: relative;
    top: auto;
    bottom: 0;
  }
}

/* Footer Section Styles */
.fei-section--footer {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.4rem;
  font-weight: normal;
}

.fei-section--footer ul,
.fei-section--footer p,
.fei-section--footer form {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  margin-left: 1.4rem;
}

.fei-section--footer li {
  margin-bottom: 0.5rem;
}

.fei-section--footer a {
  text-decoration: none;
}

.fei-section--footer .fei-footer__title {
  padding-left: 1rem;
  border-left: 0.4rem solid;
}

/* Main Navigation Colors */
.fei-navigation--main {
  color: #ffffff;
}

.fei-navigation--main a {
  text-decoration: none;
}

/* Internal Navigation Bar */
.fei-navigation__internal {
  color: rgba(255, 255, 255, 0.5);
  background: #000000;
  text-align: center;
  white-space: nowrap;
  overflow-y: auto;
}

@media screen and (min-width: 992px) {
  .fei-navigation__internal {
    text-align: right;
  }
}

.fei-navigation__internal ul {
  display: inline-block;
}

.fei-navigation__internal a {
  padding: 1rem 1.2rem;
}

.fei-navigation__internal a:hover {
  color: #000000;
  background: #ffffff;
}

/* Social Media Hover Colors */
.fei-navigation__internal a.is-facebook:hover {
  color: #ffffff;
  background-color: #4267b2;
}

.fei-navigation__internal a.is-twitter:hover {
  color: #ffffff;
  background-color: #1da1f2;
}

.fei-navigation__internal a.is-youtube:hover {
  color: #ffffff;
  background-color: #ff0000;
}

.fei-navigation__internal a.is-instagram:hover {
  color: #ffffff;
  background-color: #d92c7c;
}

.fei-navigation__internal a.is-linkedin:hover {
  color: #ffffff;
  background-color: #0077b5;
}

.fei-navigation__internal a.is-flickr:hover {
  color: #ffffff;
  background-color: #0063db;
}

/* Header Structure */
.fei-navigation__header {
  position: relative;
  -webkit-box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.5rem 0 rgba(0, 0, 0, 0.2);
}

.fei-navigation__header .fei-navigation__logo,
.fei-navigation__header .fei-navigation__buttons {
  width: 100%;
}

@media screen and (min-width: 768px) {

  .fei-navigation__header .fei-navigation__logo,
  .fei-navigation__header .fei-navigation__buttons {
    display: inline-block;
    width: 50%;
    margin: 0 0 0 -0.5rem;
    vertical-align: middle;
  }
}

.fei-navigation__header .fei-hnav-aside {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .fei-navigation__header .fei-hnav-aside {
    display: inline-block;
    width: 50%;
    margin: 0 0 0 -0.5rem;
    vertical-align: middle;
  }

  .fei-navigation__header .fei-hnav-aside .fei-navigation__buttons {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
  }
}

.fei-navigation__header .fei-navigation__logo {
  margin: 1.6rem 0;
}

.fei-navigation__header .fei-navigation__logo a {
  display: inline-block;
  vertical-align: bottom;
}

.fei-navigation__header .fei-navigation__logo img {
  width: auto;
  height: 8rem;
}

.fei-navigation__header .fei-navigation__logo img.jesuitas {
  height: 6rem;
  margin-left: 1.6rem;
}

@media screen and (min-width: 768px) {
  .fei-navigation__header .fei-navigation__buttons {
    text-align: right;
  }
}

.fei-navigation__header .fei-navigation__buttons .button {
  min-width: 4rem;
  margin-right: 0.8rem;
}

/* Mobile Collapse Button */
.fei-collapse-button {
  display: block;
  text-align: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0.5em 1.2em;
  line-height: 1.4;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .fei-collapse-button {
    text-align: right;
  }
}

@media screen and (min-width: 992px) {
  .fei-collapse-button {
    display: none;
  }
}

.fei-collapse-button:after {
  content: 'menu';
  display: inline-block;
  margin-right: 1.6rem;
}

/* Hamburger Icon Animation */
.fei-navigation__icon,
.fei-nav-icon {
  display: inline-block;
  vertical-align: middle;
}

.fei-navigation__icon .bar,
.fei-navigation__icon span,
.fei-nav-icon .bar,
.fei-nav-icon span {
  display: block;
  background: #ffffff;
  width: 2rem;
  height: 0.2rem;
  margin: 0.5rem 0.2rem;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

/* Close State (X) */
.fei-navigation__icon.fei-navigation__icon--close .bar:first-child,
.fei-navigation__icon.fei-navigation__icon--close span:first-child,
.fei-navigation__icon.fei-nav-close .bar:first-child,
.fei-navigation__icon.fei-nav-close span:first-child,
.fei-nav-icon.fei-navigation__icon--close .bar:first-child,
.fei-nav-icon.fei-navigation__icon--close span:first-child,
.fei-nav-icon.fei-nav-close .bar:first-child,
.fei-nav-icon.fei-nav-close span:first-child {
  -webkit-transform: translateY(0.7rem) rotate(45deg);
  -ms-transform: translateY(0.7rem) rotate(45deg);
  transform: translateY(0.7rem) rotate(45deg);
}

.fei-navigation__icon.fei-navigation__icon--close .bar:nth-child(even),
.fei-navigation__icon.fei-navigation__icon--close span:nth-child(even),
.fei-navigation__icon.fei-nav-close .bar:nth-child(even),
.fei-navigation__icon.fei-nav-close span:nth-child(even),
.fei-nav-icon.fei-navigation__icon--close .bar:nth-child(even),
.fei-nav-icon.fei-navigation__icon--close span:nth-child(even),
.fei-nav-icon.fei-nav-close .bar:nth-child(even),
.fei-nav-icon.fei-nav-close span:nth-child(even) {
  opacity: 0;
}

.fei-navigation__icon.fei-navigation__icon--close .bar:last-child,
.fei-navigation__icon.fei-navigation__icon--close span:last-child,
.fei-navigation__icon.fei-nav-close .bar:last-child,
.fei-navigation__icon.fei-nav-close span:last-child,
.fei-nav-icon.fei-navigation__icon--close .bar:last-child,
.fei-nav-icon.fei-navigation__icon--close span:last-child,
.fei-nav-icon.fei-nav-close .bar:last-child,
.fei-nav-icon.fei-nav-close span:last-child {
  -webkit-transform: translateY(-0.7rem) rotate(-45deg);
  -ms-transform: translateY(-0.7rem) rotate(-45deg);
  transform: translateY(-0.7rem) rotate(-45deg);
}

/* Body Navigation / Collapse Menu */
.fei-body-navigation,
.fei-navigation__body {
  background-color: #12205d;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.fei-bnav-body,
.fei-navigation__collapse {
  display: none;
  color: #000000;
  background-color: #ffffff;
}

.fei-bnav-body.is-hidden,
.fei-navigation__collapse.is-hidden {
  display: none;
}

@media screen and (max-width: 767.8px) {

  .fei-bnav-body li,
  .fei-navigation__collapse li {
    display: block;
    margin: 0;
  }
}

.fei-bnav-body a,
.fei-navigation__collapse a {
  text-transform: uppercase;
  padding: 1rem 1.6rem;
}

@media screen and (min-width: 992px) {

  .fei-bnav-body,
  .fei-navigation__collapse {
    color: #ffffff;
    display: block !important;
    background-color: transparent;
  }

  .fei-bnav-body li,
  .fei-navigation__collapse li {
    position: relative;
  }

  .fei-bnav-body li:after,
  .fei-navigation__collapse li:after {
    content: '\\';
    display: block;
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .fei-bnav-body li:last-child:after,
  .fei-navigation__collapse li:last-child:after {
    display: none;
  }

  .fei-bnav-body a,
  .fei-navigation__collapse a {
    padding: 1.6rem;
  }

  .fei-bnav-body .fei-navigation-dropdown li:after,
  .fei-navigation__collapse .fei-navigation-dropdown li:after {
    display: none;
  }
}

/* Dropdown Menu */
.fei-navigation-dropdown {
  display: none;
  color: #222222;
  background: #ffffff;
}

.fei-navigation-dropdown li {
  display: block;
  margin: 0;
}

.fei-navigation-dropdown li a {
  text-transform: initial;
}

@media screen and (max-width: 767.98px) {
  .fei-navigation-dropdown .fei-navigation-dropdown {
    display: block;
    margin-left: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .fei-navigation-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    padding: 0.5rem;
    z-index: 20;
    border-radius: 0.4rem;
    -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  }

  .fei-navigation-dropdown:before {
    content: '';
    display: block;
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 0;
    height: 0;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-bottom: 1rem solid #ffffff;
  }

  .fei-navigation-dropdown li a {
    margin: 0;
    padding: 1.2rem 1.4rem;
    white-space: nowrap;
    border-radius: 0.4rem;
  }

  .fei-navigation-dropdown li:hover>a,
  .fei-navigation-dropdown li.hover>a,
  .fei-navigation-dropdown li.is-hovered>a {
    opacity: 1;
    color: #ffffff;
    background-color: #12205d;
    -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  }

  .fei-navigation-dropdown .fei-navigation-dropdown {
    display: none;
    min-width: auto;
    top: -1rem;
    left: 99%;
  }

  .fei-navigation-dropdown .fei-navigation-dropdown.l-align-right,
  .fei-navigation-dropdown .fei-navigation-dropdown[align="right"] {
    left: auto;
    right: 99%;
  }

  .fei-navigation-dropdown .fei-navigation-dropdown:before {
    display: none;
  }
}

/* Quick Navigation (Slide Right Panel) */
.fei-navigation__quick {
  display: none;
  max-width: 40rem;
  width: 100%;
  padding: 4rem 0;
  font-size: 1.8rem;
  line-height: 1.4;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: #222222;
  z-index: 31;
  overflow-y: auto;
  -webkit-box-shadow: -1.6rem 0 4rem rgba(0, 0, 0, 0.5);
  box-shadow: -1.6rem 0 4rem rgba(0, 0, 0, 0.5);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform .15s ease;
  transition: -webkit-transform .15s ease;
  -o-transition: transform .15s ease;
  transition: transform .15s ease;
  transition: transform .15s ease, -webkit-transform .15s ease;
}

.fei-navigation__quick.is-active {
  display: block;
  -webkit-animation: slideRight .15s ease;
  animation: slideRight .15s ease;
}

.fei-navigation__quick.is-hiding {
  display: block;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.fei-navigation__quick li {
  display: block;
}

.fei-navigation__quick a {
  display: block;
  color: #ffffff;
  padding: 1.6rem;
  margin: 0 1.6rem;
  border-radius: 0.4rem;
}

@media screen and (min-width: 992px) {
  .fei-navigation__quick a:hover {
    color: #ffffff;
    background: #12205d;
    opacity: 1;
    -webkit-box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
  }
}

.fei-navigation__quick .button--close {
  color: #ffffff;
  font-size: 3.2rem;
}

/* Off Canvas Overlay */
.off-canvas {
  display: none;
}

@media screen and (min-width: 768px) {
  .off-canvas.is-active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 30;
  }
}

/* Share Links Widget */
.fei-sharelinks {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 25;
}

.fei-sharelinks li {
  margin: 0;
}

.fei-sharelinks__button a,
.fei-sharelinks__body a {
  font-size: 2rem;
  width: 4rem;
  min-height: 4rem;
  line-height: 4rem;
  color: rgba(255, 255, 255, 0.8);
  border: none;
  text-align: center;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.fei-sharelinks__button>a {
  display: block;
  background-color: #ff8c27;
}

.fei-sharelinks__body {
  overflow-x: auto;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.fei-sharelinks__body ul li a {
  display: block;
  background-color: #222;
  color: #eee;
}

.facebook-share {
  background-color: #4267b2 !important;
}

.twitter-share {
  background-color: #1da1f2 !important;
}

.whatsapp-share {
  background-color: #006EAA !important;
}

.gplus-share {
  background-color: #db4437 !important;
}

.linkedin-share {
  background-color: #0077B5 !important;
}

.clipboard {
  background-color: #d82010 !important;
}

@media screen and (max-width: 767px) {
  .fei-sharelinks {
    width: 100%;
    position: fixed;
    bottom: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  .fei-sharelinks.is-active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .fei-sharelinks__button>a {
    position: absolute;
    top: -5.5rem;
    right: 1rem;
  }

  .fei-sharelinks__body {
    background-color: #fff;
    text-align: center;
  }

  .fei-sharelinks__body ul li a {
    margin: 1rem 0.5rem;
  }

  .fei-sharelinks__body ul {
    white-space: nowrap;
  }

  .fei-sharelinks__body ul li {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .fei-sharelinks {
    position: fixed;
    top: 18.5rem;
    left: 0;
    height: 0;
  }

  .fei-sharelinks .fei-sharelinks__body {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .fei-sharelinks.is-active .fei-sharelinks__body {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  /* 
       Nota: Código comentado no original mantido como comentário
       .fei-sharelinks.is-active .fei-sharelinks__button > a { transform: rotate(180deg); } 
    */
  .fei-sharelinks__button>a {
    position: absolute;
    top: -4.5rem;
    left: 0;
  }

  .fei-sharelinks__body ul li a {
    margin: 0;
  }

  .fei-sharelinks__button>a:hover,
  .fei-sharelinks__body ul li a:hover {
    width: 6rem;
  }
}

/* -----------------------------------------------------------------------------
   10. COMPONENTES DE UI (BOTÕES, TAGS, BREADCRUMB)
   ----------------------------------------------------------------------------- */
.button,
a.button,
button.button,
input.button,
.button--close,
.close-button {
  display: inline-block;
  font-size: 1.6rem;
  color: #444444;
  background-color: transparent;
  text-align: center;
  padding: 0.5em 1.2em;
  margin: 0.5rem 0.5rem 0.5rem 0;
  line-height: 1.4;
  font-weight: normal;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  text-decoration: none;
  border-radius: 0.4rem;
  text-indent: 0;
}

@media screen and (min-width: 992px) {

  .button:hover,
  .button--close:hover,
  .close-button:hover,
  .button:focus,
  .button--close:focus,
  .close-button:focus {
    opacity: 1;
    background: #e6e6e6;
    text-decoration: none;
  }

  .button:disabled,
  .button--close:disabled,
  .close-button:disabled,
  .is-disabled.button,
  .is-disabled.button--close,
  .is-disabled.close-button {
    opacity: .7;
    pointer-events: none;
  }
}

.button:last-child,
.button--close:last-child,
.close-button:last-child {
  margin-right: 0;
}

@media screen and (min-width: 992px) {
  .button {
    padding: 0.5em 1.2em;
  }

  .button.button--large {
    font-size: 1.8rem;
    padding: 0.7em 1.5em;
  }

  .button.button--small {
    font-size: 1.4rem;
    padding: 0.3em 0.8em;
  }
}

.button.button--shadow {
  -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
}

.button.button--shadow:hover,
.button.button--shadow:focus {
  -webkit-box-shadow: 0 2rem 4rem -1rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 2rem 4rem -1rem rgba(0, 0, 0, 0.3);
}

/* Button Variants */
.button.button--negative {
  color: #ffffff;
  background-color: #444444;
}

.button.button--negative:hover,
.button.button--negative:focus {
  background: #2b2b2b;
}

.button.button--primary {
  color: #ffffff;
  background: #12205d;
}

.button.button--primary:hover,
.button.button--primary:focus {
  background: #134067;
}

.button.button--primary-light {
  color: #ffffff;
  background: #006eab;
}

.button.button--primary-light:hover,
.button.button--primary-light:focus {
  background: #004d78;
}

.button.button--secondary {
  color: #ffffff;
  background: #006EAA;
}

.button.button--secondary:hover,
.button.button--secondary:focus {
  background: #1c8e42;
}

.button.button--secondary-light {
  color: #ffffff;
  background: #006EAA;
}

.button.button--secondary-light:hover,
.button.button--secondary-light:focus {
  background: #1da851;
}

.button.button--news {
  color: #ffffff;
  background: #6536a6;
}

.button.button--news:hover,
.button.button--news:focus {
  background: #4e2980;
}

.button.button--project {
  color: #ffffff;
  background: #ff8c27;
}

.button.button--project:hover,
.button.button--project:focus {
  background: #f37200;
}

.button.button--vest {
  color: #ffffff;
  background: #f7b31b;
}

.button.button--vest:hover,
.button.button--vest:focus {
  background: #d79708;
}

/* Social Buttons */
.button.button--facebook {
  color: #ffffff;
  background: #4267b2;
}

.button.button--facebook:hover,
.button.button--facebook:focus {
  background: #34518d;
}

.button.button--twitter {
  color: #ffffff;
  background: #1da1f2;
}

.button.button--twitter:hover,
.button.button--twitter:focus {
  background: #0c85d0;
}

.button.button--youtube {
  color: #ffffff;
  background: #ff0000;
}

.button.button--youtube:hover,
.button.button--youtube:focus {
  background: #cc0000;
}

.button.button--instagram {
  color: #ffffff;
  background: #d92c7c;
}

.button.button--instagram:hover,
.button.button--instagram:focus {
  background: #b22064;
}

.button.button--linkedin {
  color: #ffffff;
  background: #0077b5;
}

.button.button--linkedin:hover,
.button.button--linkedin:focus {
  background: #005582;
}

.button.button--flickr {
  color: #ffffff;
  background: #0063db;
}

.button.button--flickr:hover,
.button.button--flickr:focus {
  background: #004ca8;
}

/* Transparent Buttons */
.button.button--transparent {
  background: transparent;
  color: #f9f9f9;
  border: 0.15rem solid #f9f9f9;
}

.button.button--transparent:hover,
.button.button--transparent:focus {
  color: #444444;
  background-color: #f9f9f9;
}

.button.button--transparent.button--negative {
  color: #444444;
  border-color: #444444;
}

.button.button--transparent.button--negative:hover,
.button.button--transparent.button--negative:focus {
  color: #ffffff;
  background-color: #444444;
}

.button.button--transparent.button--primary {
  color: #12205d;
  border-color: #12205d;
}

.button.button--transparent.button--primary:hover,
.button.button--transparent.button--primary:focus {
  color: #ffffff;
  background-color: #12205d;
}

.button.button--transparent.button--primary-light {
  color: #006eab;
  border-color: #006eab;
}

.button.button--transparent.button--primary-light:hover,
.button.button--transparent.button--primary-light:focus {
  color: #ffffff;
  background-color: #006eab;
}

.button.button--transparent.button--secondary {
  color: #258dd3;
  border-color: #258dd3;
}

.button.button--transparent.button--secondary:hover,
.button.button--transparent.button--secondary:focus {
  color: #ffffff;
  background-color: #258dd3;
}

.button.button--transparent.button--secondary-light {
  color: #258dd3;
  border-color: #258dd3;
}

.button.button--transparent.button--secondary-light:hover,
.button.button--transparent.button--secondary-light:focus {
  color: #ffffff;
  background-color: #006EAA;
}

.button.button--transparent.button--news {
  color: #6536a6;
  border-color: #6536a6;
}

.button.button--transparent.button--news:hover,
.button.button--transparent.button--news:focus {
  color: #ffffff;
  background-color: #6536a6;
}

.button.button--transparent.button--project {
  color: #ff8c27;
  border-color: #ff8c27;
}

.button.button--transparent.button--project:hover,
.button.button--transparent.button--project:focus {
  color: #ffffff;
  background-color: #ff8c27;
}

.button.button--transparent.button--vest {
  color: #f7b31b;
  border-color: #f7b31b;
}

.button.button--transparent.button--vest:hover,
.button.button--transparent.button--vest:focus {
  color: #ffffff;
  background-color: #f7b31b;
}

.button-row .button {
  margin-right: 0.5rem;
}

.button-row .button:last-child {
  margin-right: 0;
}

/* Close Button */
.button--close,
.close-button {
  background-color: transparent;
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  padding: 1rem;
  line-height: 1.6rem;
  top: 0;
  right: 0;
  font-size: 3.2rem;
  border: 0;
}

.button--close:hover,
.button--close:focus,
.close-button:hover,
.close-button:focus {
  background-color: transparent;
  opacity: .6;
}

/* Tags */
.tag,
.fei-tags .fei-news-tag {
  display: inline-block;
  padding: 0.5rem;
  font-size: 1em;
  line-height: 1;
  background: #444444;
  color: #ffffff;
  border-radius: 0.4rem;
  z-index: 5;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tag.tag--primary,
.fei-tags .tag--primary.fei-news-tag {
  background-color: #12205d;
}

.tag.tag--secondary,
.fei-tags .tag--secondary.fei-news-tag {
  background-color: #258dd3;
}

.tag.tag--project,
.fei-tags .tag--project.fei-news-tag {
  background-color: #ff8c27;
}

.tag.tag--news,
.fei-tags .tag--news.fei-news-tag {
  background-color: #6536a6;
}

/* Breadcrumb */
.fei-breadcrumb {
  font-size: 1.4rem;
  opacity: 0.5;
}

.fei-breadcrumb li {
  display: inline-block;
  color: inherit;
  font-weight: normal;
  margin-bottom: 1.6rem;
}

.fei-breadcrumb li.is-active {
  font-weight: bold;
}

.fei-breadcrumb li:after {
  content: "\\";
  display: inline-block;
  color: #444444;
  padding: 0 1rem;
}

.fei-breadcrumb li:last-child:after {
  display: none;
}

/* -----------------------------------------------------------------------------
   11. SLIDESHOW E GALERIAS
   ----------------------------------------------------------------------------- */
.fei-slideshow {
  position: relative;
  z-index: 1;
}

.fei-slideshow .fei-slideshow__item {
  position: relative;
  color: #ffffff;
  font-weight: 300;
  width: 100%;
  overflow: hidden;
}

.fei-slideshow .fei-slideshow__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: initial;
  height: 101%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .fei-slideshow .fei-slideshow__img img {
    width: 101%;
    height: auto;
  }
}

.fei-slideshow-container,
.fei-slideshow__container {
  width: 100%;
  overflow: hidden;
}

.fei-slideshow-default .fei-slideshow__item {
  min-height: 45rem;
}

.fei-slideshow-default .fei-slideshow__item.fei-slideshow__item--internal {
  min-height: 25rem;
}

@media screen and (min-width: 768px) {
  .fei-slideshow-default .fei-slideshow__item {
    min-height: 50rem;
  }
}

.fei-slideshow__caption {
  position: absolute;
  font-size: 1.8rem;
  line-height: 2;
  padding: 0;
  max-width: 68rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (min-width: 992px) {
  .fei-slideshow__caption {
    max-width: 75rem;
  }
}

@media screen and (min-width: 1200px) {
  .fei-slideshow__caption .fei-section-title .larger {
    font-size: 7rem;
  }
}

/* Slideshow Controls */
.fei-slideshow__controls .control {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
}

.fei-slideshow__controls .control.next {
  left: auto;
  right: 0;
}

@media screen and (min-width: 768px) {
  .fei-slideshow__controls .control {
    visibility: hidden;
    background: transparent;
    opacity: 0;
    top: 50%;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    margin-top: -2.5rem;
    border-radius: 100%;
    border: 2px solid #ffffff;
    -webkit-transform: translateX(-10rem);
    -ms-transform: translateX(-10rem);
    transform: translateX(-10rem);
    -webkit-transition: all 0.3s ease-in-out, opacity 0.1s ease-in-out;
    -o-transition: all 0.3s ease-in-out, opacity 0.1s ease-in-out;
    transition: all 0.3s ease-in-out, opacity 0.1s ease-in-out;
  }

  .fei-slideshow__controls .control.next {
    left: auto;
    right: 20px;
    -webkit-transform: translateX(10rem);
    -ms-transform: translateX(10rem);
    transform: translateX(10rem);
  }

  .fei-slideshow__controls .control:hover,
  .fei-slideshow__controls .control:focus {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .fei-slideshow__controls .control.control--negative {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .fei-slideshow__controls .control.control--negative:hover,
  .fei-slideshow__controls .control.control--negative:focus {
    background-color: rgba(0, 0, 0, 0.3);
  }
}

@media screen and (min-width: 768px) {
  [class*="fei-slideshow"]:hover .fei-slideshow__controls .control {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slideshow Navigation Dots */
.fei-slideshow-nav {
  display: block;
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  z-index: 6;
}

@media screen and (max-width: 991px) {
  .fei-slideshow-nav {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .fei-slideshow-nav {
    -webkit-transform: translateY(3.5rem);
    -ms-transform: translateY(3.5rem);
    transform: translateY(3.5rem);
  }
}

.fei-slideshow-nav .fei-slideshow-nav__item {
  overflow: hidden;
  min-width: 1rem;
  min-height: 1rem;
  margin: 0 .5em;
  background-color: #222222;
  border-radius: 100%;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-box-shadow: 0 0 0 0.4rem #ffffff;
  box-shadow: 0 0 0 0.4rem #ffffff;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .fei-slideshow-nav .fei-slideshow-nav__item {
    max-width: 4.5rem;
  }

  .fei-slideshow-nav .fei-slideshow-nav__item:hover {
    background-color: #006eab;
    -webkit-box-shadow: 0 0 0 0.4rem rgba(0, 110, 171, 0.6);
    box-shadow: 0 0 0 0.4rem rgba(0, 110, 171, 0.6);
  }

  .fei-slideshow-nav .fei-slideshow-nav__item.is-active {
    background-color: #006eab;
    -webkit-box-shadow: 0 0 0 0.4rem rgba(0, 110, 171, 0.6);
    box-shadow: 0 0 0 0.4rem rgba(0, 110, 171, 0.6);
  }
}

/* Slideshow Details Bar */
.fei-slideshow-details {
  background: #12205d;
  color: #ffffff;
  text-align: center;
  font-weight: normal;
  overflow-y: auto;
}

.fei-slideshow-details__container {
  display: block;
  margin: auto;
  padding: 1.6rem 0;
  white-space: nowrap;
  overflow: auto;
}

.fei-slideshow-details__container .fei-slideshow-details__item {
  display: inline-block;
  padding: 0 2.4rem;
  position: relative;
  vertical-align: top;
}

.fei-slideshow-details__container .fei-slideshow-details__item .fei-slideshow-details__title {
  color: #258dd3;
  font-size: 1.8rem;
  margin: 0 0 1.2rem 0;
}

.fei-slideshow-details__container .fei-slideshow-details__item li {
  margin: 0 0 1.2rem 0;
  line-height: 1;
}

.fei-slideshow-details__container:after {
  content: '';
  display: block;
  background: rgba(255, 255, 255, 0.2);
  width: 0.1rem;
  height: 4rem;
  position: absolute;
  top: 2rem;
  right: -0.2rem;
  -webkit-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

.fei-slideshow-details__container:last-child:after {
  display: none;
}

/* Slide Photos Gallery */
.fei-slidephotos {
  position: relative;
  padding: 0;
}

.fei-slidephotos:after,
.fei-slidephotos:before {
  content: '';
  display: block;
  width: 0.2rem;
  height: 70%;
  background: #006EAA;
  position: absolute;
  top: -3%;
  right: 1rem;
  -webkit-box-shadow: 1.6rem 4rem 0 #006EAA;
  box-shadow: 1.6rem 4rem 0 #006EAA;
  z-index: 5;
}

.fei-slidephotos:before {
  bottom: -3%;
  top: auto;
  right: auto;
  left: 1rem;
  z-index: 3;
  -webkit-box-shadow: -1.6rem -4em 0 #006EAA;
  box-shadow: -1.6rem -4em 0 #006EAA;
  z-index: 5;
}

.fei-slidephotos__container {
  position: relative;
  margin: 0 0 2rem 0;
}

.fei-slidephotos__gallery .flickity-viewport,
.fei-slidephotos__gallery .fei-slidephotos__container {
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.2);
}

.fei-slidephotos__gallery .flickity-viewport {
  background: #222222;
  height: 35rem;
}

@media screen and (min-width: 768px) {
  .fei-slidephotos__gallery .flickity-viewport {
    height: 40rem;
  }
}

@media screen and (min-width: 992px) {
  .fei-slidephotos__gallery .flickity-viewport {
    height: 50rem;
  }
}

.fei-slidephotos__gallery .is-cell {
  height: 100%;
}

.fei-slidephotos__gallery img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.fei-slidephotos__caption {
  position: absolute;
  font-size: 1.6rem;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  padding: 3rem 0;
  margin: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(34, 34, 34, 0.8)), to(transparent));
  background: -webkit-linear-gradient(bottom, rgba(34, 34, 34, 0.8), transparent);
  background: -o-linear-gradient(bottom, rgba(34, 34, 34, 0.8), transparent);
  background: linear-gradient(to top, rgba(34, 34, 34, 0.8), transparent);
  font-weight: 600;
  text-transform: uppercase;
  border-bottom-left-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  z-index: 5;
}

@media screen and (min-width: 768px) {
  .fei-slidephotos__caption {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 992px) {
  .fei-slidephotos__caption {
    font-size: 2.2rem;
  }
}

/* Image Utilities */
.fei-img-rounded {
  border-radius: 500px;
}

.fei-img-shadow {
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  margin: 1.6rem 0;
}

.fei-img-shadow.fei-img-rounded {
  border-radius: 500px;
}

/* -----------------------------------------------------------------------------
   12. CARDS E TABS
   ----------------------------------------------------------------------------- */
.fei-card {
  background: #ffffff;
  padding: 0;
  margin: 1.6rem 0;
  overflow: hidden;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.fei-card img {
  width: 100%;
}

.fei-card .fei-card__body {
  padding: 2rem;
}

.fei-card .fei-card__body p:first-child,
.fei-card .fei-card__body .fei-card__info {
  font-size: 1.4rem;
  color: #444444;
  font-weight: normal;
  margin-bottom: 0;
}

.fei-card .fei-card__body p:first-child+.fei-card__title,
.fei-card .fei-card__body .fei-card__info+.fei-card__title {
  margin-top: 0;
}

.fei-card p:last-child,
.fei-card li:last-child {
  margin-bottom: 0;
  color: #fff
}

.fei-card .fei-card__title {
  font-size: 1.8rem;
  color: #444444;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.fei-card .fei-card__title:last-child {
  margin-bottom: 0;
}

.fei-card .fei-card__title.fei-card__title--lg {
  font-size: 2rem;
}

.fei-card .fei-card__title.fei-card__title--sm {
  font-size: 1.6rem;
}

/* Card Alt (Overlay Image) */
.fei-card--alt {
  position: relative;
  color: #ffffff;
}

.fei-card--alt:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.75), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.75), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

@media screen and (max-width: 767px) {
  .fei-card--alt {
    position: relative;
    width: 30rem;
    height: 30rem;
    margin-left: auto;
    margin-right: auto;
  }

  .fei-card--alt img {
    position: absolute;
    left: 50%;
    max-width: initial;
    width: auto;
    height: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.fei-card--alt .fei-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.fei-card--alt .fei-card__body.fei-card__body--middle {
  bottom: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.fei-card--alt .fei-card__body p:first-child {
  color: #ffffff;
}

.fei-card--alt .fei-card__title {
  color: #fff;
}

/* Card Side Layout */
.fei-card--side {
  font-size: 1.4rem;
}

.fei-card--side .fei-card__body {
  padding: 0.8rem 1.3rem 0 0;
  width: 100%;
}

.fei-card--side .fei-card__title {
  margin-bottom: 0.3em;
}

.fei-card--side p,
.fei-card--side li {
  margin-bottom: 0;
}

.fei-card--side img {
  float: left;
  margin: 0 2rem 0 0;
  max-width: 32%;
  height: auto;
}

.fei-card--side img.right,
.fei-card--side img.is-aligned-right {
  float: right;
  margin: 0 0 0 1.2rem;
}

/* Card Link Wrapper */
.fei-card-link {
  text-decoration: none;
  opacity: 1;
}

.fei-card-link .fei-card {
  -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
}

.fei-card-link:hover {
  text-decoration: none;
  opacity: 1;
}

.fei-card-link:hover .fei-card {
  -webkit-box-shadow: 0 2rem 4rem -1rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 2rem 4rem -1rem rgba(0, 0, 0, 0.3);
}

.img-blured,
.img--blured {
  -webkit-filter: blur(0.1em);
  filter: blur(0.1em);
}

/* Tabs Component */
.fei-tabs {
  width: 100%;
  margin: 2rem 0 2rem 0;
  overflow-x: auto;
  white-space: nowrap;
  border-radius: 0.4rem;
  padding: 0;
  z-index: 10;
}

.fei-tabs a {
  color: #000000;
  opacity: .6;
  padding: 1rem 1.6rem;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  white-space: normal;
}

.fei-tabs li {
  margin: 0.7rem;
  border: 0;
  line-height: 1.2;
}

.fei-tabs li.is-active a,
.fei-tabs li:hover a,
.fei-tabs li:focus a {
  opacity: 1;
  color: #ffffff;
  background: #12205d;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
}

.fei-projects .fei-tabs li.is-active a,
.fei-projects .fei-tabs li:hover a,
.fei-projects .fei-tabs li:focus a {
  background-color: #ff8c27;
}

.fei-news .fei-tabs li.is-active a,
.fei-news .fei-tabs li:hover a,
.fei-news .fei-tabs li:focus a {
  background-color: #6536a6;
}

@media screen and (min-width: 768px) {
  .fei-tabs {
    width: 100%;
    overflow-x: visible;
  }
}

.fei-tabs.fei-tabs--side {
  background: #ffffff;
}

@media screen and (min-width: 992px) {
  .fei-tabs.fei-tabs--side {
    border: 0.1rem solid #f2f2f2;
    margin: 0;
    overflow: visible;
  }

  .fei-tabs.fei-tabs--side li {
    display: block;
  }

  .fei-tabs.fei-tabs--side a {
    padding: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .fei-tabs .fei-tabs-scroll {
    display: none;
  }
}

/* Painel Container (Tabs Content) */
.fei-painel-container {
  display: none;
}

.fei-painel-container.is-active {
  display: block;
  -webkit-animation: fade .5s;
  animation: fade .5s;
}

/* -----------------------------------------------------------------------------
   13. INPUT GROUPS E CHECKBOXES CUSTOMIZADOS
   ----------------------------------------------------------------------------- */
.fei-input-group {
  display: table;
  overflow: hidden;
  border: 0.2rem solid #e6e6e6;
  margin-bottom: 1.2rem;
  border-radius: 0.6rem;
}

.fei-input-group .fei-input__control,
.fei-input-group .fei-input__btn,
.fei-input-group .fei-input__addon {
  display: table-cell;
  border-collapse: collapse;
  margin: 0;
  white-space: nowrap;
  font-size: inherit;
}

.fei-input-group .fei-input__addon,
.fei-input-group .fei-input__btn {
  width: 1%;
  white-space: nowrap;
}

.fei-input-group .fei-input__control {
  background-color: transparent;
  border: 0;
  border-radius: 0;
}

.fei-input-group .fei-input__btn {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.fei-input-group .fei-input__btn .button {
  font-size: inherit;
}

.fei-input-group.fei-input-group--lg {
  font-size: 1.8rem;
}

/* Custom Radio/Checkbox */
.fei-input-check {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0 1.6rem 2rem 0;
  line-height: 2.5rem;
}

.fei-input-check .fei-input__radio,
.fei-input-check .fei-input__checkmark {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background: #eee;
  vertical-align: middle;
  margin-right: 1rem;
  -webkit-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.fei-input-check .fei-input__radio {
  border-radius: 5rem;
}

.fei-input-check .fei-input__checkmark {
  color: transparent;
  text-align: center;
}

.fei-input-check input {
  position: absolute;
  opacity: 0;
}

.fei-input-check input:checked~.fei-input__radio {
  background-color: #12205d;
  -webkit-box-shadow: 0 0 0 0.3em rgba(27, 91, 146, 0.3);
  box-shadow: 0 0 0 0.3em rgba(27, 91, 146, 0.3);
}

.fei-input-check input:checked~.fei-input__checkmark {
  background-color: #12205d;
  color: #ffffff;
}

@media screen and (min-width: 768px) {

  .fei-input-check:hover .fei-input__checkmark,
  .fei-input-check:hover .fei-input__radio {
    background-color: #12205d;
  }
}

/* Select Wrapper */
.select-wrapper {
  position: relative;
}

.select-wrapper:after {
  content: '';
  opacity: 0.5;
  display: block;
  width: 0;
  height: 0;
  border-top: 0.7rem solid #444444;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  position: absolute;
  top: 50%;
  right: 1rem;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* -----------------------------------------------------------------------------
   14. MODAIS E LISTAS
   ----------------------------------------------------------------------------- */
.fei-modal {
  display: none;
  color: #fff;
  padding: 4em 0;
  background-color: rgba(0, 0, 0, 0.9);
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.7), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 31;
  opacity: 0;
  -webkit-transition: opacity .2s ease-out;
  -o-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
}

.fei-modal.is-active {
  display: block;
  opacity: 1;
  -webkit-animation: fadeScaleIn .4s ease;
  animation: fadeScaleIn .4s ease;
}

.fei-modal.is-hiding {
  display: block;
  opacity: 0;
}

.fei-modal a {
  -webkit-text-decoration-color: #258dd3;
  text-decoration-color: #258dd3;
}

.fei-modal .fei-input-group .fei-input__control {
  color: #ffffff;
}

.fei-modal .button--close {
  color: #ffffff;
  font-size: 3.2rem;
}

/* Listing Styles */
.is-listing {
  margin: 2rem 0 2rem 2rem;
}

.is-listing li {
  list-style: none;
  text-indent: -1.2rem;
}

.is-listing li:before {
  content: '\02022';
  color: #12205d;
  font-weight: bold;
  margin-right: 0.7rem;
}

.is-listing li ul {
  margin-left: 1.6rem;
}

.is-listing.is-listing--block li {
  position: relative;
  margin-bottom: 2rem;
  text-indent: initial;
}

.is-listing.is-listing--block li:before {
  display: none;
}

.is-listing.is-listing--inline {
  margin-left: -1rem;
}

.is-listing.is-listing--inline li {
  display: inline-block;
}

.is-listing.is-listing--inline li:before {
  margin: 0.5rem 2rem;
}

/* -----------------------------------------------------------------------------
   15. ANIMAÇÕES (KEYFRAMES)
   ----------------------------------------------------------------------------- */
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeScaleIn {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeScaleIn {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

/* -----------------------------------------------------------------------------
   16. TABELAS (BOOTSTRAP TABLE STYLES)
   ----------------------------------------------------------------------------- */
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody+tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

/* Table Colors */
.table-primary,
.table-primary>th,
.table-primary>td {
  background-color: #b8daff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary>th,
.table-secondary>td {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
  background-color: #c8cbcf;
}

.table-success,
.table-success>th,
.table-success>td {
  background-color: #c3e6cb;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
  background-color: #b1dfbb;
}

.table-info,
.table-info>th,
.table-info>td {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
  background-color: #abdde5;
}

.table-warning,
.table-warning>th,
.table-warning>td {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger>th,
.table-danger>td {
  background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
  background-color: #f1b0b7;
}

.table-light,
.table-light>th,
.table-light>td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
  background-color: #ececf6;
}

.table-dark,
.table-dark>th,
.table-dark>td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
  background-color: #b9bbbe;
}

.table-active,
.table-active>th,
.table-active>td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

/* Responsive Tables */
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-sm>.table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-md>.table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-lg>.table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-xl>.table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive>.table-bordered {
  border: 0;
}

/* -----------------------------------------------------------------------------
   17. BACKGROUND IMAGE E THUMBNAILS
   ----------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .background-image {
    background-image: url("../imagens/background.jpg");
    background-position: top;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

.fei-thumbnail {
  position: relative;
}

.fei-thumbnail img {
  width: 100%;
}

.fei-thumbnail .fei-thumbnail__icon {
  color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 0;
  font-size: 10rem;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.fei-thumbnail .fei-thumbnail__icon:hover {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  transform: translate(-50%, -50%) scale(1.2);
}

@media screen and (min-width: 768px) {
  .fei-thumbnail .fei-thumbnail__icon {
    font-size: 12rem;
  }
}

@media screen and (min-width: 768px) {
  .fei-thumbnail .fei-thumbnail__icon {
    font-size: 15rem;
  }
}

/* YouTube Embed Container */
.youtube-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.9%;
}

.youtube-container .youtube-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cell-img.flickity-lazyloaded,
.cell-img.flickity-lazyerror {
  opacity: 1;
}

/* -----------------------------------------------------------------------------
   18. FOOTER
   ----------------------------------------------------------------------------- */
.fei-footer {
  position: relative;
  padding: 0;
  font-weight: lighter;
}

.fei-footer .fei-footer__title {
  color: inherit;
  margin: 0;
}

.fei-footer .fei-footer__container {
  color: #ffffff;
  padding: 3rem 0;
}

@media screen and (min-width: 768px) {
  .fei-footer .fei-footer__container {
    width: 100%;
    display: block;
  }

  .fei-footer .fei-footer__container .fei-footer__section {
    overflow: hidden;
    position: relative;
    width: 50%;
    height: 65rem;
    margin: 0 -0.4rem 0 0;
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .fei-footer .fei-footer__section {
    display: block;
  }

  .fei-footer .fei-footer__section .fei-footer__block {
    position: absolute;
    left: 6rem;
  }

  .fei-footer .fei-footer__section:first-child .fei-footer__block {
    left: auto;
    right: 9rem;
  }
}

.fei-footer .fei-footer__section {
  padding: 4rem 1rem;
}

.fei-footer .fei-footer__section .fei-footer__navigation li {
  display: block;
  margin-bottom: 2rem;
}

.fei-footer .fei-footer__section .fei-footer__navigation a {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .fei-footer .fei-footer__section .fei-footer__navigation {
    float: left;
    margin-right: 2rem;
  }
}

.fei-footer .fei-footer__section.fei-footer__section--last {
  text-align: center;
}

.fei-footer .fei-footer__section.fei-footer__section--last .fei-footer__navigation {
  float: none;
  margin: 0;
  margin-bottom: 1.6rem;
}

@media screen and (min-width: 768px) {
  .fei-footer .fei-footer__section.fei-footer__section--last .fei-footer__navigation li {
    display: inline-block;
    position: relative;
    width: auto;
    padding: 0 1.6rem;
  }

  .fei-footer .fei-footer__section.fei-footer__section--last .fei-footer__navigation li:after {
    content: '\\';
    display: block;
    color: rgba(255, 255, 255, 0.4);
    vertical-align: middle;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .fei-footer .fei-footer__section.fei-footer__section--last .fei-footer__navigation li:last-child:after {
    display: none;
  }
}

/* Back to Top Button */
.fei-back-to-top {
  text-align: center;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.fei-back-to-top:before {
  content: 'Voltar ao topo';
  display: inline-block;
  margin-right: 1.2rem;
}

@media screen and (min-width: 768px) {
  .fei-back-to-top {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 6%;
    display: block;
    width: 6rem;
    height: 6rem;
    font-size: 2rem;
    line-height: 6rem;
    background: #258dd3;
    color: #ffffff;
    border-radius: 100%;
    -webkit-box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.12);
    z-index: 5;
  }

  .fei-back-to-top:before {
    content: '';
    display: none;
  }

  .fei-back-to-top.is-active {
    visibility: visible;
    opacity: 1;
  }

  .fei-back-to-top:hover,
  .fei-back-to-top:focus {
    color: #ffffff;
    -webkit-box-shadow: 0 0.5em 0.8em rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.5em 0.8em rgba(0, 0, 0, 0.12);
    opacity: 1;
  }
}

/* -----------------------------------------------------------------------------
   19. SEÇÃO DE DISCIPLINAS (FEI SUBJECTS)
   Informações detalhadas das disciplinas dos cursos
   ----------------------------------------------------------------------------- */
.fei-subjects-body {
  margin: 0 auto 3rem auto;
}

.fei-subjects-container {
  display: none;
  overflow: hidden;
}

.fei-subjects-container.is-active {
  display: block;
  -webkit-animation: fade .5s;
  animation: fade .5s;
}

.fei-subject-container {
  list-style-type: none;
  margin: 0.2rem 0;
}

@media screen and (min-width: 992px) {
  .fei-subject-container {
    display: inline-block;
    width: calc(33.333% - 4px);
    vertical-align: middle;
  }
}

@media screen and (min-width: 1200px) {
  .fei-subject-container {
    width: calc(25% - 4px);
  }
}

.fei-subject {
  width: 100%;
  font-size: 1.6rem;
  padding: 1.6rem 2.4rem;
  background-color: #f9f9f9;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (min-width: 992px) {
  .fei-subject {
    position: relative;
    height: 18rem;
  }

  .fei-subject ul {
    position: absolute;
    bottom: 1.6rem;
    left: 2.4rem;
  }
}

.fei-subject p,
.fei-subject li {
  margin: 0;
}

.fei-subject[data-target='modal']:hover,
.fei-subject[data-target='modal'].is-active {
  background-color: #f9f9f9;
  -webkit-box-shadow: inset 0 -0.5rem 0 #12205d;
  box-shadow: inset 0 -0.5rem 0 #12205d;
}

.fei-subject-title {
  padding: 0;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.6;
  text-transform: uppercase;
}

.fei-subject-content {
  display: none;
  position: fixed;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 31;
}

.fei-subject-content.is-active {
  display: block;
  -webkit-animation: fade .5s;
  animation: fade .5s;
}

.fei-csubject-body {
  background: #ffffff;
  padding: 2.4rem;
  margin: 5em auto;
}

@media screen and (min-width: 992px) {
  .fei-csubject-body {
    width: 70%;
  }

  .fei-csubject-body li {
    display: inline-block;
    margin: 1.6rem;
    vertical-align: top;
  }

  .fei-csubject-body li:first-child {
    margin-left: 0;
  }
}

.fei-csubject-body .fei-section-title {
  margin: 1.2rem 0;
}

.fei-subject-classes {
  clear: both;
  text-align: left;
  padding: 1.6rem 1.6rem 0 1.6rem;
}

@media screen and (min-width: 992px) {
  .fei-subject-classes {
    font-size: 1.8rem;
  }
}

/* -----------------------------------------------------------------------------
   20. SEÇÃO DE AVALIAÇÕES (FEI RATING)
   ----------------------------------------------------------------------------- */
.fei-rating img {
  -webkit-filter: blur(1rem);
  filter: blur(1rem);
}

.fei-rating .guia .fa {
  font-size: 3rem;
  color: #ffb000;
  margin: 0 .4rem .5rem .4rem;
}

@media screen and (min-width: 992px) {
  .fei-rating .guia .fa {
    font-size: 4rem;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.24%;
  padding-top: 1px;
  height: 0;
  overflow: hidden;
  border-radius: 0.6rem;
  -webkit-box-shadow: 0 1em 2.5em rgba(0, 0, 0, 0.3);
  box-shadow: 0 1em 2.5em rgba(0, 0, 0, 0.3);
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fei-course-info:after,
.fei-course-info:before {
  content: '';
  clear: both;
  display: table;
}

.fei-info {
  font-size: 1.4rem;
  color: #ffffff;
  background: #8cc53f;
  padding: 1.6rem 2.4rem;
  overflow: hidden;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .fei-info {
    width: 49%;
    text-align: left;
    float: left;
    position: relative;
    overflow: visible;
  }

  .fei-info.course:after {
    content: '';
    display: block;
    width: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #8cc53f;
    position: absolute;
    top: 50%;
    right: -20px;
    margin-top: -18px;
  }

  .fei-info.visit {
    float: right;
  }

  .fei-info.visit:before {
    content: '';
    display: block;
    width: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #ffffff;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -18px;
  }
}

.fei-info img {
  display: block;
  margin: auto;
  width: 8rem;
}

@media screen and (min-width: 768px) {
  .fei-info img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .fei-info.course .fei-info__container {
    float: right;
    margin-right: 10rem;
  }
}

.fei-info.visit {
  background: #00aca0;
}

@media screen and (min-width: 768px) {
  .fei-info.visit .fei-info__container {
    float: left;
    margin-left: 4rem;
  }
}

.fei-info .fei-info__text {
  display: block;
}

@media screen and (min-width: 768px) {
  .fei-info .fei-info__text {
    float: right;
  }
}

.fei-info .fei-info__description {
  margin: 0;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.8rem;
}

.fei-info .fei-info__description:last-child {
  font-size: 2rem;
}

/* -----------------------------------------------------------------------------
   21. NOTÍCIAS (NEWS)
   ----------------------------------------------------------------------------- */
.fei-tags {
  display: table;
  width: 100%;
  background: transparent;
  position: relative;
  font-weight: lighter;
  white-space: nowrap;
  overflow-y: auto;
  margin-top: -1.8rem;
  z-index: 10;
}

.fei-tags .fei-news-tag {
  display: table-cell;
  padding: 1rem 1.5rem;
  border-radius: 0;
}

.fei-tags .fei-news-tag:first-child {
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}

.fei-tags .fei-news-tag:last-child {
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}

.fei-news-newsletter .fei-section-title {
  color: #6536a6;
  margin: 0 0 1.6rem 0;
}

.fei-date {
  margin: 1.6rem 0 0 0;
}

.fei-card .fei-date {
  margin: 0 0 1rem 0;
}

.fei-card.fei-card-alt .fei-date {
  margin: 0;
}

.fei-card.fei-card-alt .fei-date .fei-news-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0;
}

.fei-date .fa {
  margin-right: .25em;
}

.fei-news-default {
  position: relative;
}

.fei-news-default img {
  display: block;
  width: 100%;
  border-radius: 0.6rem;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-box-shadow: 0 0.1em 0.5em rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.1em 0.5em rgba(0, 0, 0, 0.2);
}

.fei-news-default p {
  color: #666;
  font-weight: normal;
}

.fei-news-title {
  display: none;
}

.fei-news-highlight-title {
  color: #fff;
  margin: .3em 0;
  padding: 0em .5em;
  text-transform: uppercase;
  font-weight: lighter;
}

[class^="fei-news-"] .fei-news-tag {
  position: absolute;
  top: 1em;
  right: 0px;
}

.fei-section-news .fei-section-title {
  font-weight: lighter;
  margin: 0 0 .5em 0;
}

.fei-news-eye {
  background: #f9f9f9;
  font-size: 1em;
  font-style: italic;
  padding: 1em 1.5em;
  border-left: 0.5em solid #ff8c27;
}

@media screen and (max-width: 767px) {
  .fei-section-news .fei-section-title {
    font-size: 1.8em;
    text-transform: none;
    text-align: center;
    margin: 1em 0 1em 0;
  }

  .fei-news-eye {
    text-align: center;
    letter-spacing: 1px;
    padding: .65em;
    border-left: 5px solid #ff8c27;
  }
}

.fei-news-article {
  margin: 2em 0;
}

.fei-news-article p {
  margin: 1em 0;
}

@media screen and (min-width: 992px) {
  .fei-news-article p {
    font-size: 1.25em;
    line-height: 2em;
  }
}

.fei-news {
  margin: .5em 0;
}

.fei-news-aside .fei-card-title {
  text-transform: initial;
}

@media screen and (max-width: 767px) {
  aside.destaques {
    margin: 1em 0;
  }
}

/* -----------------------------------------------------------------------------
   22. VESTIBULAR
   ----------------------------------------------------------------------------- */
.fei-vest .fei-section-title--bordered:after {
  background-color: #f7b31b;
  vertical-align: bottom;
}

.fei-vest .fa {
  color: #f7b31b;
}

.fei-vest-box {
  width: 100%;
  background-color: #12205d;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  padding: 1em;
  margin: 0 0 1.6rem 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #f7b31b;
}

.fei-vest-box .fei-vest-date,
.fei-vest-box .fei-vest-box__date {
  font-size: 4rem;
  color: #f7b31b;
  font-weight: 500;
  letter-spacing: -0.2rem;
}

.fei-vest-box .fei-vest-place,
.fei-vest-box .fei-vest-box__place {
  font-size: 3rem;
  color: #ffffff;
  letter-spacing: -0.1rem;
}

.fei-painel-list li {
  border-left: 0.5rem solid #12205d;
  min-height: 12rem;
  padding-left: 1.6rem;
}

.fei-section .fei-slideshow {
  margin: 3rem 0 5rem 0;
}

/* -----------------------------------------------------------------------------
   23. ALERTAS E WARNINGS
   ----------------------------------------------------------------------------- */
.fei-alert {
  position: relative;
  display: none;
  width: 100%;
  padding: 1.2rem 0;
  margin: 1.6rem 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.fei-alert .container>* {
  margin: 0 1rem 0 0;
  display: inline-block;
  vertical-align: middle;
}

.fei-alert.is-active {
  display: block;
  -webkit-animation: fade 0.2s ease;
  animation: fade 0.2s ease;
}

.fei-alert.alert-success {
  background: #258dd3;
}

.fei-alert.alert-danger {
  background: #f42d2d;
}

.fei-warning {
  background: transparent;
  padding: 1em 1.2em;
  border: 1px solid;
  border-radius: 6px;
}

.fei-warning.alert-success {
  background: #b8f1cb;
  color: #258dd3;
}

.fei-warning.alert-info {
  background: #8fc0ea;
  color: #12205d;
}

.fei-warning.alert-danger {
  background: black;
  color: #dc4e41;
}

/* -----------------------------------------------------------------------------
   24. LEGADO / HERNANDES
   Estilos antigos mantidos para compatibilidade
   ----------------------------------------------------------------------------- */
.menor {
  font-size: 10px;
}

.marcadores {
  font-size: 1.25em;
}

.conteudopos {
  background-color: #f8f8f8;
  padding: 10px;
  text-align: center;
  font-size: 1.25em;
  margin-bottom: 2px;
  border: solid;
  border-width: 1px;
  border-color: #FFF;
}

.informacoespos {
  background-color: #F8F8F8;
  padding-left: 20px;
  padding-top: 10px;
  border-top-color: #98CE00;
  border-top-style: solid;
  border-top-width: 2px;
  padding-bottom: 20px;
}

.publico-alvo {
  background-color: #fff;
  padding: 1em 1.5em;
  min-height: 215px;
  margin: -1em 0 1em 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 1em 3em rgba(0, 0, 0, 0.1);
  box-shadow: 0 1em 3em rgba(0, 0, 0, 0.1);
}

.pre-requisitos {
  background-color: #f8f8f8;
  padding: 30px;
}

.espacolinha {
  margin-top: 30px;
  margin-bottom: 30px;
}

.checar {
  font-size: 12px;
  margin-top: 10px;
  color: #98CE00;
  padding-right: 5px;
}

.nome_reitores {
  text-align: center;
}

.tamanho_img {
  width: 80%;
}

.tinscrevase {
  color: #666;
}

.fechar {
  color: #333;
}

.cinza {
  color: #919292;
}

.centralizarvh {
  height: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Source Map Reference */
/*# sourceMappingURL=maps/main.css.map */

/* =========================================================
   CAMADA 2 — COMPONENTES DO TEMA 2026 (de style-minteste.css)
   Redesenho de cards, botões, tabs, formulários etc. usando os
   design tokens acima. Não inclui regras de header/navegação —
   essas ficam por conta da camada 3, que é carregada por último.
========================================================= */
/* =========================================================
   STYLE MINTESTE - ATUALIZADO FEI 2026 (SEM HEADER)
   Base estrutural + Componentes + Utilitários
   
   OBS: Regras de .fei-navigation, .fei-header-navigation,
   .fei-internal-nav, .fei-collapse-button, .fei-bnav-body,
   .fei-navigation-dropdown, .fei-quick-links e .off-canvas
   foram REMOVIDAS pois já existem no fei26-theme-override.css
========================================================= */

/* ---------------------------------------------------------
   1. DESIGN TOKENS & BASE
--------------------------------------------------------- */
html {
  background: none;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  display: block;
  background: var(--fei26-white);
  color: var(--fei26-text);
  font-family: var(--fei26-font);
  font-size: 1.6rem;
  line-height: 1.65;
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform .3s ease-in-out, margin .2s ease-in-out;
}

body.open {
  overflow: hidden;
}

::selection {
  color: #fff;
  background: var(--fei26-primary);
}

img {
  max-width: 100%;
  height: auto;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

img[data-src],
img.cell-img {
  opacity: 0;
}

.cell-img.flickity-lazyloaded,
.cell-img.flickity-lazyerror {
  opacity: 1;
}

/* ---------------------------------------------------------
   2. TIPOGRAFIA
--------------------------------------------------------- */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--fei26-primary-deep);
  position: relative;
  margin: 0 0 1.6rem 0;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: var(--fei26-font);
}

.h1,
h1 {
  font-size: clamp(3.6rem, 5vw, 5.6rem);
}

.h2,
h2 {
  font-size: clamp(3rem, 4vw, 4.4rem);
  
}

.h3,
h3 {
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
}

.h4,
h4 {
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
}

.h5,
h5 {
  font-size: 2rem;
}

.h6,
h6 {
  font-size: 1.8rem;
}

p {
  margin: 0 0 1.6rem 0;
  color: var(--fei26-text-soft);
}

a {
  color: var(--fei26-primary);
  border-bottom: none;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--fei26-transition-fast);
}

a:hover,
a:focus {
  color: var(--fei26-primary-dark);
  opacity: 1;
  text-decoration: none;
}

blockquote {
  border-left: 4px solid var(--fei26-primary);
  background: var(--fei26-surface);
  border-radius: var(--fei26-radius-md);
  padding: 2.4rem 2.8rem;
  margin: 0 0 2rem 0;
  font-style: normal;
  color: var(--fei26-text-soft);
}

code {
  display: block;
  background-color: var(--fei26-black);
  color: #f9f9f9;
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 1.8rem;
  border-radius: var(--fei26-radius-md);
}

hr {
  border: 0;
  height: 1px;
  background: var(--fei26-border);
  margin: 3.2rem 0;
}

/* ---------------------------------------------------------
   3. UTILITÁRIOS LEGACY
--------------------------------------------------------- */
.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.bold {
  font-weight: bold !important;
}

.lighter {
  font-weight: lighter;
}

.upper {
  text-transform: uppercase !important;
}

.lower {
  text-transform: lowercase !important;
}

.blue,
.lightblue,
.color-blue,
.color-lightblue {
  background: var(--fei26-primary) !important;
  color: #fff !important;
}

.green,
.lightgreen,
.color-green,
.color-lightgreen {
  background: var(--fei26-success) !important;
  color: #fff !important;
}

.yellow,
.color-yellow {
  background: var(--fei26-warning) !important;
  color: #fff !important;
}

.orange,
.color-orange {
  background: var(--fei26-project) !important;
  color: #fff !important;
}

.purple,
.color-purple {
  background: var(--fei26-news) !important;
  color: #fff !important;
}

.red,
.color-red {
  background: var(--fei26-danger) !important;
  color: #fff !important;
}

.white,
.color-white {
  background: #fff !important;
  color: var(--fei26-text) !important;
}

.block {
  width: 100%;
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.gray-background {
  background-color: var(--fei26-surface);
}

@media screen and (max-width: 767px) {

  .l-text-responsive,
  .fei-responsive {
    position: absolute;
    top: 0;
    left: -9999px;
    width: 0;
  }
}

/* ---------------------------------------------------------
   4. BOTÕES
--------------------------------------------------------- */
.button,
a.button,
button.button,
input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 2.2rem;
  margin: 0 0.8rem 0.8rem 0;
  border: 1px solid transparent;
  border-radius: var(--fei26-radius-md);
  color: var(--fei26-text);
  background: var(--fei26-surface);
  font-family: var(--fei26-font);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition:
    transform var(--fei26-transition-fast),
    background var(--fei26-transition-fast),
    color var(--fei26-transition-fast),
    box-shadow var(--fei26-transition-fast);
}

.button:hover,
.button:focus {
  opacity: 1;
  text-decoration: none;
  transform: translateY(-2px);
  background: var(--fei26-surface-2);
}

.button:last-child {
  margin-right: 0;
}

.button.button--small {
  min-height: 38px;
  padding: 0 1.6rem;
  font-size: 1.4rem;
}

.button.button--large {
  min-height: 54px;
  padding: 0 2.6rem;
  font-size: 1.8rem;
}

.button-default {
  background: var(--fei26-text);
  color: #fff;
}

.button-blue,
.button-lightblue {
  background: var(--fei26-primary);
  color: #fff;
}

.button-green,
.button-lightgreen {
  background: var(--fei26-success);
  color: #fff;
}

.button-purple {
  background: var(--fei26-news);
  color: #fff;
}

.button-orange {
  background: var(--fei26-project);
  color: #fff;
}

.button-transparent {
  background: transparent !important;
  border: 1px solid var(--fei26-primary);
  color: var(--fei26-primary);
}

.button-transparent:hover {
  background: var(--fei26-primary) !important;
  color: #fff;
}

.close-button {
  background-color: transparent;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  font-size: 2.8rem;
  line-height: 1;
  color: inherit;
  opacity: 0.7;
  transition: all var(--fei26-transition-fast);
}

.close-button:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.05);
  transform: none;
}

/* ---------------------------------------------------------
   5. SEÇÕES E TÍTULOS
--------------------------------------------------------- */
.fei-section {
  position: relative;
  padding: 8rem 0;
  color: var(--fei26-text);
}

.fei-section-title {
  position: relative;
  text-transform: none;
  font-weight: 700;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 0 0 2.5rem 0;
  color: #fff
  text-align: left;
}

.fei-section-title.negative {
  color: #fff;
}

.title-border:after,
.fei-section-title.fei-section-title--bordered:after {
  content: '';
  background: var(--fei26-primary);
  display: block;
  position: absolute;
  bottom: -1.2rem;
  width: 5.6rem;
  height: 0.4rem;
  left: 0.1rem;
  border-radius: var(--fei26-radius-pill);
}

.fei-section-title:before {
  content: attr(data-background);
  display: none;
  font-weight: 800;
  position: absolute;
  bottom: -2rem;
  left: 0;
  opacity: 0.06;
  white-space: nowrap;
  color: var(--fei26-primary);
}

@media screen and (min-width: 992px) {
  .fei-section-title:before {
    display: block;
    font-size: 8rem;
  }
}

/* ---------------------------------------------------------
   6. CARDS
--------------------------------------------------------- */
.fei-card,
a .fei-card {
  color: initial;
  background: #fff;
  padding: 0;
  margin: 0 0 1.6rem 0;
  box-shadow: var(--fei26-shadow-sm);
  overflow: hidden;
  border: 1px solid var(--fei26-border);
  border-radius: var(--fei26-radius-lg);
  transition:
    transform var(--fei26-transition),
    box-shadow var(--fei26-transition);
}

a:hover>.fei-card {
  transform: translateY(-5px);
  box-shadow: var(--fei26-shadow-md);
}

.fei-card>img {
  width: 100%;
}

.fei-card-body {
  padding: 2.2rem;
}

.fei-card-title {
  font-size: 1.8rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-transform: none;
  font-weight: 600;
  color: var(--fei26-text);
  margin-bottom: 1rem;
}

.fei-card-alt {
  position: relative;
}

.fei-card-alt:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.fei-card-alt .fei-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.4rem;
  z-index: 3;
}

.fei-card-alt .fei-card-title {
  color: #fff;
}

.fei-side-card {
  text-align: left;
}

.fei-side-card img {
  float: left;
  margin: 0 1em 0 0;
  width: auto;
  height: 100%;
}

.fei-scard-content {
  padding: 1em;
  width: 100%;
}

.fei-scard-alt {
  border-left: 5px solid var(--fei26-primary);
}

/* ---------------------------------------------------------
   7. TABS
--------------------------------------------------------- */
.fei-tabs {
  width: 100%;
  margin: 2rem 0;
  color: var(--fei26-text-muted);
  font-size: 1.4rem;
  overflow-x: auto;
  white-space: nowrap;
  border-radius: var(--fei26-radius-md);
  font-weight: 600;
}

.fei-tabs li {
  display: inline-block;
  list-style-type: none;
  font-weight: 600;
  margin: 0 0.6rem 0.6rem 0;
  border-bottom: none;
}

.fei-tabs li a {
  display: block;
  color: var(--fei26-text-muted);
  padding: 1rem 1.6rem;
  opacity: 1;
  border: none;
  border-radius: var(--fei26-radius-md);
  transition: all var(--fei26-transition-fast);
  white-space: normal;
}

.fei-tabs li.is-active a,
.fei-tabs li a:hover {
  color: #fff;
  opacity: 1;
  background: var(--fei26-primary);
  box-shadow: var(--fei26-shadow-sm);
}

@media screen and (min-width: 992px) {
  .fei-tabs.fei-side-tabs {
    border: 1px solid var(--fei26-border);
    margin: 0;
    overflow: visible;
  }

  .fei-side-tabs li {
    display: block;
    margin: 0;
    border-bottom: 0;
  }

  .fei-side-tabs li:first-child {
    border-top-left-radius: var(--fei26-radius-md);
    border-top-right-radius: var(--fei26-radius-md);
  }

  .fei-side-tabs li:last-child {
    border-bottom-left-radius: var(--fei26-radius-md);
    border-bottom-right-radius: var(--fei26-radius-md);
  }

  .fei-side-tabs li.is-active {
    border: none;
    background: var(--fei26-primary);
  }

  .fei-side-tabs li.is-active a {
    color: #fff;
  }
}

/* ---------------------------------------------------------
   8. FORMULÁRIOS
--------------------------------------------------------- */
label,
.label {
  display: block;
  margin: 1.4rem 0 0.7rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fei26-text);
}

.fei-input-control {
  display: block;
  width: 100%;
  border: 1px solid var(--fei26-border);
  color: var(--fei26-text);
  padding: 1.2rem 1.4rem;
  outline: none;
  margin-bottom: 1.2rem;
  background: #fff;
  transition: border-color var(--fei26-transition-fast), box-shadow var(--fei26-transition-fast);
  border-radius: var(--fei26-radius-md);
  font-size: 1.6rem;
}

.fei-input-control:focus {
  background: #fff;
  border-color: var(--fei26-primary);
  box-shadow: 0 0 0 3px rgba(0, 110, 170, 0.12);
}

.fei-input-group {
  display: table;
  margin-bottom: 1.6rem;
  border: 1px solid var(--fei26-border);
  border-radius: var(--fei26-radius-md);
  overflow: hidden;
}

.fei-input-group>.fei-input-control {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.fei-input-btn .button {
  height: inherit;
  line-height: inherit;
  border-radius: 0;
  border-top-right-radius: var(--fei26-radius-md);
  border-bottom-right-radius: var(--fei26-radius-md);
}

.fei-input-check {
  position: relative;
  margin: 0 1.6rem 2rem 0;
  line-height: 2.5rem;
}

.fei-radio,
.fei-checkmark {
  position: relative;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--fei26-surface-2);
  vertical-align: middle;
  margin-right: 1rem;
  transition: all var(--fei26-transition-fast);
}

.fei-radio {
  border-radius: 5rem;
}

.fei-input-check>input:checked~.fei-radio {
  background-color: var(--fei26-primary);
  box-shadow: 0 0 0 0.2em rgba(0, 110, 170, 0.3);
}

.fei-input-check>input:checked~.fei-checkmark {
  background-color: var(--fei26-primary);
  color: #fff;
}

/* ---------------------------------------------------------
   9. SLIDESHOW
--------------------------------------------------------- */
.fei-slideshow {
  position: relative;
  z-index: 2;
}

.fei-slideshow-item {
  position: relative;
  color: #fff;
  font-weight: 400;
  width: 100%;
  overflow: hidden;
}

.fei-slideshow-default .fei-slideshow-item {
  min-height: 45rem;
}

.fei-slideshow-caption {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1.65;
  padding: 0;
  max-width: 68rem;
  top: 50%;
  transform: translateY(-50%);
}

.fei-slideshow-controls .control {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 2rem;
  z-index: 2;
  outline: none;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  text-align: center;
  width: 5rem;
  height: 5rem;
  margin-top: -2.5rem;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transform: translateX(-10rem);
  transition: all .3s ease-in-out, opacity .1s ease-in-out;
}

.fei-slideshow-controls .control.next {
  left: auto;
  right: 2rem;
  transform: translateX(10rem);
}

.fei-slideshow:hover .fei-slideshow-controls .control {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fei-slideshow-controls .control:hover {
  background: rgba(0, 0, 0, 0.35);
}

.fei-slidenav-item {
  display: inline-block;
  min-width: 1rem;
  min-height: 1rem;
  margin: 0 .5em;
  background-color: rgba(255, 255, 255, 0.35);
  list-style-type: none;
  border-radius: 100%;
  cursor: pointer;
  transition: all .3s ease-in-out;
  box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.18);
}

.fei-slidenav-item.is-active {
  background: var(--fei26-primary);
  box-shadow: 0 0 0 0.4rem rgba(0, 110, 171, 0.6);
}

/* ---------------------------------------------------------
   10. NOTÍCIAS & TAGS
--------------------------------------------------------- */
.fei-tags {
  display: block;
  text-align: center;
  width: 100%;
  background: transparent;
  position: relative;
  font-weight: 600;
  white-space: nowrap;
  overflow-y: auto;
  margin: -1.8rem 0;
  z-index: 3;
}

.fei-news-tag,
.fei-tags .fei-news-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--fei26-surface-2);
  color: var(--fei26-text-soft);
  border: none;
  border-radius: var(--fei26-radius-pill);
  z-index: 3;
  transition: all var(--fei26-transition-fast);
}

.fei-tags .fei-news-tag {
  padding: 1rem 1.5rem;
  margin: 0 -2.2px;
  border-radius: 0;
}

.fei-tags .fei-news-tag:first-child {
  border-top-left-radius: var(--fei26-radius-md);
  border-bottom-left-radius: var(--fei26-radius-md);
}

.fei-tags .fei-news-tag:last-child {
  border-top-right-radius: var(--fei26-radius-md);
  border-bottom-right-radius: var(--fei26-radius-md);
}

.tag--primary,
.fei-tags .tag--primary.fei-news-tag {
  background: var(--fei26-primary-light);
  color: var(--fei26-primary);
}

.tag--news,
.fei-tags .tag--news.fei-news-tag {
  background: rgba(101, 54, 166, 0.12);
  color: var(--fei26-news);
}

.tag--project,
.fei-tags .tag--project.fei-news-tag {
  background: rgba(255, 140, 39, 0.14);
  color: #C56200;
}

.fei-date {
  margin: 1.4rem 0 0 0;
  color: var(--fei26-text-muted);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fei-card .fei-date {
  margin: 0 0 1rem 0;
}

.fei-news-default img {
  display: block;
  width: 100%;
  border-radius: var(--fei26-radius-lg);
  box-shadow: var(--fei26-shadow-sm);
}

.fei-news-default p {
  color: var(--fei26-text-soft);
  font-weight: 400;
}

.fei-news-eye {
  background: var(--fei26-surface);
  font-size: 1em;
  font-style: italic;
  padding: 1em 1.5em;
  border-left: 0.5em solid var(--fei26-primary);
  border-radius: var(--fei26-radius-md);
  color: var(--fei26-text-soft);
}

/* ---------------------------------------------------------
   11. VESTIBULAR
--------------------------------------------------------- */
.fei-vest-box {
  width: 100%;
  background-color: var(--fei26-primary-deep);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 2rem;
  margin: 0 0 1.6rem 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--fei26-vest);
  border-radius: var(--fei26-radius-lg);
  box-shadow: var(--fei26-shadow-sm);
}

.fei-vest-date {
  font-size: 4rem;
  color: var(--fei26-vest);
  font-weight: 700;
  letter-spacing: -0.2rem;
}

.fei-vest-place {
  font-size: 3rem;
  color: #fff;
  letter-spacing: -0.1rem;
}

/* ---------------------------------------------------------
   12. MODAL
--------------------------------------------------------- */
.fei-modal {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(4px);
  color: #fff;
  overflow-y: auto;
  z-index: 15;
  padding: 4em 0;
  transition: opacity .2s ease-out;
}

.fei-modal.is-active {
  display: block;
  opacity: 1;
  animation: fadeScaleIn .4s ease;
}

.fei-modal .close-button {
  color: #fff;
}

/* ---------------------------------------------------------
   13. FOOTER
--------------------------------------------------------- */
.fei-footer {
  font-size: 1.4rem;
  position: relative;
  padding: 0;
  font-weight: 400;
  background: #17232C;
  color: rgba(255, 255, 255, 0.75);
}

.fei-footer a {
  color: rgba(255, 255, 255, 0.72);
  border-color: transparent;
  transition: color var(--fei26-transition-fast);
}

.fei-footer a:hover {
  color: #fff;
  opacity: 1;
}

.fei-footer-section {
  padding: 4rem 1rem;
}

.fei-footer .fei-footer__title {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fei-back-top>a {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -3rem;
  right: 5rem;
  display: block;
  width: 6rem;
  height: 6rem;
  font-size: 2rem;
  line-height: 6rem;
  background: var(--fei26-primary);
  color: #fff;
  border: none;
  z-index: 4;
  transition: all .3s ease-in-out;
  border-radius: 100%;
  box-shadow: var(--fei26-shadow-md);
}

.fei-back-top>a.is-active {
  visibility: visible;
  opacity: 1;
}

.fei-back-top>a:hover {
  background: var(--fei26-primary-dark);
  box-shadow: var(--fei26-shadow-lg);
  opacity: 1;
}

/* ---------------------------------------------------------
   14. ALERTAS
--------------------------------------------------------- */
.fei-alert {
  position: relative;
  display: none;
  width: 100%;
  padding: 1.4rem 1.8rem;
  margin: 1.6rem 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: var(--fei26-radius-md);
  font-weight: 600;
  transition: all .2s ease-in-out;
}

.fei-alert.is-active {
  display: block;
  animation: fade 0.2s ease;
}

.fei-alert.alert-success {
  background: var(--fei26-success);
}

.fei-alert.alert-danger {
  background: var(--fei26-danger);
}

.fei-warning {
  background: transparent;
  padding: 1em 1.2em;
  border: 1px solid;
  border-radius: var(--fei26-radius-md);
}

.fei-warning.alert-success {
  background: rgba(25, 135, 84, 0.12);
  color: var(--fei26-success);
  border-color: rgba(25, 135, 84, 0.22);
}

.fei-warning.alert-info {
  background: var(--fei26-primary-light);
  color: var(--fei26-primary);
  border-color: rgba(0, 110, 170, 0.20);
}

.fei-warning.alert-danger {
  background: rgba(192, 57, 43, 0.10);
  color: var(--fei26-danger);
  border-color: rgba(192, 57, 43, 0.22);
}

/* ---------------------------------------------------------
   15. ANIMAÇÕES
--------------------------------------------------------- */
@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    display: block;
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fadeScaleIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---------------------------------------------------------
   16. CLASSES ESPECÍFICAS POS / LEGACY MANTIDAS
--------------------------------------------------------- */
.menor {
  font-size: 10px;
}

.marcadores {
  font-size: 1.25em;
}

.conteudopos {
  background-color: var(--fei26-surface);
  padding: 10px;
  text-align: center;
  font-size: 1.25em;
  margin-bottom: 2px;
  border: 1px solid var(--fei26-border);
  border-radius: var(--fei26-radius-sm);
}

.informacoespos {
  background-color: var(--fei26-surface);
  padding-left: 20px;
  padding-top: 10px;
  border-top: 2px solid var(--fei26-success);
  padding-bottom: 20px;
  border-radius: var(--fei26-radius-sm);
}

.publico-alvo {
  background-color: #fff;
  padding: 1em 1.5em;
  min-height: 215px;
  margin: -1em 0 1em 0;
  border-radius: var(--fei26-radius-md);
  box-shadow: var(--fei26-shadow-sm);
  border: 1px solid var(--fei26-border);
}

.pre-requisitos {
  background-color: var(--fei26-surface);
  padding: 30px;
  border-radius: var(--fei26-radius-md);
}

.espacolinha {
  margin-top: 30px;
  margin-bottom: 30px;
}

.checar {
  font-size: 12px;
  margin-top: 10px;
  color: var(--fei26-success);
  padding-right: 5px;
}

.nome_reitores {
  text-align: center;
}

.tamanho_img {
  width: 80%;
}

.tinscrevase {
  color: var(--fei26-text-soft);
}

.fechar {
  color: var(--fei26-text);
}

.cinza {
  color: var(--fei26-text-muted);
}

.centralizarvh {
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   CAMADA 3 — OVERLAY FINAL (de fei26-theme-override.css)
   Camada de maior prioridade: header/navegação, ajustes finos
   e refinamentos que sobrescrevem as camadas anteriores.
========================================================= */
/* =========================================================
   FEI 2026 THEME OVERLAY
   Migração estética do main.css para o style-teste13.css
   Mantendo classes legacy da FEI
========================================================= */

/* =========================================================
   1. DESIGN TOKENS
========================================================= */

/* =========================================================
   2. RESET / BASE
========================================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  color: var(--fei26-text) !important;
  background: var(--fei26-white) !important;
  font-family: var(--fei26-font) !important;
  font-size: var(--fei26-fs-md) !important;
  line-height: 1.65 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  background: var(--fei26-primary);
}

/* =========================================================
   3. TIPOGRAFIA
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.d1,
.d2,
.d3,
.fei-section-title {
  color: var(--fei26-primary-deep);
  font-family: var(--fei26-font);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em 0;
}

h1,
.h1 {
  font-size: clamp(36px, 5vw, 56px);
}

h2,
.h2 {
  font-size: clamp(30px, 4vw, 44px);
}

h3,
.h3 {
  font-size: clamp(26px, 3.4vw, 36px);
}

h4,
.h4 {
  font-size: clamp(22px, 2.8vw, 28px);
}

h5,
.h5 {
  font-size: var(--fei26-fs-xl);
}

h6,
.h6 {
  font-size: 17px;
}

.d1 {
  font-size: clamp(44px, 6vw, 72px);
}

.d2 {
  font-size: clamp(40px, 5vw, 64px);
}

.d3 {
  font-size: clamp(34px, 4.5vw, 56px);
}

p,
li {
  line-height: 1.65;
}

p {
  margin: 0 0 16px 0;
}

small {
  font-size: 82%;
  opacity: 0.85;
}

a {
  color: var(--fei26-primary);
  text-decoration: none;
  transition:
    color var(--fei26-transition-fast),
    opacity var(--fei26-transition-fast),
    background var(--fei26-transition-fast);
}

a:hover,
a:focus {
  color: var(--fei26-primary-dark);
  opacity: 1;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--fei26-primary);
  outline-offset: 2px;
}

blockquote {
  border-left: 4px solid var(--fei26-primary);
  background: var(--fei26-surface);
  border-radius: var(--fei26-radius-md);
  padding: 24px 28px;
  margin: 0 0 20px 0;
  font-style: normal;
  color: var(--fei26-text-soft);
}

hr {
  border: 0;
  height: 1px;
  background: var(--fei26-border);
  margin: 32px 0;
}

code {
  display: block;
  background: var(--fei26-black);
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  padding: 18px;
  border-radius: var(--fei26-radius-md);
}

/* =========================================================
   4. LAYOUT / CONTAINER
========================================================= */

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}

.fei-section {
  position: relative;
  padding: var(--fei26-space-11) 0;
  color: var(--fei26-text);
  font-weight: 400;
}

@media (max-width: 820px) {
  .fei-section {
    padding: var(--fei26-space-10) 0;
  }
}

.fei-section--footer {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--fei26-fs-sm);
  font-weight: 400;
}

/* =========================================================
   5. TÍTULOS DE SEÇÃO
========================================================= */

.fei-section-title {
  position: relative;
  margin: 0 0 18px 0;
  color: var(--fei26-primary-deep);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-transform: none;
}

.fei-section-title small {
  display: block;
  margin-top: 8px;
  color: var(--fei26-text-muted);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
}

.fei-section-title:before {
  content: attr(data-background);
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
  opacity: 0.05;
  color: var(--fei26-primary);
}

@media (min-width: 992px) {
  .fei-section-title:before {
    display: block;
  }
}

.fei-section-title.fei-section-title--bordered:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 56px;
  height: 4px;
  border-radius: var(--fei26-radius-pill);
  background: var(--fei26-primary);
}

/* =========================================================
   6. UTILITÁRIOS DE COR
========================================================= */

.bg {
  background-color: var(--fei26-surface) !important;
}

.bg-negative {
  background-color: var(--fei26-black) !important;
}

.bg-primary {
  background-color: var(--fei26-primary) !important;
}

.bg-primary-light {
  background-color: var(--fei26-primary-light) !important;
}

.bg-secondary {
  background-color: var(--fei26-success) !important;
}

.text-color-white {
  color: var(--fei26-white) !important;
}

.text-color-default {
  color: var(--fei26-text) !important;
}

.text-color-primary {
  color: var(--fei26-primary) !important;
}

.text-color-primary-light {
  color: var(--fei26-primary) !important;
}

.text-color-secondary {
  color: var(--fei26-success) !important;
}

.text-color-warn {
  color: var(--fei26-danger) !important;
}

/* =========================================================
   7. BOTÕES
========================================================= */

.button,
a.button,
button.button,
input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  margin: 0 8px 8px 0;
  border: 1px solid transparent;
  border-radius: var(--fei26-radius-md);
  color: var(--fei26-text);
  background: var(--fei26-surface);
  font-family: var(--fei26-font);
  font-size: var(--fei26-fs-md);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--fei26-transition-fast),
    background var(--fei26-transition-fast),
    color var(--fei26-transition-fast),
    border-color var(--fei26-transition-fast),
    box-shadow var(--fei26-transition-fast);
}

.button:hover,
a.button:hover,
button.button:hover,
input.button:hover,
.button:focus,
a.button:focus,
button.button:focus,
input.button:focus {
  opacity: 1;
  text-decoration: none;
  transform: translateY(-2px);
  background: var(--fei26-surface-2);
}

.button:last-child {
  margin-right: 0;
}

.button.button--small {
  min-height: 38px;
  padding: 0 16px;
  font-size: var(--fei26-fs-sm);
}

.button.button--large {
  min-height: 54px;
  padding: 0 26px;
  font-size: var(--fei26-fs-lg);
}

.button.button--shadow {
  box-shadow: var(--fei26-shadow-sm);
}

.button.button--shadow:hover,
.button.button--shadow:focus {
  box-shadow: var(--fei26-shadow-md);
}

.button.button--primary {
  color: #fff;
  background: var(--fei26-primary);
  border-color: transparent;
}

.button.button--primary:hover,
.button.button--primary:focus {
  background: var(--fei26-primary-dark);
}

.button.button--primary-light {
  color: var(--fei26-primary);
  background: var(--fei26-primary-light);
  border-color: transparent;
}

.button.button--primary-light:hover,
.button.button--primary-light:focus {
  color: #fff;
  background: var(--fei26-primary);
}

.button.button--secondary {
  color: #fff;
  background: var(--fei26-success);
}

.button.button--secondary:hover,
.button.button--secondary:focus {
  background: #243574;
}

.button.button--dark,
.button.button--negative {
  color: #fff;
  background: var(--fei26-primary-deep);
}

.button.button--dark:hover,
.button.button--negative:hover,
.button.button--dark:focus,
.button.button--negative:focus {
  background: var(--fei26-primary-dark);
}

.button.button--transparent {
  color: var(--fei26-primary);
  background: transparent;
  border-color: var(--fei26-primary);
}

.button.button--transparent:hover,
.button.button--transparent:focus {
  color: #fff;
  background: var(--fei26-primary);
}

.button.button--transparent.button--primary {
  color: #fff;
  border-color: var(--fei26-primary);
}

.button.button--transparent.button--primary:hover,
.button.button--transparent.button--primary:focus {
  color: #fff;
  background: var(--fei26-primary);
}

/* Botões de fechar precisam manter comportamento próprio */
.button--close,
.close-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  box-shadow: none;
}

.button--close:hover,
.close-button:hover,
.button--close:focus,
.close-button:focus {
  background: rgba(0, 0, 0, 0.05);
  transform: none;
}



/* Breadcrumb */
.fei-breadcrumb {
  font-size: 1.4rem;
  opacity: 0.5;
}

.fei-breadcrumb li {
  display: inline-block;
  color: inherit;
  font-weight: normal;
  margin-bottom: 1.6rem;
}


.fei-breadcrumb li.is-active {
  font-weight: bold;
}

.fei-breadcrumb li:after {
  content: "\\";
  display: inline-block;
  color: #444444;
  padding: 0 1rem;
}

.fei-breadcrumb li:last-child:after {
  display: none;
}

/* =========================================================
   8. FORMULÁRIOS
========================================================= */

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
textarea,
select,
.fei-input-group .fei-input__control {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  color: var(--fei26-text);
  background: #fff;
  border: 1px solid var(--fei26-border);
  border-radius: var(--fei26-radius-md);
  font-size: var(--fei26-fs-md);
  line-height: 1.5;
  transition:
    border-color var(--fei26-transition-fast),
    box-shadow var(--fei26-transition-fast),
    background var(--fei26-transition-fast);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus,
.fei-input-group .fei-input__control:focus {
  border-color: var(--fei26-primary);
  box-shadow: 0 0 0 3px rgba(0, 110, 170, 0.12);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label,
.label {
  display: block;
  margin: 14px 0 7px 0;
  color: var(--fei26-text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

form {
  font-size: var(--fei26-fs-md);
}

form input[type="submit"] {
  display: block;
  width: 100%;
}

.fei-input-group {
  display: table;
  overflow: hidden;
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid var(--fei26-border);
  border-radius: var(--fei26-radius-md);
  background: #fff;
}

.fei-input-group .fei-input__control {
  margin: 0;
  border: 0;
  background: transparent;
}

.fei-input-group .fei-input__control:focus {
  box-shadow: none;
}

/* =========================================================
   9. CARDS
========================================================= */

.fei-card {
  overflow: hidden;
  margin: 16px 0;
  background: #fff;
  border: 1px solid var(--fei26-border);
  border-radius: var(--fei26-radius-lg);
  box-shadow: var(--fei26-shadow-sm);
  transition:
    transform var(--fei26-transition),
    box-shadow var(--fei26-transition),
    border-color var(--fei26-transition);
}

.fei-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--fei26-shadow-md);
}

.fei-card img {
  width: 100%;
}

.fei-card .fei-card__body {
  padding: 22px;
}

.fei-card .fei-card__title {
  margin: 0 0 8px 0;
  color: var(--fei26-text);
  font-size: var(--fei26-fs-xl);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.fei-card .fei-card__title.fei-card__title--lg {
  font-size: var(--fei26-fs-2xl);
}

.fei-card .fei-card__title.fei-card__title--sm {
  font-size: var(--fei26-fs-md);
}

.fei-card .fei-card__body p:first-child,
.fei-card .fei-card__body .fei-card__info {
  color: var(--fei26-text-muted);
  font-size: var(--fei26-fs-sm);
  font-weight: 500;
  margin-bottom: 0;
}

.fei-card p,
.fei-card li {
  color: var(--fei26-text-soft);
}

.fei-card p:last-child,
.fei-card li:last-child {
  margin-bottom: 0;
}

.fei-card-link {
  display: block;
  text-decoration: none;
  opacity: 1;
}

.fei-card-link:hover {
  opacity: 1;
  text-decoration: none;
}

.fei-card-link:hover .fei-card {
  transform: translateY(-5px);
  box-shadow: var(--fei26-shadow-md);
}

.fei-card--alt {
  position: relative;
  color: #fff;
}

.fei-card--alt:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.05));
}

.fei-card--alt .fei-card__body {
  position: relative;
  z-index: 2;
}

.fei-card--alt .fei-card__title,
.fei-card--alt p {
  color: #fff;
}

/* =========================================================
   10. NAVEGAÇÃO / HEADER
========================================================= */

.fei-navigation--main,
.fei-slideshow-nav,
.fei-tabs,
.fei-footer .fei-footer__section .fei-footer__navigation {
  font-family: var(--fei26-font);
}

.fei-navigation__header {
  position: relative;
  background: var(--fei26-primary-deep);
  box-shadow: var(--fei26-shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fei-navigation__header .fei-navigation__logo {
  margin: 14px 0;
}

.fei-navigation__header .fei-navigation__logo img {
  width: auto;
  height: 56px;
}

.fei-navigation__header .fei-navigation__logo img.jesuitas {
  height: 44px;
  margin-left: 16px;
}

.fei-navigation__internal {
  background: var(--fei26-primary-deep);
}

.fei-navigation__internal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fei26-fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  border-radius: var(--fei26-radius-sm);
  transition: all var(--fei26-transition-fast);
}

.fei-navigation__internal a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
}

.fei-collapse-button {
  color: #fff;
  font-size: var(--fei26-fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--fei26-radius-sm);
}

.fei-navigation__icon .bar,
.fei-navigation__icon span,
.fei-nav-icon .bar,
.fei-nav-icon span {
  background: #fff;
  border-radius: 2px;
}

.fei-body-navigation,
.fei-navigation__body {
  background-color: var(--fei26-primary-deep);
}

/* Menu principal desktop */
@media (min-width: 992px) {

  .fei-bnav-body,
  .fei-navigation__collapse {
    color: #fff;
    background-color: transparent;
  }

  .fei-bnav-body a,
  .fei-navigation__collapse a {
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--fei26-fs-sm);
    font-weight: 600;
    text-transform: none;
    padding: 12px 14px;
    border-radius: var(--fei26-radius-md);
    transition:
      color var(--fei26-transition-fast),
      background var(--fei26-transition-fast);
  }

  .fei-bnav-body a:hover,
  .fei-navigation__collapse a:hover,
  .fei-bnav-body a:focus,
  .fei-navigation__collapse a:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    opacity: 1;
  }

  .fei-bnav-body li:after,
  .fei-navigation__collapse li:after {
    color: rgba(255, 255, 255, 0.25);
  }
}

/* Menu mobile */
@media (max-width: 991px) {

  .fei-bnav-body,
  .fei-navigation__collapse {
    color: var(--fei26-text);
    background: #fff;
  }

  .fei-bnav-body a,
  .fei-navigation__collapse a {
    color: var(--fei26-text-soft);
    font-size: var(--fei26-fs-sm);
    font-weight: 600;
    text-transform: none;
    border-bottom: 1px solid var(--fei26-border);
  }

  .fei-bnav-body a:hover,
  .fei-navigation__collapse a:hover {
    color: var(--fei26-primary);
    background: var(--fei26-primary-light);
  }
}

/* Dropdown */
.fei-navigation-dropdown {
  color: var(--fei26-text);
  background: #fff;
  border: 1px solid var(--fei26-border);
  border-radius: var(--fei26-radius-lg);
  box-shadow: var(--fei26-shadow-md);
}

@media (min-width: 768px) {
  .fei-navigation-dropdown {
    padding: 8px;
  }

  .fei-navigation-dropdown:before {
    border-bottom-color: #fff;
  }

  .fei-navigation-dropdown li a {
    margin: 0;
    padding: 10px 12px;
    border-radius: var(--fei26-radius-md);
    color: var(--fei26-text-soft);
    font-size: var(--fei26-fs-sm);
    font-weight: 500;
    white-space: nowrap;
  }

  .fei-navigation-dropdown li:hover>a,
  .fei-navigation-dropdown li.hover>a,
  .fei-navigation-dropdown li.is-hovered>a {
    color: var(--fei26-primary);
    background: var(--fei26-primary-light);
    box-shadow: none;
  }
}

/* Quick navigation */
.fei-navigation__quick {
  background: #fff;
  color: var(--fei26-text);
  box-shadow: var(--fei26-shadow-lg);
}

.fei-navigation__quick a {
  color: var(--fei26-text-soft);
  border-radius: var(--fei26-radius-md);
  font-weight: 600;
}

@media (min-width: 992px) {
  .fei-navigation__quick a:hover {
    color: var(--fei26-primary);
    background: var(--fei26-primary-light);
    box-shadow: none;
  }
}

/* =========================================================
   11. SLIDESHOW / BANNERS
========================================================= */

.fei-slideshow {
  position: relative;
  z-index: 1;
}

.fei-slideshow .fei-slideshow__item {
  color: #fff;
  font-weight: 400;
}

.fei-slideshow__caption {
  font-size: var(--fei26-fs-lg);
  line-height: 1.65;
}

.fei-slideshow__caption .fei-section-title {
  color: #fff;
}

.fei-slideshow__controls .control {
  color: #fff;
}

@media (min-width: 768px) {
  .fei-slideshow__controls .control {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
  }

  .fei-slideshow__controls .control:hover,
  .fei-slideshow__controls .control:focus {
    background: rgba(0, 0, 0, 0.35);
  }
}

.fei-slideshow-nav .fei-slideshow-nav__item {
  background-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.fei-slideshow-nav .fei-slideshow-nav__item:hover,
.fei-slideshow-nav .fei-slideshow-nav__item.is-active {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.fei-slideshow-details {
  background: var(--fei26-primary-deep);
  color: #fff;
}

.fei-slideshow-details__container .fei-slideshow-details__item .fei-slideshow-details__title {
  color: #A9DCF5;
  font-size: var(--fei26-fs-lg);
  font-weight: 700;
}

/* =========================================================
   12. TABS
========================================================= */

.fei-tabs {
  margin: 20px 0;
  padding: 0;
}

.fei-tabs li {
  margin: 0 6px 6px 0;
}

.fei-tabs a {
  display: block;
  padding: 10px 16px;
  color: var(--fei26-text-muted);
  font-size: var(--fei26-fs-sm);
  font-weight: 600;
  border-radius: var(--fei26-radius-md);
  transition:
    color var(--fei26-transition-fast),
    background var(--fei26-transition-fast),
    box-shadow var(--fei26-transition-fast);
}

.fei-tabs li.is-active a,
.fei-tabs li:hover a,
.fei-tabs li:focus a {
  color: #fff;
  background: var(--fei26-primary);
  box-shadow: var(--fei26-shadow-sm);
  opacity: 1;
}

.fei-projects .fei-tabs li.is-active a,
.fei-projects .fei-tabs li:hover a,
.fei-projects .fei-tabs li:focus a {
  background-color: #ff8c27;
}

.fei-news .fei-tabs li.is-active a,
.fei-news .fei-tabs li:hover a,
.fei-news .fei-tabs li:focus a {
  background-color: #6536a6;
}

.fei-vest .fei-tabs li.is-active a,
.fei-vest .fei-tabs li:hover a,
.fei-vest .fei-tabs li:focus a {
  background-color: #f7b31b;
}

/* =========================================================
   13. TAGS / BADGES
========================================================= */

.tag,
.fei-tags .fei-news-tag {
  display: inline-block;
  padding: 5px 12px;
  font-size: var(--fei26-fs-xs);
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--fei26-radius-pill);
  background: var(--fei26-surface-2);
  color: var(--fei26-text-soft);
  transition: all var(--fei26-transition-fast);
}

.tag.tag--primary,
.fei-tags .tag--primary.fei-news-tag {
  background: var(--fei26-primary-light);
  color: var(--fei26-primary);
}

.tag.tag--secondary,
.fei-tags .tag--secondary.fei-news-tag {
  background: rgba(25, 135, 84, 0.12);
  color: var(--fei26-success);
}

.tag.tag--project,
.fei-tags .tag--project.fei-news-tag {
  background: rgba(255, 140, 39, 0.14);
  color: #C56200;
}

.tag.tag--news,
.fei-tags .tag--news.fei-news-tag {
  background: rgba(101, 54, 166, 0.12);
  color: #6536a6;
}

/* =========================================================
   14. NOTÍCIAS
========================================================= */

.fei-news-default img {
  border-radius: var(--fei26-radius-lg);
  box-shadow: var(--fei26-shadow-sm);
}

.fei-news-default p {
  color: var(--fei26-text-soft);
}

.fei-date {
  margin: 14px 0 0 0;
  color: var(--fei26-text-muted);
  font-size: var(--fei26-fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fei-card .fei-date {
  margin: 0 0 10px 0;
}

.fei-tags {
  margin-top: -18px;
}

.fei-tags .fei-news-tag {
  padding: 10px 14px;
}

.fei-news-eye {
  background: var(--fei26-surface);
  border-left: 4px solid var(--fei26-primary);
  border-radius: var(--fei26-radius-md);
  color: var(--fei26-text-soft);
}

.fei-news-article p {
  color: var(--fei26-text-soft);
}

@media (min-width: 992px) {
  .fei-news-article p {
    font-size: 18px;
    line-height: 1.75;
  }
}

/* =========================================================
   15. VESTIBULAR
========================================================= */

.fei-vest-box {
  background-color: var(--fei26-primary-deep);
  border-top-color: #f7b31b;
  border-radius: var(--fei26-radius-lg);
  box-shadow: var(--fei26-shadow-sm);
  padding: 20px;
}

.fei-vest-box .fei-vest-date,
.fei-vest-box .fei-vest-box__date {
  color: #f7b31b;
  font-weight: 700;
}

.fei-vest .fa {
  color: #f7b31b;
}

/* =========================================================
   16. MODAIS
========================================================= */

.fei-modal {
  background-color: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(4px);
}

.fei-modal .button--close,
.fei-modal .close-button {
  color: #fff;
}

/* =========================================================
   17. TABELAS
========================================================= */

.table th,
.table td {
  border-top: 1px solid var(--fei26-border);
}

.table thead th {
  border-bottom: 2px solid var(--fei26-border);
  color: var(--fei26-text);
  font-weight: 700;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--fei26-surface);
}

.table-hover tbody tr:hover {
  background-color: var(--fei26-primary-light);
}

/* =========================================================
   18. FOOTER
========================================================= */

.fei-footer {
  position: relative;
  padding: 0;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  background: #17232C;
}

.fei-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--fei26-transition-fast);
}

.fei-footer a:hover,
.fei-footer a:focus {
  color: #fff;
  opacity: 1;
}

.fei-footer .fei-footer__title {
  color: #fff;
  font-size: var(--fei26-fs-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fei-footer .fei-footer__container {
  color: rgba(255, 255, 255, 0.75);
}

.fei-back-to-top {
  color: #fff;
  background: var(--fei26-primary);
}

@media (min-width: 768px) {
  .fei-back-to-top {
    background: var(--fei26-primary);
    box-shadow: var(--fei26-shadow-md);
  }

  .fei-back-to-top:hover,
  .fei-back-to-top:focus {
    background: var(--fei26-primary-dark);
    opacity: 1;
  }
}

/* =========================================================
   19. ALERTAS
========================================================= */

.fei-alert {
  border-radius: var(--fei26-radius-md);
  padding: 14px 18px;
  font-size: var(--fei26-fs-sm);
  font-weight: 600;
}

.fei-alert.alert-success {
  background: var(--fei26-success);
}

.fei-alert.alert-danger {
  background: var(--fei26-danger);
}

.fei-warning {
  border-radius: var(--fei26-radius-md);
}

.fei-warning.alert-success {
  background: rgba(25, 135, 84, 0.12);
  color: var(--fei26-success);
  border-color: rgba(25, 135, 84, 0.22);
}

.fei-warning.alert-info {
  background: var(--fei26-primary-light);
  color: var(--fei26-primary);
  border-color: rgba(0, 110, 170, 0.20);
}

.fei-warning.alert-danger {
  background: rgba(192, 57, 43, 0.10);
  color: var(--fei26-danger);
  border-color: rgba(192, 57, 43, 0.22);
}