/* ============================================

   GLOBAL PRINCIPAL

   ============================================ */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap"); /* ============================================

   VARIÁVEIS CSS

   ============================================ */
:root {
  --primary-theme: #2a2d30;
  --secondary-theme: #ffffff;
  --tertary-theme: #00ff90;
  --fourtary-theme: #344c33;
  --quinary-theme: #398952;
  --sixnary-theme: #696969;
  --sevenary-theme: #f0f5da;
  --font-theme: "DM Sans", sans-serif;
}

/* ============================================

   RESET E ESTILOS GLOBAIS

   ============================================ */
body {
  font-family: var(--font-theme);
  background: var(--primary-theme);
  color: var(--secondary-theme);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a,
a:hover {
  text-decoration: none !important;
}

.wrapper-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

.wrapper-md {
  padding-top: 50px;
  padding-bottom: 50px;
}

.wrapper-sm {
  padding-top: 25px;
  padding-bottom: 25px;
}

.text-neon-green {
  color: var(--tertary-theme);
}

.bg-gradient-primary {
  background: var(--primary-theme);
  background: linear-gradient(
    180deg,
    rgba(42, 45, 48, 1) 0%,
    rgba(52, 76, 51, 1) 100%
  );
}

.bg-gradient-secondary {
  background: var(--quinary-theme);
  background: linear-gradient(
    180deg,
    rgba(52, 76, 51, 1) 0%,
    rgba(42, 45, 48, 1) 100%
  );
}

/* ============================================

   PRELOADER

   ============================================ */
/* =================================================================
   PRELOADER - LOTTIE ANIMATION
   ================================================================= */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease-out,
    visibility 0.6s ease-out;
  will-change: opacity, visibility;
}

/* Classe aplicada quando o preloader está sendo ocultado */
.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Container da animação Lottie */
.lottie-loader {
  width: 100%;
  max-width: 750px;
  height: 750px;
  will-change: transform, opacity;
  transform-origin: center center;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .lottie-loader {
    max-width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .lottie-loader {
    max-width: 150px;
    height: 150px;
  }
}

/* ============================================

   HERO

   ============================================ */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.hero-page {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.hero::after,
.hero-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(42, 45, 48, 1) 20%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero .content,
.hero-page .content {
  position: relative;
  z-index: 2;
  color: var(--secondary-theme);
}

/* ============================================

   BUTTONS

   ============================================ */
.btn-primary {
  background-color: var(--tertary-theme);
  border: 2px solid var(--tertary-theme);
  color: var(--primary-theme);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--secondary-theme);
  border: 2px solid var(--secondary-theme);
  color: var(--primary-theme);
}

/* Animação da seta em todos os botões */
.btn .bi-arrow-right,
a .bi-arrow-right,
button .bi-arrow-right {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .bi-arrow-right,
a:hover .bi-arrow-right,
button:hover .bi-arrow-right {
  transform: translateX(5px);
}

/* ============================================

   HEADER PRINCIPAL

   ============================================ */
.main-header {
  position: absolute;
  top: 0;
  z-index: 1030;
  width: 100%;
  background-color: transparent;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  position: fixed;
  top: 0;
  background-color: var(--secondary-theme);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

.main-header.scrolled .navbar {
  padding: 0.5rem 0;
}

.main-header.scrolled .navbar-brand img {
  max-height: 60px;
}

.main-header.scrolled .main-menu > li > a {
  color: var(--primary-theme);
}

.main-header.scrolled .main-menu > li > a:hover {
  color: var(--secondary-theme);
  background: var(--primary-theme);
}

.main-header.scrolled .btn-search {
  color: var(--primary-theme);
}

.main-header.scrolled .btn-search:hover {
  color: var(--tertary-theme);
}

.main-header.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232a2d30' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.main-header .navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  transition: opacity 0.4s ease;
  will-change: opacity;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
}

.site-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

/* ============================================

   MENU PRINCIPAL (Desktop)

   ============================================ */
.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0.452rem 0.85rem;
  gap: 2rem;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.main-menu > li {
  position: relative;
}

/* Área de hover estendida para itens com submenu */
.main-menu .menu-item-has-children {
  position: relative;
}

.main-menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: transparent;
}

.main-menu > li > a {
  color: var(--secondary-theme);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  border-radius: 2rem;
}

.main-menu > li > a:hover {
  color: var(--primary-theme);
  background: var(--secondary-theme);
}

.main-menu .menu-item-has-children > a::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.main-menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 310px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1rem;
  list-style: none;
  margin: 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

/* Ponte invisível para facilitar hover entre item pai e submenu */
.main-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: transparent;
}

.main-menu .menu-item-has-children:hover > .sub-menu,
.main-menu .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.main-menu .sub-menu li {
  position: relative;
}

/* Área de hover estendida para itens de submenu com submenus filhos */
.main-menu .sub-menu .menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.5rem;
  bottom: 0;
  width: 0.5rem;
  background: transparent;
}

.main-menu .sub-menu li a {
  color: var(--primary-theme);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.main-menu .sub-menu li a:hover {
  background-color: var(--tertary-theme);
  color: var(--primary-theme);
  border-radius: 2rem;
  padding: 0.75rem 1.5rem;
}

.main-menu .sub-menu .menu-item-has-children > a::after {
  content: "\f285";
  font-family: "bootstrap-icons";
  font-size: 0.75rem;
}

.main-menu .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
}

/* Ponte invisível lateral para submenus de segundo nível */
.main-menu .sub-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5rem;
  bottom: 0;
  width: 0.5rem;
  height: 100%;
  background: transparent;
}

.main-menu .sub-menu .menu-item-has-children:hover > .sub-menu,
.main-menu .sub-menu .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.main-menu .sub-menu .sub-menu .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.5rem;
}

/* ============================================

   AÇÕES DO NAVBAR

   ============================================ */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-search {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: var(--secondary-theme);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search:hover {
  color: var(--tertary-theme);
  transform: scale(1.1);
}

.btn-contact {
  background-color: var(--tertary-theme);
  color: var(--primary-theme);
  border: 2px solid var(--tertary-theme);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-contact:hover {
  background-color: var(--secondary-theme);
  color: var(--primary-theme);
}

/* ============================================

   SEARCH OVERLAY

   ============================================ */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 45, 48, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 90%;
  max-width: 800px;
  position: relative;
}

.btn-close-search {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--sevenary-theme);
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-close-search:hover {
  transform: rotate(90deg);
}

.search-form {
  width: 100%;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 1.5rem 5rem 1.5rem 2rem;
  font-size: 1.5rem;
  border: none;
  border-radius: 50px;
  outline: none;
  background-color: var(--secondary-theme);
  transition: all 0.3s ease;
}

.btn-submit-search {
  position: absolute;
  right: 1rem;
  background-color: var(--tertary-theme);
  border: none;
  color: var(--secondary-theme);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit-search:hover {
  background-color: var(--quinary-theme);
  transform: scale(1.05);
}

/* ============================================

   OFFCANVAS MOBILE MENU

   ============================================ */
.offcanvas {
  width: 300px !important;
}

.offcanvas-title {
  font-weight: 700;
  color: #333;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  border-bottom: 1px solid #e9ecef;
}

.mobile-menu > li > a {
  color: var(--primary-theme);
  text-decoration: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu > li > a:hover {
  background-color: var(--secondary-theme);
  color: var(--tertary-theme);
  padding-left: 1.5rem;
}

.mobile-menu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--secondary-theme);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu .sub-menu.active {
  max-height: 1000px;
}

.mobile-menu .sub-menu li a {
  color: var(--primary-theme);
  text-decoration: none;
  padding: 0.75rem 1rem 0.75rem 2rem;
  display: block;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.mobile-menu .sub-menu li a:hover {
  background-color: var(--secondary-theme);
  color: var(--tertary-theme);
  padding-left: 2.5rem;
}

.mobile-menu .sub-menu .sub-menu li a {
  padding-left: 3rem;
}

.mobile-menu .sub-menu .sub-menu li a:hover {
  padding-left: 3.5rem;
}

.mobile-menu .sub-menu .sub-menu .sub-menu li a {
  padding-left: 4rem;
}

.mobile-menu .sub-menu .sub-menu .sub-menu li a:hover {
  padding-left: 4.5rem;
}

.mobile-menu .menu-item-has-children > a {
  position: relative;
}

.mobile-menu .menu-item-has-children > a::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.mobile-menu .menu-item-has-children.active > a::after {
  transform: rotate(180deg);
}

.mobile-contact-btn {
  padding: 1rem;
}

/* ============================================

   NAVBAR TOGGLER

   ============================================ */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  background-color: transparent;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

/* ============================================

   ESTADOS ATIVOS

   ============================================ */
.main-menu .current-menu-item > a,
.main-menu .current-menu-ancestor > a {
  color: var(--primary-theme);
  background: var(--secondary-theme);
  font-weight: 600;
}

.mobile-menu .current-menu-item > a {
  color: var(--tertary-theme);
  background-color: var(--secondary-theme);
}

/* ============================================

   SWIPER HERO

   ============================================ */
.hero-carousel-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  z-index: 1;
  isolation: isolate;
  contain: layout style paint;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.heroSwiper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: auto;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(42, 45, 48, 1) 10%,
    rgba(0, 0, 0, 0.15) 50%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-btn {
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--secondary-theme);
  background: var(--primary-theme);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--secondary-theme);
  background: var(--tertary-theme);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
}

.swiper-pagination-bullet {
  background: var(--secondary-theme);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--tertary-theme);
}

/* ============================================

   ABOUT

   ============================================ */
.about-top .text strong {
  color: var(--tertary-theme);
}

.about-experience {
  border: 1px solid var(--tertary-theme);
  color: var(--sevenary-theme);
  padding: 6px;
  width: 140px;
  height: 140px;
  border-radius: 16px;
  position: absolute;
  right: -20px;
  top: 25px;
  line-height: 1;
  font-weight: 900;
  /* display: flex; */
  /* align-items: center; */
}

.about-experience-content {
  background: var(--fourtary-theme);
  padding: 1rem;
  border-radius: 16px;
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-experience-content .about-experience-content-item {
  font-size: 2.25rem;
}

.about-js-marquee {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/*

.about-js-marquee::after {

  content: "";

  position: absolute;

  width: 100px;

  height: 100%;

  background-image: linear-gradient(

    90deg,

    rgb(42, 45, 48) 0%,

    rgba(5, 5, 5, 0) 100%

  );

  top: 0;

  left: 0;

  z-index: 2;

}



.about-js-marquee::before {

  content: "";

  position: absolute;

  width: 100px;

  height: 100%;

  background-image: linear-gradient(

    180deg,

    rgba(5, 5, 5, 0) 0%,

    rgb(42, 45, 48) 100%

  );

  top: 0;

  right: 0;

  z-index: 2;

}

*/
.about-text-marquee-item {
  display: flex;
  align-items: center;
}

.about-text-marquee-item .title {
  display: block;
  transition: all 0.3s ease;
  margin: 0 1rem;
}

.about-home {
  position: relative;
  overflow: hidden;
}

.about-home::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: -50px;
  background: url(../images/bg-parallax.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  will-change: transform;
}

.about-bottom {
  position: relative;
  overflow: hidden;
}

.about-bottom::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: -50px;
  background: url(../images/bg-sobre.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  z-index: -1;
  will-change: transform;
}

.about-card {
  width: 100%;
  border-radius: 2rem;
  backdrop-filter: blur(10px);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about-card::after {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--tertary-theme);
  border-radius: 50%;
  left: -8px;
  top: 60px;
  position: absolute;
}

.about-card-body {
  padding: 2rem;
}

/* ============================================

   BREADCRUMB

   ============================================ */
.breadcrumb {
  list-style: none;
  margin: 1rem 0 1rem;
  padding: 0;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
}

.breadcrumb-container .breadcrumb-list {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.breadcrumb .breadcrumb-list .breadcrumb-item a {
  color: var(--secondary-theme);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--tertary-theme);
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  color: var(--secondary-theme);
  margin: 0 0.5rem;
}

.breadcrumb-item::marker {
  display: none;
  content: none;
}

/* ============================================

   PRODUTOS

   ============================================ */
.products-card {
  position: relative;
  border: 1px solid var(--tertary-theme);
  color: var(--secondary-theme);
  background: transparent;
  border-radius: 1rem;
  height: 260px !important;
  overflow: hidden;
  transition: transform 0.45s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  opacity: 0;
  z-index: 1;
  filter: none;
}

.products-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 2;
}

.products-card .card-body {
  position: relative;
  z-index: 3;
}

.products-card:hover::before {
  opacity: 1;
  transform: scale(1.06);
}

.products-card:hover::after {
  opacity: 1;
}

.products-card .title {
  color: var(--secondary-theme);
}

.products-card .btn {
  z-index: 4;
  position: relative;
}

.products-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  z-index: 1;
}

.products-card:hover .products-card-video {
  opacity: 1;
  transform: scale(1.06);
}

.categoria-video {
  width: 100%;
  height: 580px;
  overflow: hidden;
  border-radius: 12px;
}

.categoria-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================

   SOLUÇÕES

   ============================================ */
.solucao-card .card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.solucao-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-img-wrapper:hover img {
  transform: scale(1.1);
}

.card-img-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-img-wrapper:hover .card-img-overlay-hover {
  opacity: 1;
}

.card-img-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 3rem;
}

.solucao-categories .badge {
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  transition: all 0.3s ease;
}

.solucao-categories .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hover-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
}

.categoria-header {
}

.product .text strong,
.categoria .text strong {
  color: var(--tertary-theme);
}

.categoria-description {
  font-size: 1.1rem;
  line-height: 1.8;
}

.categoria-count {
  font-size: 1rem !important;
  padding: 0.75rem 1.5rem !important;
}

.archive-header {
  padding: 3rem 0;
}

.categorias-filter .btn {
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.categorias-filter .btn:hover,
.categorias-filter .btn.active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.categoria-link-card {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.categoria-link-card:hover {
  transform: scale(1.05);
}

.categoria-link-card .card {
  transition: all 0.3s ease;
}

.categoria-link-card:hover .card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.related-item {
  transition: transform 0.3s ease;
}

.related-item:hover {
  transform: translateX(5px);
}

.related-item:last-child {
  border-bottom: none !important;
}

.related-thumb {
  overflow: hidden;
  border-radius: 8px;
}

.related-thumb img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}

.related-thumb:hover img {
  transform: scale(1.1);
}

.solucao-navigation a {
  color: #333;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 8px;
}

.solucao-navigation a:hover {
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-link-prev {
  text-align: left;
}

.nav-link-next {
  text-align: right;
}

.pagination {
  gap: 0.5rem;
}

.pagination .page-item {
  list-style: none;
}

.pagination .page-link {
  border-radius: 50px;
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--secondary-theme);
  border: 1px solid var(--secondary-theme);
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: var(--quinary-theme);
  color: var(--secondary-theme);
  border-color: var(--quinary-theme);
  transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
  background-color: var(--tertary-theme);
  border-color: var(--tertary-theme);
  color: var(--secondary-theme);
}

.page-item:first-child .page-link {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.page-item:last-child .page-link {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  background-color: #f8f9fa;
}

.reading-time {
  display: inline-block;
}

.solucao-item {
  animation: fadeInUp 0.5s ease;
}

.solucao-item:nth-child(1) {
  animation-delay: 0.1s;
}

.solucao-item:nth-child(2) {
  animation-delay: 0.2s;
}

.solucao-item:nth-child(3) {
  animation-delay: 0.3s;
}

.solucao-item:nth-child(4) {
  animation-delay: 0.4s;
}

.solucao-item:nth-child(5) {
  animation-delay: 0.5s;
}

.solucao-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* ============================================

   OUTRAS CATEGORIAS NAV

   ============================================ */
.other-categories-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}

.other-categories-nav ul.categories-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem;
  gap: 1rem;
  border-radius: 50px;
  background: var(--secondary-theme);
  border: 1px solid var(--secondary-theme);
  justify-content: center;
  align-items: center;
}

.other-categories-nav ul.categories-menu li {
  position: relative;
}

.other-categories-nav ul.categories-menu li a {
  color: var(--primary-theme);
  border: 1px solid var(--primary-theme);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 2rem;
  white-space: nowrap;
}

.other-categories-nav ul.categories-menu li a:hover {
  color: var(--secondary-theme);
  background: var(--primary-theme);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.other-categories-nav ul.categories-menu li a .badge {
  background: var(--tertary-theme);
  color: var(--primary-theme);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.other-categories-nav ul.categories-menu li a:hover .badge {
  background: var(--tertary-theme);
  color: var(--primary-theme);
  transform: scale(1.1);
}

.other-categories-nav ul.categories-menu li.active a {
  color: var(--primary-theme);
  background: var(--tertary-theme);
  border: 1px solid var(--tertary-theme);
  font-weight: 700;
}

.other-categories-nav ul.categories-menu li.active a .badge {
  background: var(--tertary-theme);
  color: var(--primary-theme);
}

.other-categories-nav ul.categories-menu li.is-child a {
  padding-left: 0.8rem;
  font-size: 0.9rem;
  opacity: 0.95;
}

.other-categories-nav ul.categories-menu li.is-child a i.bi-arrow-return-right {
  color: var(--tertary-theme);
  font-size: 0.85rem;
}

/* ============================================

   BLOG

   ============================================ */
.blog-image-featured {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-image-featured img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
}

.related-posts {
  background: var(--primary-theme);
}

.blog-card-item {
  border-radius: 1rem;
}

.blog-card-item-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.blog-card-item-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-item-image:hover img {
  transform: scale(1.1);
}

.blog-card-item-body {
  background: var(--sixnary-theme);
  padding: 1.5rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.blog-card-item-title {
  font-weight: 900;
  margin-top: 1rem;
}

.blog-card-item-link,
.blog-card-item-text {
  color: var(--secondary-theme);
}

.blog-card-item-small {
  font-size: 0.875em;
  color: var(--tertary-theme);
}

.blog-share {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.blog-share::after {
  content: "";
  width: 60%;
  height: 2px;
  background: var(--secondary-theme);
  bottom: 15px;
  right: 0;
  position: absolute;
}

.blog-share-item {
  background: var(--secondary-theme);
  color: var(--primary-theme);
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 22px;
  text-align: center;
  border-radius: 50%;
}

.blog-share-item:hover {
  background: var(--tertary-theme);
  color: var(--primary-theme);
}

.category-archive .category-header {
  position: relative;
}

.category-archive .category-icon {
  animation: fadeInDown 0.5s ease;
}

.category-archive .category-title {
  font-weight: 700;
  color: #212529;
}

.category-archive .category-description {
  line-height: 1.8;
}

.category-archive .category-meta {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-card .card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.post-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.post-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.post-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card .card-img-wrapper:hover img {
  transform: scale(1.1);
}

.post-card .card-img-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.post-card .card-img-wrapper:hover .card-img-overlay-hover {
  opacity: 1;
}

.post-card .card-img-placeholder {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 3rem;
}

.post-categories .badge,
.post-tags .badge {
  transition: all 0.2s ease;
  font-weight: 500;
  padding: 0.4em 0.8em;
}

.post-categories .badge:hover,
.post-tags .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.post-meta {
  font-size: 0.9rem;
}

.post-meta img {
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.single-post .post-hero {
  background: #2a2d30;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background-size: cover;
}

.single-post .post-title {
  font-weight: 700;
  color: var(--secondary-theme);
  line-height: 1.2;
}

.single-post .post-excerpt {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
}

.single-post .author-info .author-avatar img {
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.single-post .content-wrapper {
  color: var(--secondary-theme);
}

.single-post .content-wrapper blockquote {
  background: var(--sixnary-theme);
  border-left: 6px solid var(--tertary-theme);
  padding: 1.5rem !important;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  margin: 1rem 0;
  z-index: 1;
}

.single-post .content-wrapper blockquote p {
  margin: 0;
}

.author-box {
  transition: all 0.3s ease;
}

.author-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.author-box .author-avatar img {
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-box h5 {
  color: #212529;
  font-weight: 600;
}

.author-box .author-info p {
  line-height: 1.7;
}

.post-navigation {
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}

.post-navigation a {
  transition: all 0.2s ease;
  padding: 1rem;
}

.post-navigation a:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

.post-navigation strong {
  color: #212529;
  display: block;
  margin-top: 0.5rem;
}

.related-posts .card {
  transition: all 0.3s ease;
}

.related-posts .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.related-posts .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-posts .card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.widget {
  margin-bottom: 2rem;
}

.widget .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
}

.widget .list-group-item {
  border: 0;
  padding: 0.75rem 0;
  transition: all 0.2s ease;
}

.widget .list-group-item:hover {
  padding-left: 0.5rem;
}

.widget .list-group-item a {
  color: #495057;
  transition: color 0.2s ease;
}

.widget-recent .recent-item:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.widget-recent .recent-thumb {
  overflow: hidden;
  border-radius: 8px;
}

.widget-recent .recent-thumb img {
  transition: transform 0.3s ease;
  max-width: 80px;
  height: auto;
}

.widget-recent .recent-thumb:hover img {
  transform: scale(1.1);
}

.widget-tags .badge {
  transition: all 0.2s ease;
}

.widget-tags .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* ============================================

   SEÇÃO BLOG - ÚLTIMAS NOTÍCIAS

   ============================================ */
.blog-section {
  position: relative;
}

.blog-card {
  background: var(--sixnary-theme);
  color: var(--secondary-theme);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card-featured {
  height: 100%;
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 270px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-body {
  padding: 2rem;
}

.blog-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-card-date,
.blog-card-category {
  font-size: 0.875rem;
  color: var(--tertary-theme);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-date i,
.blog-card-category i {
  color: var(--tertary-theme);
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-theme);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--tertary-theme);
}

.blog-card-excerpt {
  font-size: 1rem;
  color: var(--secondary-theme);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-theme);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-readmore {
  gap: 1rem;
}

.blog-card-readmore i {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-readmore i {
  transform: translateX(5px);
}

/* ============================================

   SEÇÃO CLIENTES

   ============================================ */
.clientes-section {
  position: relative;
  overflow: hidden;
}

.clientesSwiper,
.clientesSwiperNovos,
.clientesSwiperAntigos {
  position: relative;
}

/* Transições suaves para os carrosséis */
.clientesSwiperNovos .swiper-wrapper,
.clientesSwiperAntigos .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

.clientesSwiperNovos .swiper-slide,
.clientesSwiperAntigos .swiper-slide {
  transition: none;
}

.clientesSwiperNovos::after,
.clientesSwiperAntigos::after {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 10%;
  right: 0;
  background: linear-gradient(90deg, rgba(18, 6, 0, 0) 3.69%, #2a2d30 92.05%);
  z-index: 1;
}

.clientesSwiperNovos::before,
.clientesSwiperAntigos::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 10%;
  background: linear-gradient(90deg, #2a2d30 4.11%, rgba(18, 6, 0, 0) 101.94%);
  z-index: 5;
}

.cliente-card {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-align: center;
  background: transparent;
  border-right: 1px solid rgb(255 255 255 / 12%);
  border-top: 1px solid rgb(255 255 255 / 12%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  height: 150px;
  width: 100%;
}

.cliente-logo {
  max-width: 100px; /* Largura máxima fixa */
  max-height: 100px; /* Altura máxima fixa */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.cliente-card:hover .cliente-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.cliente-placeholder {
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 144, 0.1);
  border: 2px dashed var(--tertary-theme);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--tertary-theme);
}

/* ============================================

   POLITICA DE PRIVACIDADE

   ============================================ */
.accordion {
  --bs-accordion-border-color: var(--tertary-theme);
  --bs-accordion-btn-focus-border-color: var(--tertary-theme);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(0, 255, 144, 0.25);
}

.accordion-item {
  background: transparent;
  border: 1px solid var(--tertary-theme);
  border-radius: 1rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--tertary-theme);
  box-shadow: 0 4px 20px rgba(0, 255, 144, 0.15);
  transform: translateY(-2px);
}

.accordion-item:first-of-type {
  border-radius: 1rem !important;
}

.accordion-item:last-of-type {
  border-radius: 1rem !important;
}

.accordion-button {
  background: transparent;
  color: var(--secondary-theme);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: var(--tertary-theme);
  color: var(--primary-theme);
  box-shadow: none;
}

.accordion-button:hover {
  background: var(--tertary-theme);
  color: var(--primary-theme);
}

.accordion-button:focus {
  border-color: var(--tertary-theme);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff90'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 3px rgba(0, 255, 144, 0.5));
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ff90'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--secondary-theme);
  line-height: 1.8;
  border-top: 1px solid rgba(0, 255, 144, 0.2);
}

.accordion-body p {
  margin-bottom: 1rem;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accordion-body ul,
.accordion-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-body li {
  margin-bottom: 0.5rem;
}

.accordion-body strong {
  color: var(--tertary-theme);
  font-weight: 700;
}

.accordion-body a {
  color: var(--tertary-theme);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.accordion-body a:hover {
  color: var(--secondary-theme);
  text-decoration: none;
}

/* ============================================

   CONTATO E FORMULÁRIOS

   ============================================ */
.contact {
}

.contact-form .form-control,
.contact-form .form-select {
  background: transparent;
  color: var(--secondary-theme);
  border: 1px solid var(--tertary-theme);
  padding: 0.575rem 0.75rem;
  border-radius: 1rem;
  position: relative;
}

.contact-form .form-select option {
  background: var(--primary-theme);
}

.contact-form .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}

.contact-form .form-control::placeholder,
.contact-form .form-select::placeholder {
  color: var(--secondary-theme);
  font-size: 0.8rem;
}

.contact-form .form-check.form-switch .form-check-input:checked,
.contact-form .form-check-input[type="radio"]:checked {
  background-color: var(--tertary-theme);
  border-color: var(--tertary-theme);
}

.contact-form .form-label {
  font-weight: 700;
}

.contact-form .form-check-label {
  font-size: 0.8rem;
}

.contact-form .form-link {
  color: var(--tertary-theme);
}

.contact-form-wrapper,
.denuncia-form-wrapper {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-check.form-switch {
  padding-left: 3rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
}

.form-check.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  cursor: pointer;
  background-color: #ccc;
  border: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.form-check.form-switch .form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check.form-switch .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  border-color: #86b7fe;
}

.form-check.form-switch .form-check-label {
  cursor: pointer;
  user-select: none;
  margin-left: 0.5rem;
}

.recaptcha-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recaptcha-wrapper .g-recaptcha {
  transform: scale(1);
  transform-origin: 0 0;
  margin-bottom: 0.5rem;
}

.card {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 8px;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: #333;
  font-weight: 600;
}

.alert {
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: none;
}

.alert-success {
  background-color: #d1e7dd;
  color: #0f5132;
}

.alert-danger {
  background-color: #f8d7da;
  color: #842029;
}

.alert-info {
  background-color: #cfe2ff;
  color: #084298;
  border-left: 4px solid #0d6efd;
}

#identification-fields {
  animation: fadeIn 0.3s ease;
}

.form-check-input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border: 2px solid #ced4da;
  transition: all 0.3s ease;
}

.form-check-input[type="radio"]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input[type="radio"]:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
  border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
  border-color: #198754;
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-feedback {
  display: block;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

.alert-success h4 {
  color: #0f5132;
  font-weight: 700;
  letter-spacing: 1px;
}

.custom-map-marker {
  background: none;
  border: none;
}

.custom-map-marker i {
  font-size: 40px;
  color: var(--tertary-theme);
  /* Verde neon da identidade visual */
  text-shadow:
    0 0 10px rgba(0, 255, 144, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.5);
  display: block;
  text-align: center;
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--tertary-theme));
}

.custom-map-marker i:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
  filter: drop-shadow(0 0 15px var(--tertary-theme));
}

.leaflet-popup-tip {
  background-color: var(--primary-theme);
  border: 1px solid var(--tertary-theme);
}

.leaflet-popup-close-button {
  color: var(--tertary-theme) !important;
}

.leaflet-popup-close-button:hover {
  color: var(--secondary-theme) !important;
}

.contact-widget {
  display: flex;
  align-items: center;
}

.icon-circle {
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tertary-theme);
  color: var(--primary-theme);
  font-size: 26px;
}

/* ============================================

   CANAL DE DENÚNCIA

   ============================================ */
.denuncia {
  background: url(../images/bg-denuncia.png);
  background-size: cover;
  background-position: center;
}

/* ============================================

   PÁGINA 404

   ============================================ */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--secondary-theme);
}

.error-404-content {
  animation: fadeInUp 0.6s ease;
}

.error-number {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 5rem;
  font-weight: 800;
  color: var(--sevenary-theme);
  line-height: 1;
}

.error-number .number-4,
.error-number .number-0 {
  animation: bounce 2s infinite;
}

.error-number .number-4:first-child {
  animation-delay: 0s;
}

.error-number .number-0 {
  animation-delay: 0.2s;
  color: var(--tertary-theme);
}

.error-number .number-4:last-child {
  animation-delay: 0.4s;
}

.error-title {
  font-weight: 700;
}

.error-description {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.search-form-404 .input-group {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.search-form-404 .input-group-text {
  border: 0;
  padding-left: 1.5rem;
}

.search-form-404 .form-control {
  border: 0;
  padding: 1rem 1.5rem;
}

.search-form-404 .form-control:focus {
  box-shadow: none;
}

.search-form-404 .btn {
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0 50px 50px 0;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: var(--quinary-theme);
}

.link-card i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.link-card:hover i {
  transform: scale(1.1);
}

.link-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

.error-categories .badge {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.error-categories .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.error-recent-posts .card-img-wrapper-small {
  height: 150px;
  overflow: hidden;
}

.error-recent-posts .card-img-wrapper-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.error-recent-posts .card:hover .card-img-wrapper-small img {
  transform: scale(1.1);
}

/* ============================================

   PÁGINA DE BUSCA

   ============================================ */
.search-results {
  min-height: 60vh;
}

.search-header {
  animation: fadeInDown 0.5s ease;
}

.search-title {
  font-weight: 700;
  color: var(--secondary-theme);
}

.search-form-page .input-group {
  border-radius: 50px;
  overflow: hidden;
}

.search-form-page .input-group-text {
  border: 0;
  padding-left: 1.5rem;
}

.search-form-page .form-control {
  border: 0;
  padding: 1rem 1.5rem;
}

.search-form-page .form-control:focus {
  box-shadow: none;
}

.search-form-page .btn {
  border: 0;
  padding: 1rem 2rem;
  border-radius: 0 50px 50px 0;
}

.search-stats {
  animation: fadeInUp 0.6s ease;
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.stat-number {
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.search-tabs {
  animation: fadeIn 0.7s ease;
}

.search-tabs .nav-pills .nav-link {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.search-tabs .nav-pills .nav-link:hover {
  border-color: #0d6efd;
  background-color: rgba(13, 110, 253, 0.1);
}

.search-tabs .nav-pills .nav-link.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.search-result-card {
  animation: fadeInUp 0.5s ease;
}

.search-result-card .card {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.search-result-card .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.result-type-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.result-type-badge .badge {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.search-result-card .card-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.search-result-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.search-result-card .card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.search-result-card .card-img-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-result-card .card:hover .card-img-overlay-hover {
  opacity: 1;
}

.search-result-card .card-img-placeholder {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 3rem;
}

.search-result-card .card-img-placeholder.bg-info-gradient {
  background: linear-gradient(135deg, #00d2ff 0%, #3a47d5 100%);
}

.search-meta {
  font-size: 0.9rem;
}

.search-meta img {
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-results {
  animation: fadeIn 0.5s ease;
}

.no-results-icon {
  animation: pulse 2s infinite;
}

.search-suggestions ul {
  max-width: 400px;
  margin: 1.5rem auto 0;
}

.search-suggestions li {
  padding: 0.5rem 0;
  text-align: left;
}

.empty-search {
  animation: fadeIn 0.5s ease;
}

.suggested-categories .btn {
  transition: all 0.2s ease;
}

.suggested-categories .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

/* ============================================

   FOOTER CTA

   ============================================ */
.footer-cta {
  background: var(--primary-theme);
  color: var(--secondary-theme);
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: "";
  position: absolute;
  right: -150px;
  width: 50%;
  height: 380px;
  border-radius: 2rem;
  background: var(--fourtary-theme);
  top: 100px;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.cta-title span {
  color: var(--tertary-theme);
  font-weight: 900;
  display: block;
  font-size: 3.5rem;
}

.cta-subtitle {
  background: var(--secondary-theme);
  color: var(--primary-theme);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 1.5rem;
  padding: 2rem;
}

.btn-cta {
  background: var(--tertary-theme);
  color: var(--fourtary-theme);
  border: 2px solid var(--tertary-theme);
  font-weight: 900;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.cta-image {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* ============================================

   FOOTER WIDGETS

   ============================================ */
.main-footer {
  background: var(--secondary-theme);
  color: var(--primary-theme);
}

.footer-widget {
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--primary-theme);
  position: relative;
  padding-bottom: 10px;
}

.widget-subtitle {
  font-weight: 900 !important;
  color: var(--primary-theme);
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.widget-text-link {
  color: var(--primary-theme);
}

.widget-title .custom-logo-link {
  display: inline-block;
  max-width: 180px;
}

.widget-title .custom-logo-link img {
  max-height: 50px;
  width: auto;
}

.widget-text {
  color: var(--primary-theme);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--fourtary-theme);
  color: var(--secondary-theme);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-link:hover {
  background: var(--tertary-theme);
  color: var(--secondary-theme);
  transform: translateY(-3px);
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 12px;
}

.footer-menu-list a {
  color: var(--primary-theme);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-menu-list a:hover {
  color: var(--tertary-theme);
  padding-left: 5px;
}

.footer-menu-list a i {
  font-size: 12px;
  color: var(--tertary-theme);
}

/* ============================================

   FOOTER BOTTOM

   ============================================ */
.main-footer {
  background: var(--secondary-theme);
}

.copyright {
  padding: 0.85rem;
}

.footer-bottom {
  background: var(--fourtary-theme);
  color: var(--secondary-theme);
  border-radius: 2.5rem;
}

.copyright-text {
  font-size: 0.9rem;
}

.copyright-text a {
  color: var(--secondary-theme);
  text-decoration: none;
  font-weight: 900;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links li {
  position: relative;
}

.footer-bottom-links li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -12px;
  color: #444;
}

.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #f6deae;
}

/* ============================================

   BOTÃO VOLTAR AO TOPO

   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--tertary-theme);
  color: var(--secondary-theme);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--quinary-theme);
  transform: translateY(-5px);
}

/* ============================================

   ANIMAÇÕES

   ============================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.main-menu .sub-menu {
  animation: fadeInDown 0.3s ease;
}

/* ============================================

   RESPONSIVE - MEDIA QUERIES

   ============================================ */
/* Desktop - Esconder elementos mobile */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

/* Tablets e telas médias */
@media (max-width: 991px) {
  /* Header */
  .navbar-collapse {
    display: none !important;
  }

  .btn-contact {
    display: none;
  }

  .navbar-actions {
    gap: 0.5rem;
  }

  .main-header {
    position: relative;
  }

  .main-menu {
    display: none;
  }

  /* Hero */
  .hero,
  .hero-page {
    height: auto;
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .breadcrumb-container .breadcrumb-list {
    display: block;
  }

  .about-experience {
    right: 0;
    top: 0;
  }

  /* Blog */
  .blog-card-image {
    height: 250px;
  }

  .blog-card-title {
    font-size: 1.3rem;
  }

  .blog-card-body {
    padding: 1.5rem;
  }

  .blog-card-body-small {
    padding: 1.25rem;
  }

  /* Posts */
  .post-card .card-img-wrapper,
  .post-card .card-img-placeholder {
    height: 200px;
  }

  .single-post .post-title {
    font-size: 2rem;
  }

  .single-post .content-wrapper {
    font-size: 1rem;
  }

  .single-post .author-box {
    text-align: center;
  }

  .single-post .author-box .d-flex {
    flex-direction: column;
    align-items: center !important;
  }

  .single-post .author-box .author-avatar {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }

  /* Outras Categorias */
  .other-categories-nav ul.categories-menu {
    gap: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .other-categories-nav ul.categories-menu li a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  .other-categories-nav ul.categories-menu li.is-child a {
    font-size: 0.85rem;
  }

  /* Busca */
  .search-result-card .card-img-wrapper,
  .search-result-card .card-img-placeholder {
    height: 180px;
  }

  .featured-image-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  /* 404 */
  .error-number {
    font-size: 6rem;
  }

  .link-card {
    padding: 1.5rem 0.75rem;
  }

  .link-card i {
    font-size: 2rem;
  }

  /* Footer */
  .cta-title {
    font-size: 2rem;
    text-align: center;
  }

  .cta-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-widgets {
    padding: 40px 0 20px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }

  .cta-image,
  .footer-cta::before,
  .about-card::after {
    display: none;
  }
}

/* Mobile e telas pequenas */
@media (max-width: 768px) {
  /* Header */
  .main-header .navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand img {
    max-height: 40px;
  }

  /* Search */
  .search-input {
    font-size: 1.25rem;
    padding: 1.25rem 4rem 1.25rem 1.5rem;
  }

  .btn-submit-search {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  /* Formulários */
  .contact-form-wrapper,
  .denuncia-form-wrapper {
    padding: 1.5rem;
  }

  .card-body {
    padding: 1rem;
  }

  /* reCAPTCHA */
  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }

  /* Soluções */
  .categoria-header {
    padding: 1rem 0;
  }

  .archive-header {
    padding: 2rem 0;
  }

  .solucao-title {
    font-size: 2rem;
  }

  .content-wrapper {
    font-size: 1rem;
  }

  .solucao-share .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 0.5rem;
  }

  .card-img-wrapper,
  .card-img-placeholder {
    height: 180px;
  }

  /* Clientes */
  .cliente-card {
    height: 120px;
    padding: 1.5rem;
  }

  .clientes-button-next,
  .clientes-button-prev {
    width: 35px;
    height: 35px;
  }

  .clientes-button-next::after,
  .clientes-button-prev::after {
    font-size: 16px;
  }
}

/* Telas muito pequenas */
@media (max-width: 767px) {
  /* Header */
  .navbar-brand {
    font-size: 1.25rem;
  }

  .site-name {
    font-size: 1.25rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 1rem 3.5rem 1rem 1.25rem;
  }

  .btn-submit-search {
    width: 45px;
    height: 45px;
  }

  .offcanvas {
    width: 85% !important;
  }

  /* Blog */
  .blog-card-image {
    height: 220px;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }

  .blog-card-excerpt {
    font-size: 0.95rem;
  }

  .blog-card-image-small {
    min-height: 150px;
    border-radius: 1rem 1rem 0 0;
  }

  .blog-card-small .row {
    flex-direction: column;
  }

  .blog-card-small .col-5,
  .blog-card-small .col-7 {
    width: 100%;
  }

  .blog-card-title-small {
    font-size: 1rem;
  }

  /* Posts */
  .category-archive .category-title {
    font-size: 2rem;
  }

  .post-card .card-img-wrapper,
  .post-card .card-img-placeholder {
    height: 180px;
  }

  .single-post .post-hero {
    padding: 2rem 0 !important;
  }

  .single-post .post-title {
    font-size: 1.75rem;
  }

  .single-post .post-meta {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .single-post .post-meta > * {
    margin-bottom: 0.5rem;
  }

  .post-navigation .col-6:last-child {
    margin-top: 2rem;
    text-align: left !important;
  }

  /* Outras Categorias */
  .other-categories-nav ul.categories-menu {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    width: 100%;
  }

  .other-categories-nav ul.categories-menu li {
    width: 100%;
  }

  .other-categories-nav ul.categories-menu li a {
    justify-content: space-between;
    width: 100%;
    font-size: 0.95rem;
  }

  /* Busca */
  .search-form-404 .btn,
  .search-form-page .btn {
    padding: 1rem 1.5rem;
  }

  .search-tabs .nav-pills .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .search-result-card .card-img-wrapper,
  .search-result-card .card-img-placeholder {
    height: 160px;
  }

  /* 404 */
  .error-number {
    font-size: 4rem;
    gap: 0.5rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .link-card {
    padding: 1rem;
  }

  .link-card i {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .link-card span {
    font-size: 0.85rem;
  }

  /* Footer */
  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom-links li:not(:last-child)::after {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Telas extra pequenas */
@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  .site-name {
    font-size: 1.25rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 1rem 3.5rem 1rem 1.25rem;
  }

  .btn-submit-search {
    width: 45px;
    height: 45px;
  }

  .offcanvas {
    width: 85% !important;
  }
}

/* ============================================

   CUSTOM CURSOR

   ============================================ */

/* Cursor principal */
.cb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-theme);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background-color 0.3s ease,
    border-radius 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  mix-blend-mode: difference;
}

/* Cursor visível */
.cb-cursor.-visible {
  opacity: 1;
}

/* Cursor hover em elementos interativos */
.cb-cursor.all-element {
  width: 50px;
  height: 50px;
  background-color: transparent;
  border: 2px solid var(--secondary-theme);
}

/* Cursor ativo (mousedown) */
.cb-cursor.-active {
  width: 15px;
  height: 15px;
}

/* Cursor com texto */
.cb-cursor.-text {
  width: auto;
  height: auto;
  background-color: var(--secondary-theme);
  border-radius: 50px;
  mix-blend-mode: normal;
}

/* Texto do cursor */
.cb-cursor-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-theme);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  line-height: 1.2;
  padding: 0.5rem 1.5rem;
}

/* Mostrar texto quando cursor tem classe -text */
.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
}

/* Variação azul do texto (se usado) */
.cb-cursor.-text-blue {
  background-color: #0066ff;
}

/* Ocultar cursor padrão em elementos com data-cursor-text */
[data-cursor-text] {
  cursor: none;
}

/* Animação suave para elementos com cursor customizado */
[data-cursor-text]:hover {
  cursor: none;
}

/* Otimização de performance */
.cb-cursor {
  will-change: transform;
}

/* Desabilitar cursor customizado em dispositivos touch */
@media (hover: none) and (pointer: coarse) {
  .cb-cursor {
    display: none !important;
  }

  [data-cursor-text] {
    cursor: pointer !important;
  }
}

/* Desabilitar em telas pequenas */
@media (max-width: 768px) {
  .cb-cursor {
    display: none !important;
  }

  [data-cursor-text] {
    cursor: pointer !important;
  }
}

/* reCAPTCHA Responsive */
@media (max-width: 400px) {
  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.75);
    transform-origin: 0 0;
  }
}
