/* Estilos do Dark Mode */
body.dark-mode {
  background-color: #121212 !important;
  color: #ffffff !important;
}

.dark-mode {
  background-color: #121212 !important;
  color: #ffffff !important;
}

.dark-mode .navigation-wrap {
  background-color: #1f1f1f !important;
}

.dark-mode a.nav-link {
  color: #ffffff !important;
}

.dark-mode .carousel-caption h2,
.dark-mode .carousel-caption p {
  color: #ffffff !important;
}

/* Botão de alternância do tema */
.theme-switch {
  position: relative;
  display: flex;
  justify-content: center;
  direction: rtl;
}

#theme-checkbox {
  display: none;
}

#theme-checkbox + label {
  font-size: 1.3rem;
  height: 1em;
  width: 2.5em;
  border-radius: 0.25em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  background-color: #cecece;
  position: relative;
  margin-left: 2vh;
}

#theme-checkbox:checked + label {
  background-color: #3a3a3a;
}

#theme-checkbox + label:active {
  transform: scale(0.85);
  transition: transform 0.2s;
}

#theme-checkbox + label div {
  width: 0.8em;
  height: 0.8em;
  border-radius: inherit;
  position: absolute;
  top: 0.1em;
  left: 0.1em;
  z-index: 10;
  transition: 0.5s cubic-bezier(1, 0.33, 0.11, 1.34);
  background-color: #f2f2f2;
}

#theme-checkbox:checked + label div {
  left: 1.6em;
  background-color: #212121;
}

#theme-checkbox + label span {
  display: flex;
}

#theme-checkbox + label svg {
  display: inline-block;
  height: 1em;
  width: 1em;
  padding: 0.15em;
  box-sizing: border-box;
}

#theme-checkbox + label span:first-of-type {
  color: #3a3a3a;
}

#theme-checkbox + label span:last-of-type {
  color: #cecece;
}

ul {
  margin: 0px;
  padding: 0px;
}
.footer-section {
  margin-top: 10vh !important;
  background: #f8f9fa; /* Fundo claro por padrão */
  position: relative;
  color: #333; /* Texto escuro */
}
.footer-cta {
  border-bottom: 1px solid #ddd; /* Linha de separação clara */
}
.single-cta i {
  color: #ff5e14;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #333; /* Texto escuro */
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #555;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer-logo img {
  max-width: 200px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #555; /* Texto escuro */
  line-height: 28px;
}
.footer-social-icon span {
  color: #333; /* Texto escuro */
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #333;
  font-size: 16px;
  margin-right: 15px;
}
.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.facebook-bg {
  background: #3B5998;
}
.twitter-bg {
  background: #55ACEE;
}
.google-bg {
  background: #DD4B39;
}
.footer-widget-heading h3 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}
.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover {
  color: #ff5e14;
}
.footer-widget ul li a {
  color: #666;
  text-transform: capitalize;
}
.subscribe-form {
  position: relative;
  overflow: hidden;
}
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ffffff; /* Fundo branco */
  border: 1px solid #ccc;
  color: #333; /* Texto escuro */
}
.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff5e14;
  padding: 13px 20px;
  border: 1px solid #ff5e14;
  top: 0;
}
.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}
.copyright-area {
  background: #e9ecef; /* Cinza claro */
  padding: 25px 0;
}
.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
}
.copyright-text p a {
  color: #ff5e14;
}
.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
.footer-menu li:hover a {
  color: #ff5e14;
}
.footer-menu li a {
  font-size: 14px;
  color: #666;
}

/* 🌙 DARK MODE: Ativado apenas quando o Dark Mode estiver ativo */
.dark-mode .footer-section {
  background: #151414 !important;
  color: #ffffff !important;
}
.dark-mode .footer-cta {
  border-bottom: 1px solid #373636 !important;
}
.dark-mode .cta-text h4 {
  color: #ffffff !important;
}
.dark-mode .cta-text span {
  color: #aaaaaa !important;
}
.dark-mode .footer-text p {
  color: #bdbdbd !important;
}
.dark-mode .footer-widget-heading h3 {
  color: #ffffff !important;
}
.dark-mode .footer-widget ul li a {
  color: #bbbbbb !important;
}
.dark-mode .footer-widget ul li a:hover {
  color: #ff5e14 !important;
}
.dark-mode .footer-social-icon span {
  color: #ffffff !important;
}
.dark-mode .footer-menu li a {
  color: #bbbbbb !important;
}
.dark-mode .footer-menu li:hover a {
  color: #ff5e14 !important;
}
.dark-mode .copyright-area {
  background: #202020 !important;
}
.dark-mode .copyright-text p {
  color: #bdbdbd !important;
}

.dark-mode #titleProfile{
  color: #fff !important;
}