/* Preloader customizado com logo e spinner - fundo claro */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7F9FC 50%, #F2F4F8 100%);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
}
.preloader-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(139,63,224,0.3));
}
.preloader-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border: 4px solid transparent;
  /* border-top: 4px solid var(--accent-color-secondary); */
  border-right: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1.5s ease-in-out infinite;
  z-index: 1;
  box-shadow: 0 0 30px rgba(139,63,224,0.3);
}
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Glassmorphism sutil para elementos destacados */
.glass {
  background: rgba(255,255,255,0.75);
  box-shadow: 0 12px 40px 0 rgba(139,63,224,0.15), 
              0 4px 12px 0 rgba(0,0,0,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
/* Exemplo: aplicar glassmorphism em cards, caixas de conteúdo e seções destacadas */
.service-item,
.portfolio-item,
.team-member,
.recent-posts article,
.pricing .pricing-item,
.contact .info-item,
.blog-details .article,
.blog-comments .comment,
.starter-section {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px 0 rgba(139,63,224,0.12), 
              0 2px 8px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Service items específicos para melhor layout */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  justify-content: flex-start;
}

.service-item .icon {
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 63, 224, 0.1) 0%, rgba(119, 255, 55, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
}

.service-item .icon i {
  font-size: 32px;
  transition: all 0.3s ease;
}

.service-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.service-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  opacity: 0.9;
  margin: 0;
}

.service-item:hover,
.portfolio-item:hover,
.team-member:hover,
.recent-posts article:hover,
.pricing .pricing-item:hover,
.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(139,63,224,0.15), 
              0 4px 12px 0 rgba(0,0,0,0.1);
}

/* .service-item:hover .icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color-secondary) 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 63, 224, 0.3);
} */

.service-item:hover .icon i {
  /* color: white; */
  transform: scale(1.05);
}

/* Logo dinâmico no cabeçalho */
.logo-img {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 300px;
  filter: drop-shadow(0 2px 4px rgba(139,63,224,0.2));
}
.logo-small {
  max-height: 40px;
}
.d-none {
  display: none !important;
}
@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: flex !important;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transition: 0.3s;
    padding: 0;
    z-index: 9998;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  }

  .mobile-nav-active .navmenu {
    right: 0;
  }

  .navmenu ul {
    padding: 80px 20px 20px 20px;
    margin: 0;
    list-style: none;
  }

  .navmenu li {
    position: relative;
    margin: 15px 0;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 8px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu li:hover > a {
    color: var(--primary-color);
    background: rgba(139, 63, 224, 0.08);
  }
}
/* Animações e efeitos modernos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(68, 224, 63, 0.24);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(139, 63, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(139, 63, 224, 0);
  }
}

/* Botões modernos aprimorados */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #9c4ef2 100%);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 63, 224, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 63, 224, 0.4);
  background: linear-gradient(135deg, #9c4ef2 0%, var(--primary-color) 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--accent-color-secondary) 0%, #5ee02a 100%);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #2a2c39;
  box-shadow: 0 4px 15px rgba(119, 255, 55, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(119, 255, 55, 0.4);
  background: linear-gradient(135deg, #5ee02a 0%, var(--accent-color-secondary) 100%);
  color: #2a2c39;
}

/* Efeito de parallax sutil */
.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Cards com efeito de elevação moderna */
.modern-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /* background: linear-gradient(90deg, var(--primary-color), var(--primary-color)); */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.modern-card:hover::before {
  transform: scaleX(1);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Seções com animações suaves */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(139, 63, 224, 0.02) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 1.5s ease;
}

.section.animate::before {
  transform: translateX(100%);
}

/* Ícones com efeitos de hover - layout centralizado */
.service-item .icon i,
.contact .info-item i {
  font-size: 2.2rem;
  transition: all 0.3s ease;
  position: relative;
  color: var(--primary-color);
}

.service-item:hover .icon i {
  transform: scale(1.05);
  /* color: white !important; */
}

.contact .info-item i {
  font-size: 2.5rem;
}

.contact .info-item:hover i {
  transform: scale(1.15);
  color: var(--primary-color) !important;
}

/* Estatísticas com counter animado */
.purecounter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}

.stats-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.15);
}

/* Formulário moderno */
.php-email-form input,
.php-email-form textarea {
  border: 2px solid rgba(139, 63, 224, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 16px;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 63, 224, 0.1);
  transform: translateY(-2px);
}

.php-email-form button[type="submit"] {
  background: linear-gradient(135deg, var(--primary-color) 0%, #9c4ef2 100%);
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 63, 224, 0.3);
}

.php-email-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 63, 224, 0.4);
}
/**
* Template Name: Selecao
* Template URL: https://bootstrapmade.com/selecao-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #FFFFFF; /* Fundo principal branco */
  --background-light: #F7F9FC; /* Fundo alternativo claro */
  --background-lighter: #F2F4F8; /* Outro tom claro */
  --default-color: #6B7280; /* Cor padrão do texto - mais suave */
  --heading-color: #374151; /* Cor dos títulos - suavizada */
  --primary-color: #8B3FE0; /* Roxo - cor primária */
  --secondary-color: #77FF37; /* Verde - cor secundária */
  --accent-color: #8B3FE0; /* Usar roxo como cor de destaque */
  --accent-color-secondary: #77FF37; /* Verde para elementos secundários */
  --surface-color: #FFFFFF; /* Fundo de elementos em destaque */
  --contrast-color: #374151; /* Contraste suavizado para textos escuros */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #8B3FE0;  /* Roxo para links do menu */
  --nav-hover-color: #77FF37; /* Verde para hover/ativo */
  --nav-mobile-background-color: #FFFFFF;
  --nav-dropdown-background-color: #F7F9FC;
  --nav-dropdown-color: #8B3FE0;
  --nav-dropdown-hover-color: #77FF37;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #F7F9FC;
  --surface-color: #FFFFFF;
}

.dark-background {
  --background-color: #FFFFFF !important;
  --default-color: #444444 !important;
  --heading-color: #2a2c39 !important;
  --surface-color: #F7F9FC !important;
  --contrast-color: #444444 !important;
}

/* Scroll behavior - disabled automatic smooth scroll */
:root {
  scroll-behavior: auto;
}

/* Global section background - ensure all sections have light background */
section,
.section,
#main,
.main,
.about,
.services,
.portfolio,
.team,
.contact,
.stats,
.testimonials,
.faq,
.pricing,
.blog {
  background-color: var(--background-color) !important;
  background-image: none !important;
}

/* Alternate light background for visual separation */
section:nth-child(even),
.section:nth-child(even) {
  background-color: var(--background-light) !important;
}

/* Scroll snap disabled */
html {
  scroll-snap-type: none;
}

.section {
  scroll-snap-align: none;
}

/* Melhorias de responsividade moderna */
@media (max-width: 1200px) {
  .hero h2 {
    font-size: 3rem;
  }
  
  .btns-hero .btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1rem;
    max-width: 95%;
  }
  
  .btns-hero {
    flex-direction: column;
    gap: 15px;
  }
  
  .btns-hero .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .service-item,
  .modern-card {
    margin-bottom: 30px;
  }
  
  .navmenu a {
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .modern-card {
    padding: 1.5rem;
  }
}

/* Otimizações de performance - sem efeitos 3D */
* {
  backface-visibility: hidden;
}

.service-item,
.modern-card,
.btn {
  will-change: transform;
}

/* Dark mode disabled - keeping light theme only */

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero::after {
    animation: none;
  }
}

/* Focus styles melhorados */
button:focus,
input:focus,
textarea:focus,
a:focus {
  /* outline: 2px solid var(--primary-color); */
  outline-offset: 2px;
}

/* Loading skeleton para melhores Core Web Vitals */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.navmenu ul li a{
  font-family: "Anton", sans-serif;
  font-style: normal;
}
.navmenu ul li .active{
  font-family: "Anton", sans-serif;
  font-style: normal;
}
.header {
/* --background-color: rgba(255, 255, 255, 0); */
  /* --heading-color: #ffffff; */
  color: var(--default-color);
  /* background-color: white; */
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  height: 177px;
}

.header .logo {
  line-height: 1;
  position: relative;
  z-index: 998;
}

.header .logo img {
  height: auto;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  height: 77px;
  --background-color: rgb(255, 255, 255);
  --background-color: rgba(255, 255, 255, 0.8); /* translúcido */
  background-color: var(--background-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); /* sombra suave */
  backdrop-filter: blur(12px); /* efeito de glassmorphism */
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* linha discreta */
  transition: all 0.3s ease-in-out;
  padding-top: 50px;
  padding-bottom: 40px ;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 24px;
    font-size: 15px;
    /* font-family: var(--nav-font); */
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 25px;
    position: relative;
    /* background: none !important; */
    box-shadow: none !important;
    overflow: hidden;
  }

  /* Efeito de underline animado */
  .navmenu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color-secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 8px;
    transition: all 0.3s ease;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color);
    /* background: rgba(255, 255, 255) !important;
    box-shadow: 0 4px 15px rgba(139, 63, 224, 0.15) !important; */
    transform: translateY(-1px);
  }

  .navmenu li:hover>a::before,
  .navmenu .active::before {
    width: 80%;
  }

  
  /* Botão de Login */
  .btn-login {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    margin-left: 20px;
  }

  .btn-login:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 63, 224, 0.3) !important;
  }

  /* Menu do Usuário */
  .user-menu-toggle {
    display: flex !important;
    align-items: center !important;
    padding: 8px 15px !important;
    border-radius: 25px !important;
    background: rgba(139, 63, 224, 0.1) !important;
    transition: all 0.3s ease !important;
    margin-left: 20px;
  }

  .user-menu-toggle:hover {
    background: rgba(139, 63, 224, 0.2) !important;
    transform: translateY(-1px) !important;
  }

  .user-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
  }

  /* Dropdown do usuário */
  .navmenu .dropdown ul li a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
  }

  .dropdown-divider {
    border-top: 1px solid #e9ecef !important;
    margin: 0.5rem 0 !important;
  }

  .navmenu a::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color-secondary);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(.4,0,.2,1), left 0.3s cubic-bezier(.4,0,.2,1);
  }
  .navmenu a.active::after,
  .navmenu li:hover>a::after {
    width: 80%;
    left: 10%;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    /* background: var(--nav-dropdown-background-color); */
    background: rgba(255, 255, 255, 0.986);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    /* color: var(--nav-hover-color); */
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 50px 0 30px 0;
  position: relative;
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-color) 20%, 
    var(--accent-color) 80%, 
    transparent 100%);
  opacity: 0.5;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: white;
  line-height: 1;
  margin: 0 6px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  position: relative;
}

.footer .social-links a:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 4px 12px rgba(139, 63, 224, 0.3);
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-top: 30px;
}

.footer .credits {
  font-size: 13px;
  padding-top: 8px;
  opacity: 0.9;
}

/* Footer Additional Styles */
.footer .footer-info {
  margin-bottom: 30px;
  text-align: left;
}

.footer .footer-info .sitename img {
  transition: all 0.3s ease;
}

.footer .footer-info .sitename img:hover {
  transform: scale(1.02);
}

.footer .footer-description {
  font-size: 17px;
  font-style: italic;
  color: var(--accent-color);
  margin: 20px 0;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
}

.footer .footer-links h4,
.footer .footer-contact h4,
.footer .footer-map h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  text-align: left;
}

.footer .footer-links h4::after,
.footer .footer-contact h4::after,
.footer .footer-map h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
}

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

.footer .footer-links ul li {
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.footer .footer-links ul li:hover {
  transform: translateX(3px);
}

.footer .footer-links ul li a {
  color: var(--default-color);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
  line-height: 1.5;
}

/* .footer .footer-links ul li a::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 10px;
  transition: all 0.2s ease;
  opacity: 0.7;
} */  
.footer .contact-item-footer a{
  color: 'black' !important;
}
.footer .footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul li a:hover::before {
  transform: translateX(2px);
  opacity: 1;
}

.footer .footer-contact {
  text-align: left;
}

.footer .footer-contact p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.footer .footer-contact strong {
  /* color: var(--accent-color); */
  font-weight: 600;
}

.footer .footer-map {
  text-align: left;
}

.footer .map-container {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: all 0.3s ease;
  background: color-mix(in srgb, var(--background-color), white 2%);
  position: relative;
}

.footer .map-container:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 63, 224, 0.15);
}

.footer .map-container i {
  margin-bottom: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px 0;
  }
  
  .footer .footer-links h4,
  .footer .footer-contact h4,
  .footer .footer-map h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer .footer-description {
    font-size: 15px;
    margin: 15px 0;
  }
  
  .footer .map-container {
    height: 150px !important;
  }
  
  .footer .social-links a {
    width: 36px;
    height: 36px;
    margin: 0 4px;
    font-size: 16px;
  }
  
  .footer .copyright {
    margin-top: 25px;
    padding-top: 20px;
  }
}

/* Simple Footer Animations */
.footer .footer-info,
.footer .footer-links,
.footer .footer-contact,
.footer .footer-map {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.footer .footer-info { animation-delay: 0.1s; }
.footer .footer-links { animation-delay: 0.2s; }
.footer .footer-contact { animation-delay: 0.3s; }
.footer .footer-map { animation-delay: 0.4s; }

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

.footer .social-links {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

/* Parceiros Filter Styles */
.parceiros-filters {
  padding: 0;
  margin: 0 auto 40px auto;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* About Page Specific Styles */
.about-page .page-title {
  background: linear-gradient(135deg, 
    var(--background-color) 0%, 
    color-mix(in srgb, var(--background-color), var(--accent-color) 5%) 100%);
}

.about .feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.about .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 63, 224, 0.1);
  border-color: rgba(139, 63, 224, 0.3);
}

.about .feature-box h3 {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about .feature-box p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

.about .about-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about .about-image img:hover {
  transform: scale(1.02);
}

.parceiros-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 24px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--default-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.parceiros-filters li:hover,
.parceiros-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 63, 224, 0.3);
}

.parceiros-item {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

.parceiros-item.filtered-out {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* Enhanced Parceiros Cards */
.parceiros .member {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.parceiros .member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 63, 224, 0.1) 0%, 
    rgba(255, 99, 132, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.parceiros .member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 63, 224, 0.2);
  border-color: rgba(139, 63, 224, 0.3);
}

.parceiros .member:hover::before {
  opacity: 1;
}

.parceiros .member img {
  position: relative;
  z-index: 2;
}

.parceiros .member h4,
.parceiros .member span {
  position: relative;
  z-index: 2;
}

/* Responsive Parceiros Filters */
@media (max-width: 768px) {
  .parceiros-filters {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .parceiros-filters li {
    padding: 10px 20px;
    font-size: 13px;
    width: 200px;
  }
}

/* /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
} */ */
/* 
@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
} */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 77px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles - Modern Design
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
  text-align: center;
  /* max-width: 800px;   */
  margin: 0 auto;
}

.section-title h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  padding: 0;
  line-height: 1.2;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  color: var(--heading-color);
  position: relative;
  display: block; /* Mudado de inline-block para block */
  background: linear-gradient(135deg, var(--primary-color) 0%, #9c4ef2 70%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(139, 63, 224, 0.2);
  animation: titleFloat 4s ease-in-out infinite;
}

.section-title p {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  line-height: 1.4;
  margin: 0 0 25px 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
  display: block; /* Mudado de inline-block para block */
  background: linear-gradient(135deg, var(--nav-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
  opacity: 0.9;
}

/* Animações dos títulos */
@keyframes titleGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 5px rgba(139, 63, 224, 0.3));
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(139, 63, 224, 0.6));
  }
}

@keyframes lineExpand {
  0% {
    width: 30px;
    opacity: 0.5;
  }
  100% {
    width: 50px;
    opacity: 1;
  }
}

@keyframes titleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes underlineGlow {
  0% {
    /* box-shadow: 0 2px 15px rgba(139, 63, 224, 0.2); */
    width: 60px;
  }
  100% {
    /* box-shadow: 0 2px 25px rgba(139, 63, 224, 0.6); */
    width: 100px;
  }
}

/* Responsividade dos títulos */
@media (max-width: 768px) {
  .section-title {
    padding-bottom: 40px;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .section-title h2 {
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 10px;
  }
  
  .section-title p {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .section-title p::before {
    display: none;
  }
  
  .section-title p::after {
    width: 60px;
    height: 3px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: clamp(24px, 8vw, 32px);
    line-height: 1.4;
  }
  
  .section-title p {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Botão especial "Fazer Parte" */
  .btn-fazer-parte {
    background-color: #8B3FE0;
    color: white !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(139, 63, 224, 0.3) !important;
    transition: all 0.3s ease !important;
    margin-left: 40px;
  }

  .btn-fazer-parte:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(139, 63, 224, 0.4) !important;
    background: linear-gradient(135deg, #9c4ef2 0%, var(--primary-color) 100%) !important;
  }
  #fazerparte .form-check-input[type="checkbox"] {
            border-radius: .25em;
            border-color: rgb(94, 93, 93);
            margin-bottom: auto;
  }
  #fazerparte .auth-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        #fazerparte .auth-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            max-width: 450px;
            width: 100%;
        }

        #fazerparte .auth-header {
            background: white;
            color: white;
            padding: 40px 30px 30px;
            text-align: center;
        }

        #fazerparte .logo {
           
            height: 60px;
            /* background: white; */
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: #ffffff;
            font-weight: bold;
        }

        #fazerparte .auth-tabs {
            display: flex;
            background: #c9c9c948 ;
            border-radius: 50px;
            padding: 4px;
            margin-top: 50px;
        }

        #fazerparte.tab-btn {
            flex: 1;
            background: none;
            border: none;
            color: rgba(78, 77, 77, 0.7);
            padding: 12px 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        #fazerparte .tab-btn.active {
            background: white;
            color: #764ba2;
        }

        #fazerparte .auth-form {
            padding: 0px 30px 40px 30px;
        }

        #fazerparte  .form-group {
            margin-bottom: 20px;
        }

        #fazerparte .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        #fazerparte .form-input:focus {
            outline: none;
            border-color: #764ba2;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        #fazerparte .form-input::placeholder {
            color: #9ca3af;
        }

        #fazerparte .btn-primary {
            width: 100%;
            background: linear-gradient(135deg, #764ba2 0%, #764ba2 100%);
            border: none;
            border-radius: 12px;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #fazerparte .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        #fazerparte .form-check {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
        }

        #fazerparte .form-check-input {
            width: 18px;
            height: 18px;
        }

        #fazerparte .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        #fazerparte   .forgot-password a {
            color: #764ba2;
            text-decoration: none;
            font-size: 14px;
        }

        #fazerparte .forgot-password a:hover {
            text-decoration: underline;
        }

        #fazerparte .error-message {
            color: #ef4444;
            font-size: 14px;
            margin-top: 5px;
        }

        #fazerparte .tab-content {
            display: none;
        }

        #fazerparte .tab-content.active {
            display: block;
        }

        #fazerparte .input-icon {
            position: relative;
        }

        #fazerparte .input-icon i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        #fazerparte .input-icon .form-input {
            padding-left: 50px;
        }

        @media (max-width: 768px) {
          .header {
            height: 77px;
            background-color: white;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease-in-out;
            padding-top: 50px;
            padding-bottom: 40px;
          }
            #fazerparte .auth-container {
                padding: 10px;
            }

            #fazerparte .auth-card {
                border-radius: 12px;
            }

            #fazerparte .auth-header {
                padding: 30px 20px 20px;
            }

            #fazerparte .auth-form {
                padding: 30px 20px;
            }
        }
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7F9FC 50%, #F2F4F8 100%);
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(139, 63, 224, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(119, 255, 55, 0.05) 0%, transparent 50%);
  backdrop-filter: blur(0px);
  z-index: 1;
}

/* Partículas flutuantes para efeito dinâmico - mais sutis */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 40px 60px, rgba(139, 63, 224, 0.1), transparent),
    radial-gradient(1px 1px at 120px 150px, rgba(119, 255, 55, 0.08), transparent),
    radial-gradient(1px 1px at 200px 50px, rgba(139, 63, 224, 0.06), transparent),
    radial-gradient(1px 1px at 300px 200px, rgba(119, 255, 55, 0.06), transparent);
  background-size: 400px 300px;
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  33% { transform: translateY(-30px); }
  66% { transform: translateY(-15px); }
}

/* Garante que o conteúdo fique acima do filtro */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 75vh;
  padding: 80px 20px;
}

.hero h2 {
  margin-bottom: 30px;
  /* font-size: 3.5rem; */
  font-size: 5vh;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.2;
  text-shadow: none;
}

.hero h2 span {
  position: relative;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary-color) 0%, #9c4ef2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color-secondary), rgba(119, 255, 55, 0.5));
  border-radius: 2px;
  /* animation: pulse 2s infinite; */
}

.hero p {
  max-width: 85%;
  animation-delay: 0.4s;
  margin: 0 auto 40px auto;
  /* font-size: 1.1rem; */
  font-size: 2.0vh;
  line-height: 1.7;
  color: var(--heading-color);
  opacity: 0.9;
  font-weight: 500;
}
.btns-hero {
  gap: 20px;
  margin-top: 20px;
}

.btns-hero .btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 15px 35px;
  /* font-size: 16px; */
  font-size: 2.0vh;
  font-weight: 600;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 63, 224, 0.2);
  min-width: 350px;
}

.btns-hero .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.btns-hero .btn:hover::before {
  left: 100%;
}

.btns-hero .btn:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: white;
  box-shadow: 0 8px 25px rgba(139, 63, 224, 0.4);
}

.btns-hero .btn:nth-child(2) {
  background: var(--accent-color-secondary);
  border-color: var(--accent-color-secondary);
  color: #2a2c39;
}

.btns-hero .btn:nth-child(2):hover {
  background: var(--accent-color-secondary);
  color: #2a2c39;
  box-shadow: 0 8px 25px rgba(119, 255, 55, 0.4);
}

/* Hover effects for hero buttons */
.btns-hero .btn:first-child {
  background: var(--primary-color);
  color: #ffffff;
  margin-right: 18px;
  border-color: var(--primary-color);
}

.btns-hero .btn:first-child:hover {
  background: #9c4ef2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 63, 224, 0.25);
}
@media (max-width: 1360px) {
  .hero h2 {
    font-size: 4.5vh;
  }
  .hero p {
    font-size: 1.8vh;
  }
  .btns-hero .btn {
    min-width: 280px;
    padding: 12px 28px;
  }
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
}

@media (min-width: 1024px) {
  /* .hero p {
    max-width: 60%;
  } */

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }

  .hero h2 {
    font-size: 28px;
  }
}

/* .hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
} */
 .hero{
  height: 100vh;
 }
.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

/* Onda roxa (mais ao fundo) */
.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: #8B3FE0;
  opacity: 0.9;
}

/* Onda verde (meio) */
.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: #77FF37;
  opacity: 0.9;
}

/* Onda clara (superior) */
.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: #F7F9FC;
  opacity: 0.1;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: white;
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.services .service-item .icon {
  position: relative;
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 63, 224, 0.1) 0%, rgba(119, 255, 55, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.services .service-item .icon i {
  font-size: 42px;
  line-height: 1;
  transition: all 0.4s ease;
  color: var(--primary-color);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
  color: var(--heading-color);
}

.services .service-item p {
  line-height: 24px;
  font-size: 15px;
  margin-bottom: 0;
  color: var(--default-color);
  opacity: 0.9;
  text-align: center;
}

/* Hover effects */
/* .services .service-item:hover .icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color-secondary) 100%);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 63, 224, 0.3);
} */

.services .service-item:hover .icon i {
  /* color: white; */
  transform: scale(1.1);
}

@media (min-width: 1365px) {
  /* .services .service-item:hover {
    transform: translateY(-10px);
  } */

  .services .service-item:hover h3 {
    color: var(--primary-color);
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color-secondary);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: white;
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
}

.comment-form form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}

.widget-item {
  margin-bottom: 30px;
  background-color: color-mix(in srgb, var(--default-color), transparent 98%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 30px;
  border-radius: 5px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.blog-author-widget img {
  max-width: 160px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin: 15px 0 0 0;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin: 0 3px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  color: var(--accent-color);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.text-justify{
  text-align: justify;
}

/*--------------------------------------------------------------
# Juntos Vamos Mais Longe Section
--------------------------------------------------------------*/
.juntos-mais-longe {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.05) 0%, rgba(86, 204, 242, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.juntos-mais-longe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 63, 224, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(47, 128, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.together-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 60px 40px;
  position: relative;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 60px rgba(139, 63, 224, 0.1);
  transition: all 0.3s ease;
}

.together-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 80px rgba(139, 63, 224, 0.15);
}

.together-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 30px rgba(139, 63, 224, 0.3);
}

.together-icon i {
  font-size: 48px;
  color: white;
}

.together-card .section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.together-card .section-subtitle {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.9;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.1) 0%, rgba(86, 204, 242, 0.1) 100%);
  border: 2px solid rgba(47, 128, 237, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-secondary) 100%);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(139, 63, 224, 0.3);
}

.feature-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
  color: white;
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

.together-stats {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.together-cta {
  text-align: center;
  padding-top: 40px;
}

.together-cta h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.together-cta p {
  font-size: 16px;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  justify-content: center;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-color-secondary) 100%);
  border: none;
  color: white;
  box-shadow: 0 10px 20px rgba(139, 63, 224, 0.3);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 63, 224, 0.4);
}

.cta-buttons .btn-outline-primary {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-primary:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(139, 63, 224, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .together-card {
    padding: 40px 20px;
  }
  
  .together-card .section-title {
    font-size: 32px;
  }
  
  .together-card .section-subtitle {
    font-size: 16px;
  }
  
  .feature-item {
    margin-bottom: 20px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .together-cta h3 {
    font-size: 24px;
  }
}/*--------------------------------------------------------------
# Páginas Específicas - Estilos Unificados
--------------------------------------------------------------*/

/* === GOVERNANÇA === */
/* ================================
   PÁGINAS INSTITUCIONAIS
   ================================ */

/* Governança Page */
.governance-page {
  --section-bg-light: rgba(247, 249, 252, 0.8);
  --card-shadow: 0 8px 25px rgba(139, 63, 224, 0.08);
  --card-hover-shadow: 0 15px 35px rgba(139, 63, 224, 0.15);
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f0ff 100%);
  min-height: 100vh;
}

.governance-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/static/assets/img/hero-bg.gif') center/cover no-repeat;
  opacity: 0.03;
  z-index: -1;
}

/* Section Titles */
.governance .section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.governance .section-title h2 {
  color: var(--primary-color);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.governance .section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.governance .section-title p {
  font-size: 1.2rem;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Member Cards */
.member-card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 25px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(139, 63, 224, 0.12);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.member-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 63, 224, 0.2);
}

/* Member Image */
.member-img {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.member-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  transition: all 0.4s ease;
}

.member-card:hover .member-img img {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

/* Member Overlay */
.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 63, 224, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.4s ease;
}

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

.social-links a {
  color: white;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.3);
  color: var(--accent-color);
}

/* Member Info */
.member-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-info span {
  display: block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.member-description {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}
  transition: all 0.3s ease;
}

.member-card .member-img img {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 63, 224, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.member-card .member-overlay {
  opacity: 1;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.member-info h4 {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.member-bio {
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.structure-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.structure-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.structure-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.committee-list {
  list-style: none;
  padding: 0;
}

.committee-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(139, 63, 224, 0.1);
  position: relative;
  padding-left: 2rem;
}

.committee-list li:last-child {
  border-bottom: none;
}

.committee-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ================================
   MISSION & VISION PAGE
   ================================ */

.mission-page {
  --section-bg: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  background: var(--section-bg);
  min-height: 100vh;
  position: relative;
}

.mission-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/static/assets/img/hero-bg.gif') center/cover no-repeat;
  opacity: 0.02;
  z-index: -1;
}

/* Mission Cards */
.mission-card, .vision-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.12);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(15px);
}

.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  opacity: 0.05;
  transform: rotate(-45deg) scale(1.1);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(139, 63, 224, 0.2);
}

.mission-card:hover::before, .vision-card:hover::before {
  opacity: 0.08;
  transform: rotate(-45deg) scale(1.2);
}

/* Card Icons */
.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 25px rgba(139, 63, 224, 0.3);
  transition: all 0.4s ease;
}

.card-icon i {
  font-size: 2rem;
  color: white;
}

.mission-card:hover .card-icon, .vision-card:hover .card-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.4);
}

/* ================================
   VALUES PAGE
   ================================ */

.values-page {
  background: linear-gradient(135deg, #faf8ff 0%, #f0f4ff 100%);
  min-height: 100vh;
  position: relative;
}

.values-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/static/assets/img/hero-bg.gif') center/cover no-repeat;
  opacity: 0.02;
  z-index: -1;
}

/* Intro Section */
.intro-section {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.intro-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.intro-section p {
  font-size: 1.2rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 63, 224, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 63, 224, 0.15);
}

/* Value Icons */
.value-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  box-shadow: 0 10px 25px rgba(139, 63, 224, 0.2);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.3);
}

.value-icon i {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

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

/* Value Title */
.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover .value-title {
  color: var(--accent-color);
}

/* Value Description */
.value-description {
  color: var(--default-color);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-size: 1rem;
}

/* Value Keywords */
.value-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 1rem;
}

.value-keyword {
  background: rgba(var(--accent-color-rgb), 0.1);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.value-card:hover .value-keyword {
  background: var(--accent-color);
  color: white;
  transform: scale(1.05);
}

/* ================================
   PARTNERS PAGE
   ================================ */

.partners-page {
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
  min-height: 100vh;
  position: relative;
}

.partners-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/static/assets/img/hero-bg.gif') center/cover no-repeat;
  opacity: 0.02;
  z-index: -1;
}

/* Partners Intro */
.partners-intro {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.1);
}

.partners-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.partners-intro p {
  font-size: 1.1rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
}

/* Partnership Stats */
.partnership-stats {
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(139, 63, 224, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--default-color);
  opacity: 0.8;
}

/* Category Headers */
.category-header {
  margin-bottom: 2rem;
  text-align: center;
}

.category-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.category-header p {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 1.1rem;
}

/* Partner Cards */
.partner-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(139, 63, 224, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
}

/* .partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
} */

.partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 63, 224, 0.2);
}

/* Partner Logo */
.partner-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(139, 63, 224, 0.2);
  transition: all 0.4s ease;
}

.partner-logo i {
  font-size: 2rem;
  color: white;
}

.partner-card:hover .partner-logo {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(139, 63, 224, 0.3);
}

/* Partner Info */
.partner-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.partner-type {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.partner-description {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* CTA Section */
.cta-section {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(139, 63, 224, 0.1);
  margin-top: 4rem;
}

.cta-section h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--default-color);
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ================================
   RESPONSIVE DESIGN - INSTITUTIONAL PAGES
   ================================ */

@media (max-width: 768px) {
  /* Governance Page */
  .governance .section-title h2 {
    font-size: 2.2rem;
  }
  
  .member-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .member-img img {
    width: 100px;
    height: 100px;
  }
  
  /* Mission Page */
  .mission-card, .vision-card {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
  }
  
  .card-icon i {
    font-size: 1.8rem;
  }
  
  .mission-card h2, .vision-card h2 {
    font-size: 1.8rem;
  }
  
  .mission-text, .vision-text {
    font-size: 1rem;
  }
  
  .impact-section {
    padding: 2.5rem 1.5rem;
  }
  
  .impact-section h3 {
    font-size: 1.8rem;
  }
  
  .impact-icon {
    width: 60px;
    height: 60px;
  }
  
  .impact-icon i {
    font-size: 1.5rem;
  }
  
  /* Values Page */
  .intro-section {
    padding: 2.5rem 1.5rem;
  }
  
  .intro-section h2 {
    font-size: 2rem;
  }
  
  .intro-section p {
    font-size: 1.1rem;
  }
  
  .value-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .value-icon {
    width: 70px;
    height: 70px;
  }
  
  .value-icon i {
    font-size: 1.8rem;
  }
  
  .value-title {
    font-size: 1.2rem;
  }
  
  .value-description {
    font-size: 0.95rem;
  }
  
  /* Partners Page */
  .partners-intro {
    padding: 2.5rem 1.5rem;
  }
  
  .partners-intro h2 {
    font-size: 2rem;
  }
  
  .partner-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .partner-logo {
    width: 70px;
    height: 70px;
  }
  
  .partner-logo i {
    font-size: 1.8rem;
  }
  
  .category-header h3 {
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cta-section {
    padding: 2.5rem 1.5rem;
  }
  
  .cta-section h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  /* Further mobile optimizations */
  .governance .section-title h2,
  .mission-card h2,
  .vision-card h2,
  .intro-section h2,
  .partners-intro h2 {
    font-size: 1.8rem;
  }
  
  .member-card,
  .mission-card,
  .vision-card,
  .value-card,
  .partner-card {
    padding: 1.5rem 1rem;
  }
  
  .intro-section,
  .partners-intro,
  .impact-section,
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .highlight-item {
    padding: 0.6rem;
  }
  
  .value-keywords {
    gap: 6px;
  }
  
  .value-keyword {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
}

.card-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.mission-card h2 {
  color: var(--heading-color);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.mission-highlights {
  text-align: left;
  position: relative;
  z-index: 2;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(139, 63, 224, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(139, 63, 224, 0.1);
  transform: translateX(5px);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.impact-stats {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: white;
  text-align: center;
}

.stat-item {
  margin-bottom: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === HISTÓRICO === */
.history-page {
  background: linear-gradient(135deg, 
    rgba(var(--primary-color-rgb), 0.02) 0%, 
    rgba(var(--accent-color-rgb), 0.02) 100%);
  min-height: 100vh;
}

.history-intro {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 6px solid var(--primary-color);
}

.history-intro h2 {
  color: var(--heading-color);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.history-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 1.5rem;
  text-align: justify;
  opacity: 0.95;
}

.timeline-snake {
  position: relative;
  padding: 3rem 0;
}

.timeline-path {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, 
    var(--primary-color) 0%, 
    var(--accent-color) 50%, 
    var(--primary-color) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  opacity: 1;
  animation: slideInUp 0.6s ease-out;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 4rem;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 4rem;
  text-align: left;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 45%;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.3);
  z-index: 2;
  min-width: 80px;
  text-align: center;
}

.timeline-item:nth-child(even) .timeline-year {
  top: 1.5rem;
}

.timeline-item:nth-child(odd) .timeline-year {
  top: 1.5rem;
}

.timeline-title {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.timeline-description {
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid rgba(255, 255, 255, 0.95);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 1.5rem;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid rgba(255, 255, 255, 0.95);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for History */
@media (max-width: 768px) {
  .history-intro {
    padding: 2.5rem 1.5rem;
  }
  
  .history-intro h2 {
    font-size: 2.2rem;
  }
  
  .history-text {
    font-size: 1.1rem;
  }
  
  .timeline-path {
    left: 30px;
  }
  
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 70px;
    margin-right: 0;
    max-width: calc(100% - 70px);
    text-align: left;
  }
  
  .timeline-year {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .timeline-content::before {
    display: none;
  }
  
  .timeline-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .history-intro {
    padding: 2rem 1rem;
  }
  
  .history-intro h2 {
    font-size: 1.8rem;
  }
  
  .history-text {
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 1.5rem 1rem;
    margin-left: 60px;
    max-width: calc(100% - 60px);
  }
  
  .timeline-year {
    padding: 8px 15px;
    font-size: 0.9rem;
    min-width: 70px;
  }
}

/* ================================
   SHARED IMPROVEMENTS
   ================================ */

/* Smooth scrolling for all institutional pages */
html {
  scroll-behavior: smooth;
}

/* Loading animation for cards */
.glass, .member-card, .mission-card, .vision-card, .value-card, .partner-card, .timeline-content {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.glass:nth-child(1) { animation-delay: 0.1s; }
.glass:nth-child(2) { animation-delay: 0.2s; }
.glass:nth-child(3) { animation-delay: 0.3s; }
.glass:nth-child(4) { animation-delay: 0.4s; }
.glass:nth-child(5) { animation-delay: 0.5s; }
.glass:nth-child(6) { animation-delay: 0.6s; }

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

/* Enhanced focus states for accessibility */
.glass:focus, .member-card:focus, .partner-card:focus, .value-card:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .timeline-path, .timeline-year {
    display: none !important;
  }
  
  .timeline-content {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    page-break-inside: avoid;
  }
  
  .glass, .member-card, .partner-card, .value-card {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  padding-right: 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  padding-left: 3rem;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 20px;
  height: 20px;
  background: #8B3FE0;
  border: 4px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(139, 63, 224, 0.2);
  z-index: 2;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.timeline-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.timeline-date i {
  font-size: 1.2rem;
}

.timeline-title {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline-description {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.timeline-achievements h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.achievement-list {
  list-style: none;
  padding: 0;
}

.achievement-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  background: rgba(139, 63, 224, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.achievement-list li:hover {
  background: rgba(139, 63, 224, 0.1);
  transform: translateX(5px);
}

.achievement-list li i {
  color: var(--primary-color);
  margin-right: 0.8rem;
  font-size: 1rem;
}

/* === EVENTOS === */
.events-page .event-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}

.event-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

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

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  min-width: 60px;
}

.event-date-badge .day {
  font-size: 1.5rem;
  display: block;
  line-height: 1;
}

.event-date-badge .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-content {
  padding: 2rem;
}

.event-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--default-color);
  font-size: 0.9rem;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-meta i {
  color: var(--primary-color);
}

.event-description {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.event-status {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 1rem;
}

.event-status.upcoming {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
}

.event-status.ongoing {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
}

.event-status.past {
  background: rgba(107, 114, 128, 0.1);
  color: #6B7280;
}

.event-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-event {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-event.primary {
  background: var(--primary-color);
  color: white;
}

.btn-event.primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 63, 224, 0.3);
}

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

.btn-event.secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .member-card,
  .mission-card,
  .value-card,
  .partner-card,
  .event-card {
    padding: 1.5rem;
  }
  
  .mission-card h2,
  .value-title {
    font-size: 1.5rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    padding: 1.5rem;
    text-align: left;
  }
  
  .timeline-path {
    left: 2rem;
  }
  
  .timeline-marker {
    left: 2rem;
  }
  
  .timeline-item .timeline-content {
    margin-left: 4rem;
    padding-left: 1.5rem;
  }
  
  .event-content {
    padding: 1.5rem;
  }
  
  .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .event-actions {
    flex-direction: column;
  }
  
  .btn-event {
    width: 100%;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .card-icon,
  .value-icon {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .history-intro {
    padding: 2rem 1.5rem;
  }
  
  .timeline-item .timeline-content {
    margin-left: 3rem;
    padding: 1.2rem;
  }
  
  .partner-logo {
    height: 60px;
  }
  
  .event-image {
    height: 160px;
  }
  
  .event-date-badge {
    padding: 0.6rem;
    min-width: 50px;
  }
  
  .event-date-badge .day {
    font-size: 1.2rem;
  }
}