:root {
  --ed-dark-blue: #204497;
  --ed-cyan: #49DEC0;
  --ed-grey: #C0C8D9;
  --ed-light: #EBF0F5;
  --ed-dark: #1F1F1F;
  --ed-white: #FAFAFA;
  --ed-green: #4AD34A;
  --ed-yellow: #EFC726;
  --ed-purple: #803DD2;
  --ed-orange: #E98828;
  --ed-silver: #808080;
  --ed-blue: #2F80ED;
  --ed-beige: #F8F8F8;
  /* --ed-beige: #fefff2; */

  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --light-shadow: 0 4px 6px -1px rgb(255 255 255 / 0.1);

  --primary: #2563eb;
  --bg-light: #f8fafc;
  --text-muted: #94a3b8;
  --orange-alert: #f97316;
  --border-color: #e2e8f0;
}


body {
  overflow-x: hidden;
  /* Evita scrolls indesejados pela inclinação */
}

.navbar-detalhes {
  display: block;
}

.btn-voltar {
  display: none;
}

.col-card-carousel {
  display: none;
}

.badge-status {
  display: block !important;
}

.header.header-6 .navbar-brand img {
  max-width: 400px !important;
}

#descricao {
  display: none !important;
}

.card-encript {
  border-radius: 20px !important;
}

.img-sobre-desk {
  display: inline;
}

.img-sobre-mobile {
  display: none;
}

.status-mobile {
  display: none;
}

.status-desktop {
  display: block;
}

.navbar-desktop {
  display: block;
}

.img-navbar {
  display: inline;
  width: 25% !important;
}

.img-navbar-mobile {
  display: none;
}

.navbar-mobile {
  display: none;
}

.btn-encript-mobile {
  display: none;
}

.card-about {
  padding: 30px;
  min-height: 100%;
  margin: 5px 0;
}

.margin-card {
  margin: 10px 0 !important;
}

.desc-seguranca {
  padding-inline: 0px !important;
  text-align: center;
}

.single-feature {
  min-height: 100% !important;
}

.subheader {
  font-size: 1.3rem;
  font-weight: normal;
  word-spacing: 2px;
}

.subheader strong {
  color: var(--ed-dark);
}

.text-highlight {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.hero-section-wrapper-5 .hero-style-5 .hero-content-wrapper {
  padding: 10px 0;
}

.filtro-planos {
  display: none !important;
}

@media (max-width: 992px) {

  .row-hero {
    flex-direction: column-reverse !important;
  }

}

/* AREA ENCRIPT */
.input-wrapper:focus-within {
  background-color: #e9eef6;
  /* Escurece levemente ao clicar */
}

.input-wrapper {
  display: flex;
  align-items: center;
  background-color: #f0f4f9;
  border-radius: 28px;
  padding: 8px 16px;
  width: 100%;
  max-width: 750px;
  gap: 8px;
}

textarea {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  resize: none;
  font-family: inherit;
  font-size: 16px;
  padding: 12px 4px;
  max-height: 200px;
}

.img-tabela-mobile {
  display: none;
}

.img-tabela-desk {
  display: inline;
}

.icon-btn,
.send-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 1.2rem;
  color: var(--ed-dark-blue);
}

.send-btn {
  cursor: pointer;
}

/* .icon-btn:hover {
  color: var(--ed-cyan);
} */

.send-btn:hover {
  color: var(--ed-green);
}

#clear-chat:hover {
  color: #D34747;
}

.voice-visualizer {
  display: none;
  align-items: center;
  gap: 3px;
  height: 20px;
  margin-right: 10px;
}

.bar {
  width: 3px;
  height: 8px;
  background-color: var(--ed-cyan);
  border-radius: 2px;
  animation: pulse 0.6s infinite ease-in-out alternate;
}

.bar:nth-child(2) {
  animation-delay: 0.1s;
}

.bar:nth-child(3) {
  animation-delay: 0.2s;
}

.bar:nth-child(4) {
  animation-delay: 0.3s;
}

.bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  from {
    height: 4px;
    transform: scaleY(1);
  }

  to {
    height: 18px;
    transform: scaleY(1.2);
  }
}

.recording {
  background-color: #fce8e6 !important;
  /* Fundo avermelhado leve */
  color: var(--ed-cyan) !important;
  animation: shadow-pulse 1.5s infinite;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(217, 48, 37, 0.4);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(217, 48, 37, 0);
  }
}

.chat-wrapper {
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  max-width: 800px;
  margin: 0 auto;
}

.chat-history {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message {
  display: flex;
  max-width: 80%;
}

.message.user {
  align-self: flex-end;
  /* background-color: #e9eef6; */
  background-color: #9AE7DB;
  padding: 12px 18px;
  border-radius: 20px 20px 4px 20px;
}

.message.ai {
  align-self: flex-start;
  background-color: transparent;
  background-color: #e9eef6;
  padding: 12px 18px;
  border-radius: 20px 20px 20px 4px;
}

.message.ai::before {
  content: url('../img/logo/icon.svg');
  max-height: 20px;
  max-width: 20px;
  margin-right: 10px;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 10px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background-color: var(--ed-dark-blue);
  border-radius: 50%;
  opacity: 0.4;
  animation: dots 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dots {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}


::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #dadce0;
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #bdc1c6;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #dadce0 transparent;
}

#chat-history {
  overflow-y: auto;
  scrollbar-color: transparent transparent;
}

#chat-history::-webkit-scrollbar-thumb {
  background-color: transparent;
}

#chat-history:hover::-webkit-scrollbar-thumb {
  background-color: #dadce0;
}

#chat-history:hover {
  scrollbar-color: #dadce0 transparent;
}

.message-wrap {
  overflow-wrap: anywhere;
}

.text-descricao {
  font-size: 1.2rem;
}

.area-chat {
  border-radius: 50px;
  margin-bottom: 10px;
  padding: 50px;
}

#area-resposta {
  background-color: var(--ed-white);
  border-radius: 25px;
  padding: 50px;
}

.bg-ed-dark-blue {
  background-color: var(--ed-dark-blue) !important;
}

.bg-ed-beige {
  background-color: var(--ed-beige) !important;
}

.bg-ed-cyan {
  background-color: var(--ed-cyan) !important;
}

.bg-ed-grey {
  background-color: var(--ed-grey) !important;
}

.bg-ed-light {
  background-color: var(--ed-light) !important;
}

.bg-ed-dark {
  background-color: var(--ed-dark) !important;
}

.bg-ed-yellow {
  background-color: var(--ed-yellow) !important;
}

.bg-ed-green {
  background-color: var(--ed-green) !important;
}

.bg-ed-purple {
  background-color: var(--ed-purple) !important;
}

.bg-ed-orange {
  background-color: var(--ed-orange) !important;
}

.bg-ed-silver {
  background-color: var(--ed-silver) !important;
}

.txt-ed-dark-blue {
  color: var(--ed-dark-blue) !important;
}

.txt-ed-cyan {
  color: var(--ed-cyan) !important;
}

.txt-ed-grey {
  color: var(--ed-grey) !important;
}

.txt-ed-light {
  color: var(--ed-light) !important;
}

.txt-ed-dark {
  color: var(--ed-dark) !important;
}

.txt-ed-yellow {
  color: var(--ed-yellow) !important;
}

.txt-ed-green {
  color: var(--ed-green) !important;
}

.txt-ed-purple {
  color: var(--ed-purple) !important;
}

.txt-ed-orange {
  color: var(--ed-orange) !important;
}

.txt-ed-silver {
  color: var(--ed-silver) !important;
}

.txt-ed-blue {
  color: var(--ed-blue) !important;
}

.img-card {
  max-height: 350px;
  padding: 10px;
}

.card-footer {
  background-color: transparent;
}

.card-img-top {
  max-width: 50%;
}

.card-about {
  border-radius: 15px;
  border-color: transparent;
  color: var(--ed-dark);
}

/* SIDEBAR */
.wrapper {
  display: flex;
}

main {
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

#sidebar {
  width: 90px;
  min-width: 90px;
  transition: all 0.25s ease-in-out;
  background-color: var(--ed-dark-blue);
  display: flex;
  flex-direction: column;
}

#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
  display: none;
}

#sidebar:not(.expand) a.sidebar-link:hover {
  color: var(--ed-cyan) !important;
}

#sidebar.expand {
  width: 260px;
  min-width: 260px;
}

.toggle-btn {
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 0.425rem;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ed-cyan);
}

.toggle-btn i {
  color: #fff;
}

#sidebar.expand .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.sidebar-logo a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
}

a.sidebar-link {
  padding: .625rem 1.625rem;
  color: #fff;
  display: block;
  white-space: nowrap;
  font-weight: 700;
  border-left: 3px solid transparent;
}

.sidebar-nav {
  padding: 0.7rem 0;
  flex: 1 1 auto;
  z-index: 999;
}

.sidebar-link i,
.dropdown-item i {
  font-size: 1.1rem;
  margin-right: .75rem;
}

a.sidebar-link:hover {
  background-color: rgba(255, 255, 255, .075);
  border-left: 3px solid var(--ed-cyan);
}

.sidebar-item {
  position: relative;
}

#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
  position: absolute;
  top: 0;
  left: 90px;
  background-color: #0e2238;
  padding: 0;
  min-width: 15em;
  display: none;
}

#sidebar:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown {
  display: block;
  max-height: 15em;
  width: 100%;
  opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]:after {
  border: solid;
  border-width: 0 .075rem .075rem 0;
  content: "";
  display: inline-block;
  padding: 2px;
  position: absolute;
  right: 1.5rem;
  top: 1.4rem;
  transform: rotate(-135deg);
  transition: all .2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
  transform: rotate(45deg);
  transition: all .2s ease-out;
}

.sidebar-dropdown .sidebar-link {
  position: relative;
  padding-left: 3rem;
  transition: all 0.5s;
}

.sidebar-dropdown a.sidebar-link::before {
  content: "";
  height: 0.125rem;
  width: 0.375rem;
  background-color: #ffffff80;
  position: absolute;
  left: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.sidebar-dropdown a.sidebar-link:hover {
  background-color: transparent;
  border-left: 3px solid transparent;
  padding-left: 3.8rem;
  color: var(--ed-cyan);
}

@media (max-width: 768px) {
  #sidebar {
    width: 100%;
    /* Ocupa a largura total da tela */
    min-width: 100%;
    height: 70px;
    /* Altura do menu inferior */
    flex-direction: row;
    /* Itens ficam lado a lado */
    justify-content: space-around;
    /* Distribui os botões igualmente */
    align-items: center;
    /* Centraliza verticalmente */
    position: fixed;
    top: auto;
    /* Remove a fixação no topo */
    bottom: 0;
    /* Fixa no rodapé */
    left: 0;
    /* padding: 0 10px; */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    /* Sombra suave no topo do menu */
    z-index: 90;
  }

  .area-sidebar-logo {
    display: none !important;
  }

  .sidebar-nav {
    display: flex;
    justify-content: space-around;
  }

  .header.header-6 .navbar-brand img {
    max-width: 180px !important;
  }

  #descricao {
    display: block !important;
  }

}

.titulo-page {
  font-size: 2rem !important;
  text-align: center !important;
}

/* TABLECHART */
.area-encripts {
  background-color: var(--ed-light);
  padding: 15px;
  border-radius: 10px;
}

.chart-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent !important;
  box-shadow: none !important;
  transition: all .3s ease;
  border: 0;
  margin-bottom: 24px;
}

.chart-title {
  padding: 6px 24px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #1e293b;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  margin-left: -20px;
  margin-right: -20px;
  flex-wrap: wrap;
  justify-content: center;
}

.chart-title>.card-title {
  justify-content: center;
}

.table>:not(:last-child)>:last-child>* {
  border-bottom-color: var(--ed-light) !important;
}

.table>:not(caption)>*>* {
  border-bottom: none;
}

tbody tr {
  vertical-align: middle;
  background-color: var(--ed-white) !important;
  border-radius: 10px;
  margin-block: 10px;
  border: none !important;
}

.icone-card {
  font-size: 5rem;
}

.card-encript {
  cursor: pointer;
}

/* .single-pricing{
  min-height: 700px !important;
} */

.single-pricing {
  /* min-height: 100vh !important; */
  min-height: auto !important;
}

.single-pricing .card-footer {
  display: flex;
  justify-content: center;
}

.area-dashboard {
  padding: 20px;
  border-radius: 20px;
  margin-block: 15px;
}

.area-escolha-encript {
  padding: 40px !important;
}

.destinatario-item {
  line-height: normal !important;
  margin-bottom: 2px !important;
}

.titulo-passo {
  display: none;
}

#banner {
  /* background-image: url('../img/banner/banner-3.png'); */
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  background-repeat: no-repeat;
  /* background-position: right; */
  background-position: center;
  background-size: cover;
  animation: changeBackground ease-in-out 15s infinite;
}

@keyframes changeBackground {
  0% {
    background-image: url('../img/banner/banner-1.png');
  }

  66% {
    background-image: url('../img/banner/banner-2.png');
  }

  100% {
    background-image: url('../img/banner/banner-1.png');
  }
}

.detalhe-plano li {
  padding: 0 !important;
  margin: 3px 0 !important;
  line-height: normal !important;
  text-align: left !important;
}

.message {
  /* Define a animação: nome, duração, tipo, delay, modo de preenchimento */
  animation: fadeIn 1s ease-in-out 2s forwards;

  /* O elemento começa invisível */
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    /* Opcional: desliza de baixo para cima */
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-desc {
  font-size: 1.1rem !important;
  /* text-align: justify; */
}

/* Container que envolve os 6 inputs */
.otp-inputs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* Estilização de cada quadrado */
.otp-inputs input {
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border: 2px solid #ced4da;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
  outline: none;
}

/* Efeito ao clicar ou focar no campo */
.otp-inputs input:focus {
  border-color: #4A90E2;
  box-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
  transform: scale(1.05);
}

/* Estilo para o botão de verificação */

#verify-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

@media (max-width: 768px) {

  body {
    font-size: 0.9rem !important;
  }

  .form-label {
    font-size: 0.9rem !important;
  }

  .titulo-passo {
    display: block;
    font-size: 1.1rem !important;
  }

  .section-title h3 {
    font-size: 1.7rem
  }

  .contact-form-wrapper {
    padding: 5px !important;
  }

  .area-chat {
    border-radius: 50px;
    margin-bottom: 10px;
    padding: 5px !important;
  }

  #desc_encript {
    text-align: justify !important;
  }

  .chat-history {
    padding: 2px !important;
  }

  .area-escolha-encript {
    padding: 10px !important;
  }

  /* .area-escolha-encript .section-title h3{
    font-size: 1.4rem;
  } */

  main {
    margin-bottom: 70px !important;
  }

  .img-navbar {
    display: none;
  }

  .img-navbar-mobile {
    display: block;
    height: 70px !important;
  }

  .filter-btn.btn-perfil {
    display: flex;
    justify-content: center !important;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    height: 100%;
  }

  .navbar-desktop {
    display: none;
  }

  .navbar-mobile {
    display: block;
  }

  .area-encripts {
    display: none;
  }

  .btn-encript-mobile {
    display: block;
  }

  .message {
    font-size: 0.8rem;
    padding: 12px 14px !important;
    margin: 5px 0 !important;
  }

  .chat-wrapper {
    min-height: 80vh;
  }

  #sidebar:not(.expand) a.sidebar-link span {
    /* display: block; */
    /* font-size: 0.8rem; */
  }

  .sidebar-link {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .sidebar-link i {
    font-size: 1.3rem !important;
    display: block;
    padding: 0 !important;
    margin: 0 !important;
  }

  .dest_title {
    text-align: left !important;
  }

  .btn-plano {
    flex-wrap: wrap;
  }

  .btn-plano a {
    margin: 5px 0;
  }

  .navbar-detalhes {
    display: none;
  }

  .row-detalhe {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
  }

  .div-titulo {
    min-width: 300px;
    border-left: solid 1px var(--ed-light);
    padding-left: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  h1.titulo-page {
    font-size: 1.5rem !important;
    text-align: left !important;
  }

  .btn-voltar {
    display: flex;
    align-items: center;
    color: var(--ed-dark-blue);
    width: 100%;

  }

  .btn-voltar i {
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
  }

  #titulo_encript,
  #titulo_lista_encripts {
    margin-top: 10px !important;
    text-align: left !important;
    font-size: 1.2rem !important;
    font-weight: 500;
  }

  .div-detalhe {
    margin-block: 0 !important;
  }

  .status-mobile {
    display: block;
  }

  .status-desktop {
    display: none;
  }

  /* DASHBOARD */
  .b-info-card {
    padding: 5px !important;
    margin: 5px !important;
  }

  .titulo-section {
    font-size: 1.3rem !important;
    font-weight: 400;
  }

  .area-dashboard {
    padding: 5px;
    border-radius: 20px;
    margin-block: 15px;
  }

  #chat-history {
    max-height: 70vh !important;
    /* background-color: var(--ed-dark); */
  }

  .input-wrapper {
    position: fixed !important;
    left: 0;
    bottom: 80px;
  }


  .card-desc {
    font-size: 0.9rem !important;
  }

  .logo-grande {
    width: 70%;
  }

  .btn-group {
    display: flex !important;
    flex-direction: column !important;
  }

  .btn-group .btn {
    text-align: left !important;
  }


  .area-status {
    margin-bottom: 80px;
  }

  .row-about {
    flex-direction: column-reverse;
  }

  .col-carousel {
    display: none !important;
  }

  .col-card-carousel {
    display: block !important;
  }

  .titulo-banner {
    font-size: 2rem !important;
  }

  .filtro-planos {
    display: flex !important;
  }
}

.table-title {
  font-size: 1.4rem;
  ;
}

.feature-style-5 .single-feature {
  padding: 15px !important;
}

.btn-card {
  border-radius: 15px;
}

/* .topico_detalhe {
  display: none !important;
} */

/* Estilo do Banner Full-Width */
.financeiro-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff3cd;
  /* Amarelo de atenção */
  border-bottom: 2px solid #ffeeba;
  padding: 12px 25px;
  font-family: sans-serif;
  color: #856404;
  animation: slideDown 0.5s ease-out;
}

.banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.banner-content p {
  margin: 0;
  font-size: 14px;
}

.banner-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Botão de Ação */
.btn-pagar {
  background-color: #856404;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

.btn-pagar:hover {
  background-color: #6d5203;
}

/* Botão de fechar (X) */
.btn-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #856404;
  cursor: pointer;
  opacity: 0.6;
}

.btn-close:hover {
  opacity: 1;
}

/* Animação de entrada */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.gatilho_title {
  display: none !important;
}

.video-container {
  /* position: relative; */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Faz o vídeo cobrir a área sem distorcer */
  z-index: -1;
  /* Joga o vídeo para trás do conteúdo */
}

#row-anexos {
  display: none;
}

#editor {
  min-height: 200px;
}

#start,
#stop {
  cursor: pointer !important;
}

.usuario-plano {
  border: solid 5px var(--ed-dark-blue) !important;
  border-radius: 25px !important;
}

.usuario-plano::before {
  content: "Seu plano Atual é este";
  color: var(--ed-dark-blue);
}

#btn_add_dest,
#btn_proxima,
#area_destinatarios {
  display: none !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

/* .single-pricing ul li{
  font-size: 16px !important;
} */

/* Esconde o input original */
.custom-file-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Estiliza o "botão" falso */
/* .custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    font-family: sans-serif;
    transition: background 0.3s;
}

.custom-file-upload:hover {
    background-color: #2980b9;
} */

.texto-longo {
  /* overflow-wrap: break-word; */
  word-wrap: break-word;
  /* Ou overflow-wrap: break-word; */
  word-break: break-all;
}

/* #passos, */
#manifesto {
  min-height: 100vh;
}

.titulo-banner,
.texto-banner {
  /* text-shadow: 0px 4px 6px rgba(164, 93, 48, 1); */
  text-shadow: 0px 0px 5px rgba(32, 68, 151, 1);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ed-card {
  background: var(--ed-white);
  border: 1px solid var(--ed-light);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

.ed-card:hover {
  transform: translateY(-5px);
}

.ed-card-title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ed-dark);
}

.ed-card-text {
  font-size: 0.9rem;
  color: var(--ed-silver);
}

.card-c .content {
  padding: 2rem 1.5rem;
  text-align: center;
}

.card-c .footer {
  display: flex;
  border-top: 1px solid var(--ed-light);
  background: var(--ed-white);
}

.card-c .footer .btn-flat {
  flex: 1;
  border: none;
  padding: 15px;
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  /* color: var(--secondary); */
}

.card-c .footer .btn-flat:first-child {
  border-right: 1px solid var(--ed-light);
}

.card-c .footer .btn-flat.active {
  color: var(--ed-dark-blue);
}

.card-c .footer .btn-flat:hover {
  background: var(--ed-light);
}

.btn-outline-ed-silver {
  background-color: transparent;
  border: 1px solid var(--ed-silver);
}

.btn-ed-dark-blue {
  background-color: var(--ed-dark-blue);
  border: 1px solid rgba(32, 68, 151, 0.8);
  color: var(--ed-light);
  box-shadow: var(--shadow);
  font-weight: bold;
}

.btn-ed-dark-blue:hover {
  color: var(--ed-light);
}

.btn-outline-ed-dark-blue {
  background-color: transparent;
  border: 1px solid rgba(32, 68, 151, 0.8);
  color: var(--ed-dark-blue);
  box-shadow: var(--shadow);
  font-weight: bold;
}

.btn-check:active+.btn-outline-ed-dark-blue,
.btn-check:checked+.btn-outline-ed-dark-blue,
.btn-outline-ed-dark-blue.active,
.btn-outline-ed-dark-blue.dropdown-toggle.show,
.btn-outline-ed-dark-blue:active,
.btn-outline-ed-dark-blue:hover,
.btn-outline-ed-dark-blue:focus {
  background-color: var(--ed-dark-blue);
  border: 1px solid var(--ed-dark-blue);
  color: var(--ed-light);
}

.form-control,
.form-select {
  border-color: var(--ed-silver) !important;
  border-width: 1.1px;
}

.titulo-dashboard {
  font-size: 20px !important;
}

.progress {
  width: 75%;
  margin: 0 auto !important;
}

.filter-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
  height: 100%;
}

.filter-btn.btn-status {
  justify-content: space-between !important;
}

.filter-btn .badge {
  font-size: 0.75rem;
  min-width: 25px;
}

.btn-inactive {
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  color: #94a3b8;
}

.btn-inactive .badge {
  background-color: var(--ed-silver) !important;
  color: var(--ed-white);
}

.btn-inactive:hover {
  background-color: #f1f5f9;
  color: #64748b;
}

.navbar-txt {
  font-size: 0.9rem;
  line-height: normal !important;
}

.img-passo {
  /* border: solid 2px var(--bg-light); */
  box-shadow: var(--light-shadow);
  max-width: 50% !important;
}

.col-passo {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 500px !important;
}

.col-controls-mobile {
  display: none;
}

@media (max-width: 768px) {
  .col-passo {
    display: none;
  }

  .col-controls-mobile {
    display: block;
    margin-top: 10px;
  }

  #banner {
    align-items: baseline;
  }

  .text-banner {
    display: flex;
    flex-direction: row;
    height: 90vh;
    align-content: space-between;
    flex-wrap: wrap;
  }

  .margin-card {
    /* margin: 10px !important; */
    /* padding: 20px; */
  }

  /* .titulo-banner {
    top: 100px;
    font-size: 1.5rem;
  }

  .texto-banner {
    bottom: 20dvh;
    margin: auto;
    padding: 20px;
  }

  .button-banner {
    bottom: 10dvh;
    margin: auto;
    padding: 10px;
  } */

  .img-tabela-mobile {
    display: inline;
  }

  .img-tabela-desk {
    display: none;
  }

  .img-sobre-desk {
    display: none;
  }

  .img-sobre-mobile {
    display: inline;
  }

  .feature-style-5 .single-feature {
    width: 90%;
    margin: 0 auto;
  }
}

.button i {
  padding: 0;
}

/* .item-criar{
} */