html { 
  scroll-behavior: smooth; 
}

body { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  background: #fff; 
  color: #333; 
  overflow-x: hidden;
}

/* ================================
   CUSTOM SCROLLBAR
   ================================ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #980BF4, #0F64F7);
  border-radius: 5px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7c0bc9, #0d56d4);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #980BF4 #f1f5f9;
}

/* ================================
   ENHANCED TYPOGRAPHY & MICRO-INTERACTIONS
   ================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.gradient-text-light {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================
   ENHANCED BUTTONS & INTERACTIONS
   ================================ */

.btn-community-primary,
.btn-community-secondary,
.btn-cta-primary,
.btn-signup {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-community-primary:hover::before,
.btn-cta-primary:hover::before,
.btn-signup:hover::before {
  left: 100%;
}

/* ================================
   LOADING STATES & ANIMATIONS
   ================================ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-text {
  font-size: 1.2rem;
  font-weight: 600;
}

/* ================================
   ENHANCED CARDS & GLASSMORPHISM
   ================================ */

.glass-effect {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.37),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* ================================
   SECTION TRANSITIONS
   ================================ */

section {
  position: relative;
  overflow: hidden;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.02), rgba(15, 100, 247, 0.02));
  transition: opacity 0.3s ease;
  pointer-events: none;
}

section:hover::before {
  opacity: 1;
}

/* ================================
   FLOATING ELEMENTS ENHANCEMENT
   ================================ */

.floating-decoration {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.float-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  animation: floatMove 6s infinite ease-in-out;
}

.float-circle:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.float-circle:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.float-circle:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 20%;
  animation-delay: 4s;
}

/* ================================
   ENHANCED FOCUS STATES
   ================================ */

*:focus {
  outline: 2px solid #980BF4;
  outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(152, 11, 244, 0.1);
}

/* ================================
   ACCESSIBILITY IMPROVEMENTS
   ================================ */

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================================
   PERFORMANCE OPTIMIZATIONS
   ================================ */

.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

.gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* NAVBAR */
.navbar { 
  background: linear-gradient(90deg, #980BF4, #0F64F7, #2BC8EA); 
  height: 120px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1030;
  will-change: transform;
  box-sizing: border-box;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.navbar .container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand img {
  height: 85px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  will-change: transform;
}

.navbar-nav {
  flex-wrap: nowrap !important;
  gap: 4px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  margin: 0 8px;
  padding: 8px 16px;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Navbar estado hover dos links */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  text-decoration: none !important;
}

.navbar-nav .nav-link:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8) !important;
  outline-offset: 2px !important;
}

/* Garantir que navbar-collapse não tenha background fora do mobile */
.navbar-collapse {
  background: transparent;
}

/* Botão hambúrguer - sempre visível e clicável */
.navbar-toggler {
  position: relative !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
}

/* Garantir que navbar-expand-lg não esconda o botão em mobile */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block !important;
  }
}

/* Ajuste para evitar sobreposição de conteúdo */
body {
  padding-top: 120px;
  transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsividade Mobile */
@media (max-width: 1200px) and (min-width: 992px) {
  .navbar-nav .nav-link {
    font-size: 13px;
    padding: 8px 12px;
    margin: 0 6px;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 80px;
    padding: 8px 15px;
    overflow: visible !important;
  }
  
  .navbar-brand img {
    height: 60px;
  }
  
  body {
    padding-top: 80px;
  }
  
  /* Ajuste para hero grudar no navbar em mobile */
  .hero-creative {
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
    z-index: 1;
  }
  
  .navbar-toggler {
    border: 2px solid #fff !important;
    padding: 8px 12px !important;
    position: relative !important;
    z-index: 99999 !important;
    background: rgba(152, 11, 244, 0.95) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    display: block !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }
  
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(152, 11, 244, 0.5) !important;
    outline: none !important;
  }
  
  .navbar-toggler:hover {
    background: rgba(152, 11, 244, 1) !important;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px !important;
    height: 24px !important;
    display: block !important;
    pointer-events: none !important;
  }
  
  /* Menu mobile collapse - Refatorado */
  .navbar-collapse {
    background: rgba(152, 11, 244, 0.95) !important;
    margin-top: 15px !important;
    border-radius: 12px !important;
    padding: 20px 15px !important;
    backdrop-filter: blur(10px) !important;
    position: absolute !important;
    top: 100% !important;
    left: 15px !important;
    right: 15px !important;
    z-index: 9999 !important;
    transform: translateY(-10px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  }
  
  .navbar-collapse.show {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .navbar-collapse.collapsing {
    visibility: visible !important;
    opacity: 0.5 !important;
  }
  
  /* Itens do menu mobile - Refatorado */
  .navbar-nav {
    width: 100% !important;
  }
  
  .navbar-nav .nav-link {
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 12px 16px !important;
    margin: 3px 0 !important;
    display: block !important;
    text-align: center !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    color: #fff !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateX(5px) !important;
    color: #fff !important;
  }
  
  .navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.25) !important;
    font-weight: 700 !important;
  }
  
  /* Ajuste do padding para mobile */
  body {
    padding-top: 120px;
  }
  
  body.navbar-shrunk {
    padding-top: 60px;
  }
}

/* Responsividade para Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar-nav .nav-link {
    font-size: 19px;
    padding: 16px 20px;
    margin: 0 8px;
  }
  
  /* Detectar dispositivos com toque para ajustar área de toque */
  @media (any-pointer: coarse) {
    .navbar-nav .nav-link {
      font-size: 20px;
      padding: 18px 22px;
      min-height: 50px;
    }
  }
}

/* Media query adicional para telas grandes (Desktop) */
@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    font-size: 22px;
    padding: 16px 24px;
    margin: 0 12px;
  }
}

/* HERO CRIATIVO COM PALESTRANTES */
.hero-creative {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 50%, #2BC8EA 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(152, 11, 244, 0.9) 0%,
    rgba(15, 100, 247, 0.8) 25%,
    rgba(43, 200, 234, 0.7) 50%,
    rgba(15, 100, 247, 0.8) 75%,
    rgba(152, 11, 244, 0.9) 100%);
  z-index: 1;
}

/* CONTEÚDO PRINCIPAL */
.hero-main-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  color: white;
  overflow-wrap: break-word;
}

.event-badge {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.3);
}

.hero-title {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-main {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  text-align: center;
}

.title-highlight {
  display: block;
  font-size: 4rem;
  font-weight: 900;
  color: #00FFAA;
  margin: 0 auto 15px auto;
  position: relative;
  letter-spacing: 3px;
  text-align: center;
  width: fit-content;
  text-shadow: 
    0 0 8px rgba(0, 255, 170, 1),
    0 0 15px rgba(0, 255, 170, 1),
    0 0 25px rgba(0, 255, 170, 0.9),
    0 0 40px rgba(0, 255, 170, 0.8),
    0 0 60px rgba(0, 255, 170, 0.7),
    1px 1px 2px rgba(0, 0, 0, 1),
    -1px -1px 2px rgba(0, 0, 0, 1),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
  filter: brightness(1.2) contrast(1.3);
}

.title-highlight:hover {
  transform: scale(1.05);
  text-shadow: 
    0 0 8px rgba(0, 255, 170, 1),
    0 0 15px rgba(0, 255, 170, 1),
    0 0 25px rgba(0, 255, 170, 1),
    0 0 40px rgba(0, 255, 170, 1),
    0 0 60px rgba(0, 255, 170, 0.9),
    0 0 85px rgba(0, 255, 170, 0.8),
    0 0 120px rgba(0, 255, 170, 0.7),
    1px 1px 2px rgba(0, 0, 0, 1),
    -1px -1px 2px rgba(0, 0, 0, 1),
    2px 2px 4px rgba(0, 0, 0, 0.8);
  filter: brightness(1.4) contrast(1.5);
  animation-duration: 0.8s;
}

@keyframes gradientShift {
  0%, 100% {
    filter: hue-rotate(0deg) brightness(1);
  }
  25% {
    filter: hue-rotate(15deg) brightness(1.1);
  }
  50% {
    filter: hue-rotate(30deg) brightness(1.2);
  }
  75% {
    filter: hue-rotate(15deg) brightness(1.1);
  }
}

/* Animação de ofuscamento e aparição para o 40+ */
@keyframes glowPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(5px) drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 30px rgba(255, 107, 53, 0.6))
            drop-shadow(0 0 45px rgba(247, 147, 30, 0.4));
  }
  25% {
    opacity: 0.3;
    transform: scale(0.9);
    filter: blur(3px) drop-shadow(0 0 20px rgba(255, 215, 0, 1)) 
            drop-shadow(0 0 40px rgba(255, 107, 53, 0.8))
            drop-shadow(0 0 60px rgba(247, 147, 30, 0.6));
  }
  50% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px) drop-shadow(0 0 25px rgba(255, 215, 0, 1.2)) 
            drop-shadow(0 0 50px rgba(255, 107, 53, 1))
            drop-shadow(0 0 75px rgba(247, 147, 30, 0.8));
  }
  75% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0px) drop-shadow(0 0 30px rgba(255, 215, 0, 1.5)) 
            drop-shadow(0 0 60px rgba(255, 107, 53, 1.2))
            drop-shadow(0 0 90px rgba(247, 147, 30, 1));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px) drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 0 30px rgba(255, 107, 53, 0.6))
            drop-shadow(0 0 45px rgba(247, 147, 30, 0.4));
  }
}

/* Animação de entrada dramática */
@keyframes dramaticEntrance {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
    filter: blur(10px) brightness(0);
  }
  30% {
    opacity: 0.7;
    transform: scale(1.2) rotate(5deg);
    filter: blur(5px) brightness(1.5);
  }
  60% {
    opacity: 1;
    transform: scale(0.95) rotate(-2deg);
    filter: blur(2px) brightness(1.2);
  }
  80% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
    filter: blur(0px) brightness(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0px) brightness(1);
  }
}

/* Animação de ofuscamento com brilho */
@keyframes sparkleGlow {
  0% {
    opacity: 0;
    transform: scale(0.5);
    background: radial-gradient(circle, rgba(255, 215, 0, 0) 0%, rgba(255, 107, 53, 0) 30%, rgba(247, 147, 30, 0) 60%, transparent 100%);
  }
  20% {
    opacity: 0.8;
    transform: scale(1.2);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 107, 53, 0.3) 30%, rgba(247, 147, 30, 0.2) 60%, transparent 100%);
  }
  40% {
    opacity: 0.6;
    transform: scale(1.1);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 107, 53, 0.25) 30%, rgba(247, 147, 30, 0.15) 60%, transparent 100%);
  }
  60% {
    opacity: 0.9;
    transform: scale(1.15);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, rgba(255, 107, 53, 0.35) 30%, rgba(247, 147, 30, 0.25) 60%, transparent 100%);
  }
  80% {
    opacity: 0.4;
    transform: scale(1.05);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.15) 30%, rgba(247, 147, 30, 0.1) 60%, transparent 100%);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 107, 53, 0.2) 30%, rgba(247, 147, 30, 0.1) 60%, transparent 100%);
  }
}

/* Animação para a linha de baixo */
@keyframes underlineAppear {
  0% {
    opacity: 0;
    width: 0%;
  }
  50% {
    opacity: 0.8;
    width: 60%;
  }
  100% {
    opacity: 1;
    width: 80%;
  }
}

.title-subtitle {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2BC8EA;
  margin-top: 20px;
  line-height: 1.4;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* GRID DE INFORMAÇÕES */
.event-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.info-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.info-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Info Item Clicável - Indicador Visual */
.info-item-clickable {
  cursor: pointer;
}

.info-item-clickable:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFD700;
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.3);
}

.click-indicator {
  margin-left: auto;
  font-size: 1.5rem;
  color: #FFD700;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.info-item-clickable:hover .click-indicator {
  opacity: 1;
  transform: translateX(0);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.3rem;
  color: white;
}

.info-content strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.info-content span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* BOTÕES DE AÇÃO */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 40px 0;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: #fff;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.4);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-shine {
  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.6s;
}

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

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  color: #000;
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #fff;
}

/* ===============================
   ESTATÍSTICAS RÁPIDAS - REFATORADO 
   =============================== */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.stat-item {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(30, 10, 50, 0.9));
  border: 2px solid rgba(255, 0, 255, 0.3);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 212, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(0, 212, 255, 0.3);
}

.stat-item:hover::before {
  opacity: 1;
}

/* Stat Clicável */
.stat-clickable {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.stat-clickable:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #FFD700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.stat-hover-text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: #FFD700;
  font-weight: 700;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  white-space: nowrap;
}

.stat-clickable:hover .stat-hover-text {
  bottom: 8px;
  opacity: 1;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

/* Responsividade */
@media (max-width: 768px) {
  .quick-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0 !important;
  }
  
  .stat-item {
    padding: 18px 14px;
    border-radius: 12px;
  }
  
  .stat-number {
    font-size: 2rem;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 0.78rem;
  }
}

/* ===============================
   CREDENCIAMENTO IMPRENSA - DESTACADO
   =============================== */
.press-accreditation {
  margin-top: 24px;
}

.press-info {
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.2), rgba(15, 100, 247, 0.2));
  border: 2px solid rgba(152, 11, 244, 0.5);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(152, 11, 244, 0.2);
}

.press-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.15), rgba(15, 100, 247, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.press-info::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #980BF4, #0F64F7, #2BC8EA, #980BF4);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  border-radius: 18px;
  z-index: -1;
  opacity: 0.6;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.press-info:hover {
  transform: translateY(-3px);
  border-color: rgba(152, 11, 244, 0.7);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.3);
}

.press-info:hover::before {
  opacity: 1;
}

.press-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(152, 11, 244, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.press-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.press-badge {
  display: inline-block;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(152, 11, 244, 0.4);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.press-content p {
  margin: 0 0 10px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 500;
}

.press-content strong {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.press-content a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.press-content a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.3);
  text-decoration: underline;
  transform: scale(1.02);
}

.press-cta {
  font-size: 0.95rem;
  color: #ffffff;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Responsividade para Credenciamento Imprensa */
@media (max-width: 768px) {
  .press-accreditation {
    margin-top: 1.5rem;
  }
  
  .press-info {
    padding: 20px;
    gap: 14px;
  }
  
  .press-icon {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
  
  .press-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
    margin-bottom: 6px;
  }
  
  .press-content p {
    font-size: 0.95rem;
  }
  
  .press-content strong {
    font-size: 1rem;
  }
  
  .press-cta {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
}


@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 212, 255, 1),
                 0 0 40px rgba(0, 212, 255, 0.8);
  }
}

/* Removido - agora está na seção refatorada acima */

/* GRID CRIATIVO DOS PALESTRANTES */
.speakers-creative-grid {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}

.speakers-grid {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
}

/* PALESTRANTE EM DESTAQUE */
.speaker-featured {
  position: absolute;
  top: 0;
  left: 50px;
  width: 200px;
  height: 250px;
  z-index: 10;
}

.speaker-photo {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.speaker-photo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 20px 15px;
  transform: translateY(100%);
  transition: all 0.3s ease;
  opacity: 0;
}

.speaker-photo:hover .speaker-overlay {
  transform: translateY(0);
  opacity: 1;
}

.speaker-overlay .speaker-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  color: white !important;
}

.speaker-overlay .speaker-title {
  font-size: 0.8rem;
  opacity: 0.9;
  color: white !important;
}

/* GRID DE PALESTRANTES PEQUENOS */
.speakers-small-grid {
  position: absolute;
  top: 0;
  right: -30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 180px;
  max-height: 550px;
  overflow: visible;
}

.speaker-small {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.speaker-small:hover {
  transform: scale(1.1) rotate(5deg);
  z-index: 5;
}

.speaker-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-mini-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 8px 5px;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.3s ease;
  opacity: 0;
}

.speaker-small:hover .speaker-mini-info {
  transform: translateY(0);
  opacity: 1;
}

/* PALESTRANTES EM CÍRCULO */
.speakers-circle {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 300px;
  height: 200px;
}

.circle-speaker {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #980BF4;
  box-shadow: 0 8px 20px rgba(152, 11, 244, 0.4);
  transition: all 0.3s ease;
  animation: floatSpeaker 4s ease-in-out infinite;
}

.circle-speaker:hover {
  transform: scale(1.2);
  border-color: #2BC8EA;
  box-shadow: 0 12px 30px rgba(43, 200, 234, 0.6);
  z-index: 5;
}

.circle-speaker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-tooltip {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.speaker-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid rgba(0, 0, 0, 0.9);
}

.circle-speaker:hover .speaker-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: -40px;
}

.circle-1 { 
  top: 20px; 
  left: 20px; 
  animation-delay: 0s;
}

.circle-2 { 
  top: 0; 
  left: 120px; 
  animation-delay: 0.8s;
}

.circle-3 { 
  top: 50px; 
  right: 20px; 
  animation-delay: 1.6s;
}

.circle-4 { 
  bottom: 30px; 
  left: 80px; 
  animation-delay: 2.4s;
}

.circle-5 { 
  bottom: 0; 
  left: 200px; 
  animation-delay: 3.2s;
}

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

/* CONTADOR DE MAIS PALESTRANTES */
.more-speakers {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 100px;
  height: 100px;
}

.more-count {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0F64F7, #2BC8EA);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 30px rgba(15, 100, 247, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

.more-count:hover {
  transform: scale(1.1);
}

.more-count .number {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.more-count .text {
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 15px 30px rgba(15, 100, 247, 0.4); }
  50% { box-shadow: 0 15px 40px rgba(15, 100, 247, 0.6); }
}

/* FORMAS GEOMÉTRICAS DECORATIVAS */
.geometric-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.15;
  animation: rotateShape 8s linear infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  border-radius: 20px;
  top: 100px;
  right: 50px;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #0F64F7, #2BC8EA);
  border-radius: 50%;
  bottom: 150px;
  left: 100px;
  animation-delay: 2s;
}

.shape-3 {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #2BC8EA, #980BF4);
  top: 200px;
  left: 300px;
  animation-delay: 4s;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@keyframes rotateShape {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ELEMENTOS FLUTUANTES */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.2rem;
  animation: floatIcon 6s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(152, 11, 244, 0.3);
}

.float-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.float-2 {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.float-3 {
  bottom: 30%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
  .title-main { font-size: 3rem; }
  .title-highlight { font-size: 3rem; }
  .speaker-featured { width: 160px; height: 200px; }
  .speakers-small-grid { width: 140px; }
  .speaker-small { width: 65px; height: 65px; }
}

@media (max-width: 768px) {
  .hero-creative {
    flex-direction: column;
    padding: 0;
    min-height: auto;
  }
  
  .hero-creative .row {
    min-height: auto;
  }
  
  .hero-main-content {
    padding: 100px 20px 30px;
    text-align: center;
    overflow-wrap: break-word;
  }
  
  .event-badge {
    display: inline-flex;
    font-size: 0.85rem;
    padding: 8px 18px;
    margin-bottom: 20px;
  }
  
  .hero-title {
    margin-bottom: 35px !important;
  }
  
  .title-main { 
    font-size: 2.2rem;
    display: block;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .title-highlight { 
    font-size: 2.2rem;
    display: block;
    margin: 0 auto 15px auto;
    text-align: center;
    width: fit-content;
  }
  
  .title-subtitle { 
    font-size: 1rem;
    display: block;
    margin-top: 18px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 10px;
  }
  
  .event-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px !important;
  }
  
  .info-item {
    padding: 16px 18px;
    border-radius: 12px;
  }
  
  .info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .info-content strong {
    font-size: 0.95rem;
  }
  
  .info-content span {
    font-size: 0.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    padding: 18px 24px;
    font-size: 0.95rem;
    justify-content: center;
  }
  
  /* Ocultar coluna inteira dos palestrantes no mobile */
  .hero-creative .col-lg-6:last-child {
    display: none !important;
  }
  
  /* Ocultar Grid de palestrantes no mobile */
  .speakers-creative-grid {
    display: none !important;
  }
  
  .speakers-grid {
    display: none !important;
  }
  
  /* Ocultar todos os elementos de palestrantes no hero mobile */
  .speaker-featured {
    display: none !important;
  }
  
  .speakers-small-grid {
    display: none !important;
  }
  
  .speakers-circle {
    display: none !important;
  }
  
  /* Garantir que a coluna principal ocupe toda a largura */
  .hero-creative .col-lg-6:first-child {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  
  /* Quick stats - espaçamento melhorado (sem painel de palestrantes acima) */
  .quick-stats {
    margin-top: 0 !important;
    padding: 0 10px;
  }
  
  /* Press accreditation - espaçamento melhorado */
  .press-accreditation {
    margin-top: 30px !important;
  }
  
  /* Remover decorações */
  .geometric-shapes,
  .floating-elements {
    display: none;
  }
}

/* Mobile pequeno - ajustes adicionais */
@media (max-width: 480px) {
  .hero-main-content {
    padding: 90px 15px 25px;
    overflow-wrap: break-word;
  }
  
  .event-badge {
    font-size: 0.78rem;
    padding: 8px 16px;
    margin-bottom: 18px;
  }
  
  .title-main { 
    font-size: 1.9rem;
  }
  
  .title-subtitle { 
    font-size: 0.95rem;
    margin-top: 16px;
    padding: 0 5px;
  }
  
  /* Painel de palestrantes oculto - não precisa de estilos */
  .speakers-creative-grid {
    display: none !important;
  }
  
  .quick-stats {
    margin-top: 0 !important;
  }
  
  .press-accreditation {
    margin-top: 25px !important;
  }
  
  .event-info-grid {
    gap: 10px;
    margin-bottom: 25px !important;
  }
  
  .hero-actions {
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    padding: 16px 20px;
    font-size: 0.9rem;
  }
  
  .title-main { 
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .title-highlight { 
    font-size: 1.8rem;
    margin: 0 auto 15px auto;
    text-align: center;
    width: fit-content;
  }
  
  .title-subtitle { 
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 5px;
    line-height: 1.4;
  }
  
  .event-info-grid {
    gap: 8px;
    margin-bottom: 20px !important;
  }
  
  .info-item {
    padding: 12px 14px;
  }
  
  .hero-actions {
    gap: 10px;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
  
  .quick-stats {
    gap: 8px;
  }
  
  .stat-item {
    padding: 16px 12px;
  }
  
  .press-accreditation {
    margin-top: 20px;
  }
  
  /* Palestrantes continuam ocultos no mobile pequeno */
  .speaker-featured,
  .speakers-small-grid,
  .speakers-circle {
    display: none !important;
  }
  
  .btn-primary-hero,
  .btn-secondary-hero {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
  
  /* Stats refatorados - regras no topo do arquivo */
}

/* SOBRE */
.section-badge {
  background: linear-gradient(90deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1));
  color: #980BF4;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(152, 11, 244, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.main-content-card {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.content-title {
  color: #980BF4;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.main-content-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1));
  border-radius: 15px;
  padding: 30px;
  border-left: 5px solid #980BF4;
}

.highlight-box h4 {
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-box p {
  color: #666;
  margin-bottom: 0;
}

.btn-highlight {
  background: linear-gradient(90deg, #980BF4, #0F64F7);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.3);
  color: white;
}

/* Responsividade para seção Sobre */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .main-content-card {
    padding: 30px 25px;
  }
  
  .content-title {
    font-size: 1.6rem;
  }
  
  .highlight-box {
    text-align: center;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
}

.sobre-card { border-radius: 16px; padding: 30px; transition: transform 0.3s ease; }
.sobre-card:hover { transform: translateY(-8px); }
.sobre-text { margin-top: 40px; padding: 30px; border-radius: 16px; background: linear-gradient(90deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1)); box-shadow: 0 6px 20px rgba(0,0,0,0.05); text-align: center; }
.sobre-text h3 { color: #980BF4; font-weight: 800; margin-bottom: 20px; }
.sobre-text p { font-size: 1.1rem; line-height: 1.7; color: #333; }

/* SEÇÃO DE VÍDEO MODERNA */
.video-showcase {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 20px;
  position: relative;
}

.video-header {
  text-align: center;
  margin-bottom: 40px;
}

.video-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1.2;
}

.video-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.1),
    0 12px 30px rgba(152,11,244,0.15);
  background: linear-gradient(135deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}

.video-frame:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.15),
    0 15px 40px rgba(152,11,244,0.25);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-frame:hover .video-overlay {
  opacity: 1;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #980BF4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

.video-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.decoration-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  top: -20px;
  left: -40px;
  animation-delay: 0s;
}

.decoration-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2BC8EA, #0F64F7);
  bottom: -30px;
  right: -30px;
  animation-delay: -2s;
}

.decoration-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0F64F7, #2BC8EA);
  top: 50%;
  left: -20px;
  animation-delay: -4s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* Responsividade para a seção de vídeo */
@media (max-width: 992px) {
  .video-showcase {
    margin: 40px auto 0;
  }
  
  .video-title {
    font-size: 2rem;
  }
  
  .video-subtitle {
    font-size: 1.1rem;
  }
  
  .video-frame {
    max-width: 100%;
  }
  
  .decoration-1 {
    width: 80px;
    height: 80px;
    top: -15px;
    left: -25px;
  }
  
  .decoration-2 {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: -20px;
  }
  
  .decoration-3 {
    width: 40px;
    height: 40px;
  }
  
  .play-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .video-showcase {
    padding: 0 15px;
    margin: 30px auto 0;
  }
  
  .video-header {
    margin-bottom: 30px;
  }
  
  .video-title {
    font-size: 1.7rem;
  }
  
  .video-subtitle {
    font-size: 1rem;
  }
  
  .video-frame {
    border-radius: 15px;
    aspect-ratio: 16/10; /* Slightly different ratio for mobile */
  }
  
  .video-frame iframe {
    border-radius: 13px;
  }
  
  .decoration {
    display: none; /* Hide decorations on very small screens */
  }
  
  .play-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Ajuste para manter proporção do YouTube em todas as telas */
@media (max-width: 480px) {
  .video-frame {
    aspect-ratio: 16/11;
  }
}

@media (max-width: 360px) {
  .video-frame {
    aspect-ratio: 4/3;
  }
}

/* PALESTRANTES */
.card { border: none; border-radius: 16px; box-shadow: 0 6px 20px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.card:hover { transform: translateY(-8px); }
.speaker-img { width: 100%; height: 280px; object-fit: cover; border-radius: 16px 16px 0 0; }
.card-title { font-weight: 700; }
.text-muted { color: #0F64F7 !important; font-weight: 600; }
.speaker-hover { position: absolute; bottom: 0; left: 0; right: 0; text-align: center; padding: 10px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7)); color: white; opacity: 0; transition: 0.3s; border-radius: 0 0 16px 16px; }
.card:hover .speaker-hover { opacity: 1; }

/* FORM */
.form-control, .form-select { border-radius: 10px; padding: 14px 16px; border: 1px solid #ddd; }
.form-control:focus, .form-select:focus { border-color: #980BF4; box-shadow: 0 0 10px rgba(152,11,244,0.3); }
.btn-primary { background: linear-gradient(90deg, #980BF4, #0F64F7, #2BC8EA); border: none; padding: 14px 40px; border-radius: 10px; transition: opacity 0.3s ease; }
.btn-primary:hover { opacity: 0.9; }

/* ==================================== 
   FOOTER MODERNO E APRIMORADO
   ==================================== */

/* === FOOTER MODERNO E APRIMORADO === */
.enhanced-footer {
  position: relative;
  background: linear-gradient(135deg, #0a1121, #0d1829, #0f1b2c);
  color: #ffffff;
  padding: 80px 0 40px;
  overflow: hidden;
  margin-top: 80px;
}

.footer-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='7' cy='7' r='1'/%3E%3Ccircle cx='37' cy='37' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

/* Newsletter Section */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.newsletter-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.newsletter-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-input-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 12px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-btn {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.newsletter-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-privacy i {
  color: #10b981;
}

/* Main Footer */
.footer-main {
  margin-bottom: 50px;
}

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

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-mission-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-mission {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* Social Links */
.footer-social h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.social-link.youtube:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(129, 52, 175, 0.1));
  border-color: rgba(225, 48, 108, 0.3);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.social-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.social-link.linkedin:hover {
  background: rgba(10, 102, 194, 0.1);
  border-color: rgba(10, 102, 194, 0.3);
  box-shadow: 0 4px 15px rgba(10, 102, 194, 0.2);
}

/* Footer Navigation */
.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4);
  border-radius: 2px;
}

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

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

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #0ea5e9;
  text-decoration: none;
  transform: translateX(5px);
}

.footer-menu a i {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Community Stats */
.community-stats {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-stats h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
}

/* Event Card */
.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-date {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  min-width: 60px;
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.event-month {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 2px;
}

.event-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.event-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  line-height: 1.4;
}

.event-time {
  font-size: 0.85rem;
  color: #0ea5e9;
  font-weight: 600;
}

/* Contact Info */
.contact-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info i {
  font-size: 1.1rem;
  color: #0ea5e9;
  margin-top: 2px;
  min-width: 20px;
}

.contact-info div {
  flex: 1;
}

.contact-info strong {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #0ea5e9;
  text-decoration: none;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 40px 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.footer-copyright strong {
  color: #ffffff;
}

.footer-copyright .bi-heart-fill {
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.footer-links-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .footer-links-inline {
    justify-content: flex-end;
  }
}

.footer-link-inline {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link-inline:hover {
  color: #0ea5e9;
  text-decoration: none;
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* Footer Decoration */
.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-icons i {
  position: absolute;
  color: rgba(255, 255, 255, 0.03);
  font-size: 2rem;
  animation: float 8s ease-in-out infinite;
}

.icon-1 {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}

.icon-2 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.icon-3 {
  top: 70%;
  right: 60%;
  animation-delay: 5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .enhanced-footer {
    padding: 60px 0 30px;
  }
  
  .footer-newsletter {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .newsletter-header h3 {
    font-size: 1.5rem;
  }
  
  .form-input-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter-btn {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .event-card {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links-inline {
    flex-direction: column;
    gap: 12px;
  }
  
  .separator {
    display: none;
  }
}

@media (max-width: 576px) {
  .enhanced-footer {
    padding: 50px 0 25px;
  }
  
  .footer-newsletter {
    padding: 25px 15px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  
  .stat-item {
    padding: 8px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
}/* WHATSAPP FLOAT */
.whatsapp-float { 
  position: fixed; 
  bottom: 100px; 
  right: 20px; 
  background-color: #25D366; 
  color: #fff; 
  border-radius: 50%; 
  width: 60px; 
  height: 60px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  font-size: 28px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
  z-index: 999; 
  text-decoration: none; 
  transition: transform 0.3s ease; 
}

.whatsapp-float:hover { 
  transform: scale(1.1); 
}

.whatsapp-float .bi { 
  line-height: 1; 
}

/* Ajuste do botão WhatsApp no mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 100px;
    right: 15px;
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}

/* BOTÃO FLUTUANTE DE INGRESSO - STICKY CTA */
.ticket-float-btn {
  position: fixed;
  bottom: 100px;
  left: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border-radius: 50px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: float-pulse 3s infinite;
}

.ticket-float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7);
  color: #000;
}

.ticket-float-btn i {
  font-size: 22px;
}

.ticket-text {
  font-weight: 700;
  white-space: nowrap;
}

@keyframes float-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8);
  }
}

/* Responsividade do botão de ingresso */
@media (max-width: 768px) {
  .ticket-float-btn {
    bottom: 100px;
    left: 15px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .ticket-float-btn i {
    font-size: 18px;
  }
  
  .ticket-text {
    display: none;
  }
  
  .ticket-float-btn {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
}

/* SEÇÃO DE PALESTRANTES MODERNA */
.palestrantes-section-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.palestrantes-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(152,11,244,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15,100,247,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(43,200,234,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Header Moderno */
.section-header-modern {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(152,11,244,0.2);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  font-weight: 600;
  color: #980BF4;
  font-size: 0.95rem;
}

.badge-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: white;
  font-size: 1rem;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a202c;
}

.gradient-text {
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradiente claro para fundos escuros (usado na página de comunidade) */
.gradient-text-light {
  background: linear-gradient(135deg, #f0b3ff, #4da3ff, #5de4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.section-subtitle-modern {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 50%;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #980BF4, #0F64F7, #2BC8EA);
  border-radius: 1px;
}

/* Grid Completo - Todos os Palestrantes */
.speakers-grid-complete {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  grid-auto-rows: 1fr;
}

/* Responsividade para o grid completo */
@media (max-width: 1200px) {
  .speakers-grid-complete {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .speakers-grid-complete {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .speakers-grid-complete {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }
}

/* Remove elementos não usados */
.speakers-grid-modern,
.speaker-featured-card,
.speakers-expand,
.speakers-additional {
  display: none;
}

/* Cards Regulares */
.speaker-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.05),
    0 4px 15px rgba(152,11,244,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.speaker-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 45px rgba(0,0,0,0.1),
    0 8px 25px rgba(152,11,244,0.15);
}

.card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.speaker-image-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Aspect ratio 1:1 (quadrado) */
  overflow: hidden;
  flex-shrink: 0;
}

.speaker-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.speaker-card-modern:hover .speaker-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(152,11,244,0.8), rgba(15,100,247,0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-card-modern:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  font-size: 1.5rem;
}

.speaker-content {
  padding: 30px 30px 24px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.speaker-meta {
  margin-bottom: 12px;
  flex-shrink: 0;
}

.speaker-category {
  background: linear-gradient(135deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1));
  color: #980BF4;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  flex-shrink: 0;
  line-height: 1.3;
}

.speaker-bio {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex: 1;
  min-height: 0;
  overflow: visible;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 0;
  flex-shrink: 0;
}

.linkedin-link-modern {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.linkedin-link-modern:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(152,11,244,0.3);
}

.card-decoration {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #980BF4, #0F64F7, #2BC8EA);
  border-radius: 1px;
}

/* Responsividade para o grid completo */
@media (max-width: 1200px) {
  .speakers-grid-complete {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .speakers-grid-complete {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .section-title-modern {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .palestrantes-section-modern {
    padding: 70px 0;
  }
  
  .section-header-modern {
    margin-bottom: 50px;
    padding: 0 20px;
  }
  
  .section-badge-modern {
    padding: 10px 22px;
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .section-title-modern {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  
  .section-subtitle-modern {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  .speakers-grid-complete {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }
  
  .speaker-card-modern {
    max-width: 100%;
  }
  
  .speaker-image-container {
    height: 280px;
    border-radius: 16px;
  }
  
  .speaker-image {
    object-fit: cover;
    object-position: center 20%;
  }
  
  .image-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  }
  
  .speaker-content {
    padding: 24px 20px 20px 20px;
  }
  
  .speaker-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .speaker-bio {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  
  .speaker-category {
    padding: 6px 14px;
    font-size: 0.75rem;
  }
  
  .card-footer {
    margin-top: 0;
    padding-top: 0;
  }
  
  .linkedin-link-modern {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .palestrantes-section-modern {
    padding: 60px 0;
  }
  
  .section-header-modern {
    margin-bottom: 40px;
    padding: 0 15px;
  }
  
  .section-badge-modern {
    padding: 8px 18px;
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .badge-icon {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .section-title-modern {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
  
  .section-subtitle-modern {
    font-size: 1rem;
    padding: 0 5px;
  }
  
  .speakers-grid-complete {
    gap: 22px;
    padding: 0 15px;
  }
  
  .speaker-image-container {
    height: 260px;
  }
  
  .speaker-content {
    padding: 20px 18px 16px 18px;
  }
  
  .speaker-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .speaker-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  .speaker-category {
    padding: 5px 12px;
    font-size: 0.7rem;
  }
  
  .card-footer {
    margin-top: 0;
    padding-top: 0;
  }
  
  .linkedin-link-modern {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title-modern {
    font-size: 1.65rem;
    line-height: 1.35;
  }
  
  .section-subtitle-modern {
    font-size: 0.95rem;
  }
  
  .speaker-image-container {
    height: 240px;
  }
  
  .speaker-content {
    padding: 18px 16px 14px 16px;
  }
  
  .speaker-name {
    font-size: 1.25rem;
  }
  
  .speaker-bio {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  
  .card-footer {
    margin-top: 0;
  }
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.1),
    0 12px 30px rgba(152,11,244,0.15);
  background: linear-gradient(135deg, rgba(152,11,244,0.1), rgba(15,100,247,0.1));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.4s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.15),
    0 15px 40px rgba(152,11,244,0.25);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 18px;
}

/* Responsividade para o mapa */
@media (max-width: 768px) {
  .map-container {
    padding-bottom: 60%;
    border-radius: 15px;
  }
  
  .map-container iframe {
    border-radius: 13px;
  }
}

@media (max-width: 576px) {
  .map-container {
    padding-bottom: 70%;
    border-radius: 12px;
  }
  
  .map-container iframe {
    border-radius: 10px;
  }
}

.inscricao-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inscricao-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  z-index: 1;
}

.inscricao-section > .container {
  position: relative;
  z-index: 2;
}

.inscricao-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.inscricao-section h2 {
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.inscricao-section .lead {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.event-highlights {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.highlight-item i {
  margin-right: 10px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-ingresso-premium {
  background: white;
  color: #0F64F7;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-ingresso-premium::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-ingresso-premium:hover::before {
  left: 100%;
}

.btn-ingresso-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #980BF4;
}

.btn-ingresso-premium .btn-subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 5px;
}

.security-badges {
  margin-top: 20px;
}

/* Responsividade para inscrição */
@media (max-width: 768px) {
  .inscricao-section {
    padding: 60px 20px;
  }
  
  .event-highlights {
    padding: 20px;
  }
  
  .highlight-item {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .btn-ingresso-premium {
    padding: 18px 30px;
    font-size: 1rem;
  }
}

.btn-ingresso {
  background: #fff;
  color: #0F64F7;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ingresso:hover {
  background: #f1f1f1;
  color: #980BF4;
}

/* ====================================
   PÁGINA DE COMUNIDADE - DESIGN CRIATIVO
   ==================================== */

/* Hero Section Comunidade */
.community-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 0;
}

.community-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 50%, #2BC8EA 100%);
  z-index: -1;
}

/* Formas Animadas de Fundo */
.animated-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -3%;
  animation-delay: 3s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 80%;
  left: 20%;
  animation-delay: 6s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 15%;
  animation-delay: 9s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
  }
}

/* Conteúdo do Hero */
.community-hero-content {
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.community-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 25px;
}

.community-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
}

/* Hero Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
  font-size: 1.2rem;
  color: #2BC8EA;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-community-primary {
  background: white;
  color: #980BF4;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-community-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  color: #0F64F7;
}

.btn-community-secondary {
  background: transparent;
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-community-secondary:hover {
  background: white;
  color: #980BF4;
}

/* Visual Cards do Hero */
.community-hero-visual {
  position: relative;
  height: 500px;
}

.visual-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.3s ease;
  animation: cardFloat 6s infinite ease-in-out;
  z-index: 5;
  max-width: 240px;
  min-width: 220px;
  width: auto;
}

.visual-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.card-1 {
  top: 8%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 15%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  left: 5%;
  animation-delay: 4s;
}

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

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
  min-width: 0;
}

.card-content h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 5px 0;
  line-height: 1.2;
  white-space: normal;
  word-wrap: break-word;
}

.card-content p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  white-space: normal;
  word-wrap: break-word;
  font-weight: 500;
}

/* Logo Central com Pulse */
.central-illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 3px solid white;
  border-radius: 50%;
  animation: pulse 3s infinite;
}

.delay-1 {
  animation-delay: 1s;
}

.delay-2 {
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.logo-central {
  position: relative;
  height: 120px;
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.3));
  animation: logoSpin 20s linear infinite;
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ================================
   ENHANCED HERO VISUAL - PLATFORM MOCKUPS
   ================================ */

.community-hero-visual-enhanced {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Desktop Preview */
.desktop-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 3;
}

.desktop-frame {
  width: 380px;
  height: 240px;
  background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
}

.desktop-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 14px 0 0 #f59e0b, 28px 0 0 #22c55e;
}

.device-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.screen-header {
  background: linear-gradient(90deg, #980BF4, #0F64F7);
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: between;
  width: 100%;
  gap: 15px;
}

.mini-logo {
  height: 20px;
}

.nav-menu {
  display: flex;
  gap: 12px;
  flex: 1;
}

.nav-item {
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 15px;
  font-weight: 600;
}

.nav-item.active {
  background: rgba(255, 255, 255, 0.2);
}

.user-avatar .avatar-circle {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #2BC8EA, #22c55e);
  border-radius: 50%;
}

.screen-content {
  padding: 15px;
  height: calc(100% - 40px);
}

.dashboard-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.widget {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #e2e8f0;
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: #64748b;
  margin-bottom: 5px;
}

.widget-header i {
  color: #980BF4;
}

.widget-value {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
}

.activity-feed {
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #e2e8f0;
}

.feed-item:last-child {
  border-bottom: none;
}

.item-avatar {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  border-radius: 50%;
}

.item-content {
  flex: 1;
}

.item-title {
  font-size: 8px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
}

.item-subtitle {
  font-size: 7px;
  color: #64748b;
}

/* Mobile Preview */
.mobile-preview {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-30%);
  z-index: 2;
}

.mobile-frame {
  width: 120px;
  height: 240px;
  background: linear-gradient(145deg, #1e293b, #334155);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mobile-frame .device-screen {
  background: #0f172a;
  border-radius: 16px;
}

.mobile-header {
  background: linear-gradient(90deg, #980BF4, #0F64F7);
  border-radius: 16px 16px 0 0;
  padding: 8px;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.time {
  color: white;
  font-size: 8px;
  font-weight: 600;
}

.battery {
  width: 20px;
  height: 8px;
  border: 1px solid white;
  border-radius: 2px;
  position: relative;
}

.battery::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 2px;
  width: 1px;
  height: 4px;
  background: white;
  border-radius: 0 1px 1px 0;
}

.battery-level {
  background: white;
  height: 100%;
  width: 70%;
  border-radius: 1px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-title {
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.notification-icon {
  position: relative;
  color: white;
  font-size: 10px;
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  font-size: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.mobile-content {
  padding: 12px 8px;
  height: calc(100% - 60px);
}

.mobile-widgets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 15px;
}

.mobile-widget {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  color: white;
  font-size: 6px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.mobile-widget i {
  font-size: 12px;
  color: #2BC8EA;
}

.mobile-feed {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-feed-item {
  background: #1e293b;
  border-radius: 4px;
  height: 20px;
  position: relative;
  overflow: hidden;
}

.mobile-feed-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  background: white;
  border-radius: 30px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  animation: floatMove 6s infinite ease-in-out;
  z-index: 1;
}

.float-element i {
  color: #980BF4;
  font-size: 14px;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

.element-3 {
  top: 70%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes floatMove {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Seção de Features */
.community-features {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card-modern {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(152, 11, 244, 0.15);
}

.feature-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  position: relative;
  z-index: 2;
}

.gradient-1 {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
}

.gradient-2 {
  background: linear-gradient(135deg, #0F64F7, #2BC8EA);
}

.gradient-3 {
  background: linear-gradient(135deg, #2BC8EA, #980BF4);
}

.gradient-4 {
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
}

.gradient-5 {
  background: linear-gradient(135deg, #0F64F7, #980BF4);
}

.gradient-6 {
  background: linear-gradient(135deg, #2BC8EA, #0F64F7);
}

.feature-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: inherit;
  opacity: 0.2;
  transform: translate(10px, 10px);
}

.feature-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.feature-card-modern > p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.feature-list i {
  color: #980BF4;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ================================
   ENHANCED GLASSMORPHISM FEATURE CARDS
   ================================ */

.features-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card-glass {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(31, 38, 135, 0.37),
    0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
}

.feature-card-glass:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(31, 38, 135, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card-glass:hover .card-glow {
  opacity: 0.6;
  animation: glowPulse 2s infinite ease-in-out;
}

.gradient-glow-1 {
  background: radial-gradient(circle, rgba(152, 11, 244, 0.3) 0%, transparent 70%);
}

.gradient-glow-2 {
  background: radial-gradient(circle, rgba(15, 100, 247, 0.3) 0%, transparent 70%);
}

.gradient-glow-3 {
  background: radial-gradient(circle, rgba(43, 200, 234, 0.3) 0%, transparent 70%);
}

.gradient-glow-4 {
  background: radial-gradient(circle, rgba(152, 11, 244, 0.3) 0%, transparent 70%);
}

.gradient-glow-5 {
  background: radial-gradient(circle, rgba(15, 100, 247, 0.3) 0%, transparent 70%);
}

.gradient-glow-6 {
  background: radial-gradient(circle, rgba(43, 200, 234, 0.3) 0%, transparent 70%);
}

@keyframes glowPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.3; }
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.feature-icon-modern {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

.feature-icon-modern .icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
}

.icon-networking .icon-bg {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
}

.icon-content .icon-bg {
  background: linear-gradient(135deg, #0F64F7, #2BC8EA);
}

.icon-business .icon-bg {
  background: linear-gradient(135deg, #2BC8EA, #980BF4);
}

.icon-events .icon-bg {
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
}

.icon-mentoring .icon-bg {
  background: linear-gradient(135deg, #0F64F7, #980BF4);
}

.icon-tools .icon-bg {
  background: linear-gradient(135deg, #2BC8EA, #0F64F7);
}

.feature-icon-modern svg {
  width: 35px;
  height: 35px;
  color: white;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-badge {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: #1e293b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-card-glass h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.feature-card-glass > p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.feature-highlights {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #475569;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.3);
}

.feature-stats {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
}

/* ================================
   DEVELOPMENT TIMELINE SECTION
   ================================ */

.development-timeline-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.progress-overview {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.progress-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.progress-percentage {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-bar-container {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-bar {
  height: 100%;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #980BF4, #0F64F7, #2BC8EA);
  border-radius: 6px;
  width: 0%;
  transition: width 2s ease-out;
  animation: progressGlow 2s infinite ease-in-out;
}

@keyframes progressGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(152, 11, 244, 0.3); }
  50% { box-shadow: 0 0 20px rgba(152, 11, 244, 0.6); }
}

.progress-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

.timeline-track {
  position: relative;
  padding: 40px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.marker-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 3;
}

.timeline-item.completed .marker-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.timeline-item.active .marker-icon {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.3);
  animation: activeMarker 2s infinite ease-in-out;
}

@keyframes activeMarker {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.timeline-item.upcoming .marker-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.timeline-item.future .marker-icon {
  background: linear-gradient(135deg, #64748b, #475569);
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
}

.timeline-item.launch .marker-icon {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  animation: launchPulse 3s infinite ease-in-out;
}

@keyframes launchPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3); }
  50% { transform: scale(1.15); box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5); }
}

.marker-line {
  width: 4px;
  height: 120px;
  background: linear-gradient(180deg, #e2e8f0, #cbd5e1);
  margin-top: 10px;
}

.timeline-item.completed .marker-line {
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.timeline-item.active .marker-line {
  background: linear-gradient(180deg, #980BF4, #0F64F7);
}

.timeline-item:last-child .marker-line {
  display: none;
}

.timeline-content {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-item.active .timeline-content {
  border-color: #980BF4;
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.15);
}

.timeline-item.completed .timeline-content {
  border-color: #22c55e;
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.timeline-header h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
}

.timeline-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.timeline-status.completed {
  background: #dcfce7;
  color: #16a34a;
}

.timeline-status.active {
  background: #ede9fe;
  color: #980BF4;
}

.timeline-status.upcoming {
  background: #fef3c7;
  color: #d97706;
}

.timeline-status.future {
  background: #f1f5f9;
  color: #64748b;
}

.timeline-status.launch {
  background: #fecaca;
  color: #dc2626;
}

.loading-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(152, 11, 244, 0.3);
  border-top: 2px solid #980BF4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.timeline-date {
  font-size: 0.9rem;
  color: #980BF4;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content > p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.timeline-features {
  margin-bottom: 15px;
}

.timeline-features div {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-completed {
  color: #16a34a;
  font-weight: 600;
}

.feature-progress {
  color: #980BF4;
  font-weight: 600;
}

.feature-pending {
  color: #64748b;
}

.feature-highlight {
  color: #dc2626;
  font-weight: 700;
  font-size: 1rem;
}

.timeline-progress {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.progress-mini {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}

.progress-mini-fill {
  height: 100%;
  background: linear-gradient(90deg, #980BF4, #0F64F7);
  border-radius: 3px;
  transition: width 1s ease-out;
}

.timeline-progress span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #980BF4;
}

.dev-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.stat-card {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #980BF4;
  box-shadow: 0 15px 35px rgba(152, 11, 244, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 600;
}

/* Seção de Gratuidade */
.community-free-section {
  padding: 100px 0;
  background: white;
}

.free-banner {
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  border-radius: 30px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(152, 11, 244, 0.3);
}

.free-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 3rem;
  animation: floatIcon 4s infinite ease-in-out;
}

.float-1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.float-2 {
  bottom: 15%;
  left: 10%;
  animation-delay: 1.5s;
}

.float-3 {
  top: 50%;
  right: 5%;
  animation-delay: 3s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.free-content {
  position: relative;
  z-index: 2;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.free-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.free-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 30px;
}

.free-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.free-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
}

.free-feature-item i {
  font-size: 1.3rem;
  color: #2BC8EA;
}

.free-visual {
  position: relative;
}

.price-tag {
  background: white;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
  transition: all 0.3s ease;
}

.price-tag:hover {
  transform: rotate(0deg) scale(1.05);
}

.price-amount {
  font-size: 4rem;
  font-weight: 800;
  color: #980BF4;
  line-height: 1;
  margin-bottom: 10px;
}

.price-period {
  font-size: 1.25rem;
  font-weight: 600;
  color: #64748b;
}

/* ================================
   VALUE COMPARISON SECTION
   ================================ */

.value-comparison-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 60px;
}

.comparison-column {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s ease;
}

.others-column {
  border: 2px solid #e2e8f0;
  transform: scale(0.95);
  opacity: 0.8;
}

.our-column {
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA) border-box;
  transform: scale(1.05);
  box-shadow: 0 25px 70px rgba(152, 11, 244, 0.2);
}

.our-column::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: white;
  padding: 8px 25px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.column-header {
  text-align: center;
  margin-bottom: 30px;
}

.column-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.others-header .column-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.our-header .column-icon {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: white;
}

.column-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #1e293b;
}

.price-tag {
  display: inline-block;
  margin-bottom: 15px;
}

.others-price {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 2px solid #fecaca;
  color: #dc2626;
  padding: 15px 25px;
  border-radius: 15px;
}

.our-price {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  border: 2px solid #c4b5fd;
  color: #980BF4;
  padding: 15px 25px;
  border-radius: 15px;
}

.price {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.period {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.guarantee-badge {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 2px solid #86efac;
  color: #16a34a;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 1rem;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item.limited {
  color: #64748b;
}

.feature-item.limited i {
  color: #ef4444;
  font-size: 1.2rem;
}

.feature-item.included {
  color: #1e293b;
  font-weight: 600;
}

.feature-item.included i {
  color: #22c55e;
  font-size: 1.2rem;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.vs-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(152, 11, 244, 0.3);
  animation: vsRotate 4s infinite ease-in-out;
}

@keyframes vsRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

.savings-highlight {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #fbbf24;
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 40px;
}

.savings-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
}

.savings-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.savings-text h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 8px;
}

.savings-text p {
  color: #a16207;
  font-size: 1.1rem;
  margin: 0;
}

.savings-amount {
  color: #d97706;
  font-size: 1.3rem;
}

.savings-visual {
  text-align: center;
}

.money-saved {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.currency {
  font-size: 1.2rem;
  color: #a16207;
  font-weight: 600;
}

.amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: #d97706;
  line-height: 1;
}

.period {
  font-size: 0.9rem;
  color: #a16207;
  font-weight: 600;
}

.premium-guarantee {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.guarantee-seal {
  position: relative;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.3);
  animation: sealFloat 3s infinite ease-in-out;
}

@keyframes sealFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.seal-content {
  text-align: center;
  color: white;
}

.seal-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.seal-text h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.seal-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.seal-ribbon {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #22c55e;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  transform: rotate(20deg);
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
}

.guarantee-item i {
  color: #22c55e;
  font-size: 1.3rem;
}

/* Call to Action Final */
.community-cta-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f8fafc, white);
}

.cta-card {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.benefit-text strong {
  font-size: 1.1rem;
  color: #1a202c;
}

.benefit-text span {
  font-size: 0.9rem;
  color: #64748b;
}

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

.btn-cta-primary {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: white;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(152, 11, 244, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.4);
  color: white;
}

.btn-cta-secondary {
  background: transparent;
  color: #980BF4;
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid #980BF4;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: #980BF4;
  color: white;
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

/* ================================
   ENHANCED CTA WITH INLINE FORM
   ================================ */

.interest-counter {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 40px;
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.2);
}

.counter-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  color: white;
}

.counter-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.counter-stats {
  text-align: center;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  animation: counterPulse 2s infinite ease-in-out;
}

@keyframes counterPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.counter-label {
  font-size: 1rem;
  opacity: 0.9;
}

.counter-trend {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cta-card-enhanced {
  background: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.signup-form-container {
  max-width: 800px;
  margin: 0 auto 40px;
}

.signup-form {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e2e8f0;
  border-radius: 25px;
  padding: 40px;
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.form-header p {
  color: #64748b;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #980BF4;
  box-shadow: 0 0 0 3px rgba(152, 11, 244, 0.1);
}

.form-icon {
  position: absolute;
  top: 40px;
  left: 18px;
  color: #9ca3af;
  font-size: 1.1rem;
  pointer-events: none;
}

.form-group input:focus + .form-icon,
.form-group select:focus + .form-icon {
  color: #980BF4;
}

.form-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(152, 11, 244, 0.05);
  border-radius: 15px;
}

.benefit-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #1e293b;
}

.benefit-check i {
  color: #22c55e;
  font-size: 1.1rem;
}

.btn-signup {
  width: 100%;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: white;
  border: none;
  padding: 20px;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.3);
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.85rem;
}

.form-security i {
  color: #22c55e;
}

.success-message {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  border: 2px solid #86efac;
  border-radius: 25px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: white;
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-message h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 15px;
}

.success-message p {
  color: #166534;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.success-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 12px 25px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 25px;
}

.btn-back {
  background: #22c55e;
  color: white;
  padding: 15px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: #16a34a;
  color: white;
  transform: translateY(-2px);
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px;
  background: rgba(152, 11, 244, 0.05);
  border-radius: 20px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #64748b;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 3px solid white;
}

.proof-text {
  text-align: left;
}

.proof-text strong {
  display: block;
  color: #1e293b;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.proof-text span {
  color: #64748b;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.05), rgba(15, 100, 247, 0.05));
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

/* Responsividade Comunidade */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 992px) {
  .community-hero-title {
    font-size: 2.5rem;
  }
  
  .community-hero-visual {
    height: 400px;
    margin-top: 50px;
  }
  
  .visual-card {
    max-width: 240px;
    min-width: 220px;
    padding: 20px;
  }
  
  .card-content h4 {
    font-size: 1.15rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .free-banner {
    padding: 40px;
  }
  
  .free-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .community-hero-content {
    padding: 40px 0;
  }
  
  .community-hero-title {
    font-size: 2rem;
  }
  
  .community-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-features {
    flex-direction: column;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-community-primary,
  .btn-community-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .community-hero-visual {
    display: none;
  }
  
  .community-features,
  .community-free-section,
  .community-cta-section {
    padding: 60px 0;
  }
  
  .feature-card-modern {
    padding: 30px;
  }
  
  .free-banner {
    padding: 30px;
    border-radius: 20px;
  }
  
  .price-tag {
    margin-top: 30px;
  }
  
  .cta-card {
    padding: 40px 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ====================================
   SEÇÃO COMUNIDADE - DESIGN MELHORADO
   ==================================== */

#comunidade {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

#comunidade:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

#comunidade h2 {
  position: relative;
  display: inline-block;
}

#comunidade h2::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -10px;
  left: 50%;
  background: linear-gradient(90deg, #980BF4, #0F64F7);
  border-radius: 2px;
  animation: lineExpand 2s ease-out forwards;
  transform: translateX(-50%);
}

@keyframes lineExpand {
  to {
    width: 100%;
  }
}

#comunidade .lead {
  color: #495057;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

#comunidade .btn-primary {
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

#comunidade .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.3);
}

/* ====================================
   FOOTER MODERNO - VERSÃO ATUALIZADA
   ==================================== */

.footer-modern {
  background: linear-gradient(180deg, 
    #d0d0d8 0%,
    #a0a0b0 3%,
    #707080 8%,
    #3a3a4a 15%,
    #1a1a2e 25%,
    #0d0d1a 50%,
    #0a0a0a 100%
  );
  color: #e2e8f0;
}

@keyframes floatGeometric {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-30px) rotate(75deg);
  }
}

/* Partículas Flutuantes */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(152, 11, 244, 0.6);
  border-radius: 50%;
  animation: floatParticle 6s infinite linear;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 80%; animation-delay: 1.2s; }
.particle-3 { top: 70%; left: 30%; animation-delay: 2.4s; }
.particle-4 { top: 50%; left: 60%; animation-delay: 3.6s; }
.particle-5 { top: 80%; left: 90%; animation-delay: 4.8s; }

@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(0);
    opacity: 0;
  }
}

.community-section-creative .container {
  position: relative;
  z-index: 1;
}

/* Header da Seção com Impacto Visual */
.community-header-creative {
  text-align: center;
  margin-bottom: 80px;
}

.creative-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.eyebrow-particle {
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

.eyebrow-text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 1; }
}

.community-main-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 40px;
  text-align: center;
}

.title-part-1 {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 3rem;
}

.title-part-2 {
  display: block;
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  font-size: 4.5rem;
  margin: 10px 0;
}

.title-part-3 {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  font-weight: 600;
}

.community-intro-banner {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 40px;
  margin: 0 auto;
  max-width: 700px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.intro-decoration {
  color: #2BC8EA;
  font-size: 1.5rem;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.intro-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Grid de Features com Design Inovador */
.community-features-grid {
  margin-bottom: 80px;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-creative {
  height: 300px;
  perspective: 1000px;
  cursor: pointer;
}

.feature-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.feature-card-creative:hover .feature-card-inner {
  transform: rotateY(180deg);
}

.feature-front,
.feature-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.feature-front {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-back {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  transform: rotateY(180deg);
  position: relative;
  overflow: hidden;
}

.feature-icon-creative {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.feature-title {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature-hover-indicator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: bounceHorizontal 2s infinite ease-in-out;
}

@keyframes bounceHorizontal {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.feature-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  z-index: 2;
  position: relative;
}

.feature-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* CTA Section com Design Impactante */
.community-cta-creative {
  text-align: center;
}

.cta-creative-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.cta-visual-elements {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(152, 11, 244, 0.3);
  animation: expandContract 4s infinite ease-in-out;
}

.cta-circle-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.cta-circle-2 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 1.5s;
}

.cta-circle-3 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
  animation-delay: 3s;
}

@keyframes expandContract {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.cta-magnetic-field {
  display: inline-block;
  position: relative;
}

.btn-community-creative {
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  background-size: 200% 200%;
  color: white;
  padding: 20px 50px;
  border-radius: 60px;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(152, 11, 244, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  animation: gradientShift 3s ease infinite;
}

.btn-community-creative:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(152, 11, 244, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-text {
  position: relative;
  z-index: 3;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-community-creative:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(-45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-community-creative:hover .btn-glow {
  transform: rotate(-45deg) translateX(100%);
}

.cta-stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.stat-separator {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(152, 11, 244, 0.5), transparent);
}

/* Responsividade */
@media (max-width: 768px) {
  .community-main-title {
    font-size: 2.5rem;
  }
  
  .title-part-1 {
    font-size: 2rem;
  }
  
  .title-part-2 {
    font-size: 3rem;
  }
  
  .title-part-3 {
    font-size: 1.8rem;
  }
  
  .community-intro-banner {
    flex-direction: column;
    padding: 25px 20px;
  }
  
  .features-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .btn-community-creative {
    padding: 16px 35px;
    font-size: 1.1rem;
  }
  
  .cta-stats-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-separator {
    width: 40px;
    height: 2px;
  }
}

.card-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

/* Círculo Central */
.community-circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 1;
}

.circle-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border: 3px solid rgba(152, 11, 244, 0.3);
  border-radius: 50%;
  animation: pulsate 3s infinite;
}

.circle-pulse.delay-1 {
  animation-delay: 1s;
}

.circle-pulse.delay-2 {
  animation-delay: 2s;
}

@keyframes pulsate {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.circle-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.4);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.circle-content i {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.circle-content span {
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

/* Linhas de Conexão */
.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

/* Responsividade */
@media (max-width: 992px) {
  .community-section-index {
    padding: 80px 0;
  }
  
  .community-title {
    font-size: 2.5rem;
  }
  
  .community-visual-wrapper {
    height: 400px;
    margin-top: 60px;
  }
  
  .community-circle-center {
    width: 150px;
    height: 150px;
  }
  
  .circle-content {
    width: 120px;
    height: 120px;
  }
  
  .circle-content i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .community-section-index {
    padding: 60px 0;
  }
  
  .community-title {
    font-size: 2rem;
  }
  
  .community-description {
    font-size: 1.05rem;
  }
  
  .community-visual-wrapper {
    display: none;
  }
  
  .community-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-community-join {
    width: 100%;
    justify-content: center;
  }
  
  .community-free-badge {
    width: 100%;
    justify-content: center;
  }
  
  .feature-item-community {
    padding: 15px;
  }

}

/* ====================================
   FOOTER MODERNO - VERSÃO ATUALIZADA
   ==================================== */

.footer-modern {
  background: linear-gradient(180deg, 
    #d0d0d8 0%,
    #a0a0b0 3%,
    #707080 8%,
    #3a3a4a 15%,
    #1a1a2e 25%,
    #0d0d1a 50%,
    #0a0a0a 100%
  );
  color: #e2e8f0;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(152, 11, 244, 0.6) 20%,
    rgba(15, 100, 247, 0.6) 50%,
    rgba(43, 200, 234, 0.6) 80%,
    transparent 100%
  );
  opacity: 0.7;
}

/* Logo do Footer */
.footer-modern .footer-logo {
  height: 70px;
  filter: brightness(1.2);
  transition: transform 0.3s ease;
}

.footer-modern .footer-logo:hover {
  transform: scale(1.05);
}

/* Descrição */
.footer-modern .footer-description {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 350px;
}

/* Redes Sociais */
.footer-modern .footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-modern .footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.2), rgba(15, 100, 247, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  font-size: 1.3rem;
  text-decoration: none;
  border: 1px solid rgba(152, 11, 244, 0.3);
  transition: all 0.3s ease;
}

.footer-modern .footer-social a:hover {
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(152, 11, 244, 0.4);
}

/* Títulos das Colunas */
.footer-modern .footer-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-modern .footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #980BF4, #0F64F7);
  border-radius: 2px;
}

/* Links do Footer */
.footer-modern .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern .footer-links li {
  margin-bottom: 12px;
}

.footer-modern .footer-links a {
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-modern .footer-links a::before {
  content: '›';
  color: #980BF4;
  font-weight: bold;
  margin-right: 5px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.footer-modern .footer-links a:hover {
  color: #2BC8EA;
  transform: translateX(5px);
}

.footer-modern .footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Informações de Contato */
.footer-modern .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern .footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-modern .footer-contact i {
  font-size: 1.2rem;
  color: #980BF4;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-modern .footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-modern .footer-contact a:hover {
  color: #2BC8EA;
}

/* Separador */
.footer-modern .footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(152, 11, 244, 0.3) 20%,
    rgba(15, 100, 247, 0.3) 50%,
    rgba(43, 200, 234, 0.3) 80%,
    transparent 100%
  );
  border: none;
  margin: 0;
  opacity: 0.5;
}

/* Copyright */
.footer-modern .footer-copyright {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-modern .footer-copyright strong {
  color: #e2e8f0;
  font-weight: 700;
  background: linear-gradient(90deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-modern .footer-credits {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-modern .footer-credits i {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  10%, 30% {
    transform: scale(1.2);
  }
  20%, 40% {
    transform: scale(1);
  }
}

/* Responsividade do Footer */
@media (max-width: 992px) {
  .footer-modern {
    margin-top: 60px;
  }
  
  .footer-modern .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-modern {
    margin-top: 40px;
  }
  
  .footer-modern .footer-logo {
    height: 60px;
  }
  
  .footer-modern .footer-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .footer-modern .footer-social {
    justify-content: flex-start;
  }
  
  .footer-modern .footer-copyright,
  .footer-modern .footer-credits {
    font-size: 0.85rem;
  }
}

/* ====================================
   SEÇÃO PARCEIROS - DESIGN ULTRA MODERNO E CRIATIVO
   ==================================== */

.partners-section-ultra {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, 
    #ffffff 0%,
    #f8f9fb 2%,
    #e8ebf2 5%,
    #d4d8e4 10%,
    #a8afc8 18%,
    #7d86a8 25%,
    #525b7f 32%,
    #2d3555 40%,
    #1a1e3a 50%,
    #12152b 60%,
    #0d1021 70%,
    #1a1e35 80%,
    #2a3050 88%,
    #4a5278 94%,
    #8890b0 98%,
    #c5c9d8 100%
  );
  margin-top: -1px;
  margin-bottom: -1px;
}

/* Mesh Gradient Background Ultra Moderno */
.partners-mesh-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.mesh-gradient {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(152, 11, 244, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(15, 100, 247, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 40% 70%, rgba(43, 200, 234, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(152, 11, 244, 0.15) 0%, transparent 40%);
  animation: meshRotate 30s linear infinite;
  filter: blur(60px);
}

@keyframes meshRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Formas Flutuantes */
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(40px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  top: 10%;
  left: 5%;
  animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #0F64F7, #2BC8EA);
  top: 50%;
  right: 10%;
  animation: floatShape2 25s ease-in-out infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #2BC8EA, #980BF4);
  bottom: 15%;
  left: 15%;
  animation: floatShape3 22s ease-in-out infinite;
}

.shape-4 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  bottom: 30%;
  right: 20%;
  animation: floatShape4 28s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

@keyframes floatShape2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 50px) scale(1.15); }
}

@keyframes floatShape3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, -50px) scale(1.05); }
  66% { transform: translate(40px, 20px) scale(0.95); }
}

@keyframes floatShape4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -60px) scale(1.2); }
}

.partners-section-ultra .container {
  position: relative;
  z-index: 1;
}

/* Header Ultra Premium */
.partners-hero-header {
  text-align: center;
  margin-bottom: 90px;
  position: relative;
}

.header-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(152, 11, 244, 0.3) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.partners-label-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  padding: 14px 32px;
  border-radius: 50px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(152, 11, 244, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.partners-label-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50px;
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.label-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(152, 11, 244, 0.4);
}

.label-text {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.label-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: labelShine 3s infinite;
}

@keyframes labelShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

.partners-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 1;
}

.title-line {
  display: block;
  color: #ffffff;
  text-shadow: 
    0 0 40px rgba(152, 11, 244, 0.8),
    0 0 80px rgba(15, 100, 247, 0.6),
    0 4px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -1px;
}

.title-highlight {
  display: block;
  font-size: 5rem;
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 40%, #2BC8EA 80%, #980BF4 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
  filter: drop-shadow(0 8px 30px rgba(152, 11, 244, 0.6));
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.partners-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Showcase de Parceiros - Grid Premium */
.partners-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* Card Premium Individual */
.partner-card {
  position: relative;
  min-height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  padding: 40px 35px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(152, 11, 244, 0.3),
    rgba(15, 100, 247, 0.3),
    rgba(43, 200, 234, 0.3)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.partner-card:hover {
  transform: translateY(-15px) scale(1.02);
  background: linear-gradient(135deg, 
    rgba(232, 221, 255, 0.98) 0%,
    rgba(226, 240, 255, 0.98) 50%,
    rgba(220, 252, 255, 0.98) 100%
  );
  border-color: rgba(152, 11, 244, 0.5);
  box-shadow: 
    0 30px 80px rgba(152, 11, 244, 0.5),
    0 15px 40px rgba(15, 100, 247, 0.3),
    0 5px 20px rgba(43, 200, 234, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-block-inner {
  background: rgba(20, 20, 35, 0.7);
  border: 2px solid rgba(152, 11, 244, 0.2);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.partner-block-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(152, 11, 244, 0.15) 0%, 
    rgba(15, 100, 247, 0.15) 50%,
    rgba(43, 200, 234, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-block:hover .partner-block-inner {
  transform: translateY(-10px);
  border-color: rgba(152, 11, 244, 0.8);
  box-shadow: 0 25px 60px rgba(152, 11, 244, 0.4);
  background: rgba(240, 242, 245, 0.95);
}

.partner-block:hover .partner-block-inner::before {
  opacity: 1;
}

/* Label da Categoria */
.block-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.block-label i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.block-label span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
}

.partner-block:hover .block-label {
  border-bottom-color: rgba(152, 11, 244, 0.3);
}

.partner-block:hover .block-label span {
  color: #1a202c;
}

.partner-block:hover .block-label i {
  transform: rotate(5deg) scale(1.1);
}

/* Área da Logo */
.block-logo-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  min-height: 180px;
}

.block-logo-area img {
  max-width: 85%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) !important;
  transition: all 0.4s ease;
}

/* Logo Empreender em tamanho especial (5x maior) */
.block-logo-area img.logo-empreender-large {
  max-width: 100% !important;
  max-height: 480px !important;
  transform: scale(2.5) !important;
}

/* Hover effect para todas as logos */
.partner-block:hover .block-logo-area img {
  transform: scale(1.08);
  filter: none !important;
}

/* Hover effect específico para logo Empreender */
.partner-block:hover .block-logo-area img.logo-empreender-large {
  transform: scale(2.8) !important;
  filter: none !important;
}

/* Placeholder */
.partner-placeholder .block-logo-area {
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.placeholder-area {
  background: rgba(152, 11, 244, 0.05);
  border: 2px dashed rgba(152, 11, 244, 0.3);
  border-radius: 15px;
}

.placeholder-area i {
  font-size: 4rem;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  opacity: 0.9;
}

.placeholder-area p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.placeholder-area .coming-soon {
  display: inline-block;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.25), rgba(43, 200, 234, 0.25));
  color: #2BC8EA;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(152, 11, 244, 0.4);
}

/* Divider Decorativo */
.partners-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(152, 11, 244, 0.5) 50%, 
    transparent 100%
  );
}

.divider-text {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* Responsividade */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .partners-section-modern {
    padding: 90px 0;
  }
  
  .partners-title {
    font-size: 2.5rem;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .partner-block {
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .partners-section-modern {
    padding: 70px 0;
  }
  
  .partners-header {
    margin-bottom: 50px;
  }
  
  .partners-title {
    font-size: 2rem;
  }
  
  .partners-grid {
    gap: 25px;
  }
  
  .partner-block-inner {
    padding: 30px 25px;
  }
  
  .block-logo-area {
    padding: 20px;
  }
  
  .block-logo-area img {
    max-height: 80px;
  }
  
  .placeholder-area i {
    font-size: 2.5rem;
  }
  
  .partners-divider {
    margin-top: 40px;
  }
  
  .divider-text {
    font-size: 0.75rem;
  }
}

/* ====================================
   CSS ADICIONAL PARA CARDS PREMIUM
   ==================================== */

/* Efeitos de Brilho e Shine */
.card-shine {
  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.6s ease;
  z-index: 10;
  pointer-events: none;
}

.partner-card:hover .card-shine {
  left: 100%;
}

.card-glow-effect {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(152, 11, 244, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  filter: blur(40px);
}

.partner-card:hover .card-glow-effect {
  opacity: 1;
}

/* Header Tag do Card */
.card-header-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.tag-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.3);
  transition: all 0.4s ease;
}

.partner-card:hover .tag-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.5);
}

.tag-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
}

.partner-card:hover .tag-text {
  color: #1a202c;
}

/* Container da Logo */
.card-logo-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(152, 11, 244, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.partner-card:hover .logo-glow {
  opacity: 1;
}

.partner-logo-premium {
  max-width: 90%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.partner-card:hover .partner-logo-premium {
  filter: none;
  transform: scale(1.1);
}

/* Card Featured (Realização) - Logo Maior */
.partner-featured .partner-logo-premium {
  max-height: 240px;
  transform: scale(1.2);
}

.partner-featured:hover .partner-logo-premium {
  transform: scale(1.3);
}

/* Texto de hover no card do Empreender 40+ */
.card-hover-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.95), rgba(43, 200, 234, 0.95));
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.partner-card:hover .card-hover-text {
  opacity: 1;
  bottom: 30px;
}

/* Footer Accent */
.card-footer-accent {
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(152, 11, 244, 0.5) 20%,
    rgba(15, 100, 247, 0.5) 50%,
    rgba(43, 200, 234, 0.5) 80%,
    transparent 100%
  );
  border-radius: 0 0 28px 28px;
  margin: -35px -33px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.partner-card:hover .card-footer-accent {
  opacity: 1;
}

/* Coming Soon Content */
.coming-soon-content {
  flex-direction: column;
  gap: 20px;
}

.coming-soon-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.15), rgba(43, 200, 234, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #2BC8EA;
  margin-bottom: 10px;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.coming-soon-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.4;
  transition: all 0.4s ease;
}

.partner-card:hover .coming-soon-content h4 {
  color: #1a202c;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.2), rgba(43, 200, 234, 0.2));
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(152, 11, 244, 0.3);
  position: relative;
  overflow: hidden;
}

.badge-pulse {
  width: 10px;
  height: 10px;
  background: #2BC8EA;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #2BC8EA;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2BC8EA;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer CTA Decorativo */
.partners-footer-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.cta-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(152, 11, 244, 0.5) 50%,
    transparent 100%
  );
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}

.cta-content i {
  font-size: 1.5rem;
  color: #980BF4;
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.2); }
  20%, 40% { transform: scale(1); }
}

/* Responsividade */
@media (max-width: 1200px) {
  .partners-showcase {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .partners-section-ultra {
    padding: 100px 0 80px;
  }
  
  .partners-hero-title {
    font-size: 3.5rem;
  }
  
  .title-highlight {
    font-size: 4rem;
  }
  
  .partners-showcase {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .partner-card {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .partners-section-ultra {
    padding: 80px 0 60px;
  }
  
  .partners-hero-header {
    margin-bottom: 60px;
  }
  
  .partners-hero-title {
    font-size: 2.5rem;
  }
  
  .title-highlight {
    font-size: 3rem;
  }
  
  .partners-hero-subtitle {
    font-size: 1rem;
  }
  
  .partner-card {
    padding: 30px 25px;
    min-height: 320px;
  }
  
  .partner-logo-premium {
    max-height: 140px;
  }
  
  .partner-featured .partner-logo-premium {
    max-height: 180px;
  }
  
  .cta-content {
    font-size: 0.95rem;
  }
}

/* ===================================================================
   ESTILOS DA PÁGINA SOBRE (sobre.html)
   =================================================================== */

/* Hero Section da Página Sobre */
.about-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0015 0%, #1a0530 50%, #0f1a3d 100%);
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(152, 11, 244, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(15, 100, 247, 0.15) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

.about-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.3), rgba(43, 200, 234, 0.3));
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.particle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.particle-3 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 50%;
  animation-delay: 10s;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.2), rgba(43, 200, 234, 0.2));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(152, 11, 244, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: shimmer 3s infinite;
}

.about-hero-badge i {
  color: #2BC8EA;
  font-size: 1.1rem;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.title-normal {
  color: #fff;
}

.title-gradient {
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

.about-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.about-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-hero-stats .stat-item {
  text-align: center;
}

.about-hero-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-hero-stats .stat-label {
  font-size: 0.95rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Visual Circle Animation */
.about-hero-visual {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}

.circle-outer {
  width: 400px;
  height: 400px;
  border-color: rgba(152, 11, 244, 0.3);
  animation: rotate 20s linear infinite;
}

.circle-middle {
  width: 300px;
  height: 300px;
  border-color: rgba(15, 100, 247, 0.4);
  animation: rotate 15s linear infinite reverse;
}

.circle-inner {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.2), rgba(43, 200, 234, 0.2));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(43, 200, 234, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: pulsate 3s ease-in-out infinite;
}

.circle-content {
  text-align: center;
  color: #fff;
}

.circle-content i {
  font-size: 3rem;
  color: #2BC8EA;
  margin-bottom: 1rem;
  display: block;
}

.circle-content span {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Nossa História Section */
.about-story {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.section-badge-about {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(43, 200, 234, 0.1));
  border: 1px solid rgba(152, 11, 244, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: #980BF4;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #980BF4, #0F64F7, #2BC8EA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(152, 11, 244, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(152, 11, 244, 0.15);
}

.story-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.story-icon i {
  font-size: 2rem;
  color: #fff;
}

.story-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.story-card p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-card p strong {
  color: #980BF4;
  font-weight: 700;
}

/* Pilares Section */
.about-pillars {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0015 0%, #1a0530 50%, #0f1a3d 100%);
  position: relative;
  overflow: hidden;
}

.pillars-bg-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.decoration-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: #980BF4;
  top: -200px;
  left: -200px;
}

.shape-2 {
  width: 600px;
  height: 600px;
  background: #2BC8EA;
  bottom: -250px;
  right: -250px;
}

.section-subtitle-about {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.pillar-card {
  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: 25px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pillar-card:hover {
  transform: translateY(-15px);
  border-color: rgba(152, 11, 244, 0.5);
  box-shadow: 0 25px 70px rgba(152, 11, 244, 0.3);
}

.pillar-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.3), rgba(43, 200, 234, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar-icon i {
  font-size: 2.5rem;
  color: #fff;
}

.pillar-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.pillar-card p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.pillar-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #980BF4, #2BC8EA);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pillar-card:hover .pillar-accent {
  transform: scaleX(1);
}

/* Ecossistema Section */
.about-ecosystem {
  padding: 100px 0;
  background: #fff;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ecosystem-item {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 1px solid rgba(152, 11, 244, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.ecosystem-item:hover {
  transform: translateY(-10px);
  border-color: rgba(152, 11, 244, 0.3);
  box-shadow: 0 20px 50px rgba(152, 11, 244, 0.15);
}

.eco-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.eco-icon i {
  font-size: 2rem;
  color: #fff;
}

.ecosystem-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.8rem;
}

.ecosystem-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* CTA Final Section */
.about-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0015 0%, #1a0530 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(152, 11, 244, 0.2) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(43, 200, 234, 0.15) 0%, transparent 50%);
}

.cta-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: pulsate 3s ease-in-out infinite;
}

.cta-icon-large i {
  font-size: 3rem;
  color: #fff;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #980BF4, #2BC8EA);
  color: #fff;
  border: none;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.4);
  color: #fff;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: #fff;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.cta-trust i {
  color: #2BC8EA;
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2rem;
  }
  
  .about-hero-description {
    font-size: 1rem;
  }
  
  .about-hero-stats {
    gap: 1.5rem;
  }
  
  .about-hero-stats .stat-number {
    font-size: 2rem;
  }
  
  .circle-outer {
    width: 300px;
    height: 300px;
  }
  
  .circle-middle {
    width: 220px;
    height: 220px;
  }
  
  .circle-inner {
    width: 150px;
    height: 150px;
  }
  
  .section-title-about {
    font-size: 1.8rem;
  }
  
  .story-card,
  .pillar-card {
    padding: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   ABOUT HERO SECTION - REDESIGNED
   ======================================== */

.about-hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  overflow: hidden;
  padding: 120px 0;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(152, 11, 244, 0.1) 0%, rgba(15, 100, 247, 0.1) 50%, rgba(43, 200, 234, 0.1) 100%);
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% { opacity: 0.1; }
  100% { opacity: 0.3; }
}

.floating-elements-about {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(152, 11, 244, 0.2), rgba(43, 200, 234, 0.2));
  animation: floatUpDown 6s ease-in-out infinite;
}

.float-element.element-1 {
  top: 10%;
  left: 10%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.float-element.element-2 {
  top: 20%;
  right: 15%;
  width: 120px;
  height: 120px;
  animation-delay: 2s;
}

.float-element.element-3 {
  bottom: 30%;
  left: 5%;
  width: 60px;
  height: 60px;
  animation-delay: 4s;
}

.float-element.element-4 {
  bottom: 15%;
  right: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 1s;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Header */
.about-hero-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 100px;
}

.hero-badge-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 30px;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
}

.title-line-1,
.title-line-2 {
  display: block;
  color: #fff;
}

.title-highlight-gradient {
  display: block;
  background: linear-gradient(45deg, #980BF4, #2BC8EA, #0F64F7);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 4s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Benefits Grid */
.about-benefits-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 120px;
}

.benefit-card-premium {
  position: relative;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

.benefit-card-premium:hover {
  transform: translateY(-10px);
  border-color: rgba(152, 11, 244, 0.5);
  box-shadow: 0 20px 40px rgba(152, 11, 244, 0.2);
}

.card-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(152, 11, 244, 0.1), rgba(43, 200, 234, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card-premium:hover .card-glow-effect {
  opacity: 1;
}

.benefit-icon-premium {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}

.benefit-card-premium h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.benefit-card-premium p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Main Content */
.about-main-content {
  position: relative;
  z-index: 10;
  margin-bottom: 120px;
}

.content-text-area {
  padding-right: 40px;
}

.content-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-description {
  margin-bottom: 40px;
}

.lead-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 20px;
}

.content-description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cta-premium-wrapper {
  margin-top: 40px;
}

.btn-premium-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(152, 11, 244, 0.3);
}

.btn-premium-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.4);
  color: #fff;
}

.btn-sparkle {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: sparkle 2.5s infinite;
}

@keyframes sparkle {
  0% { left: -100%; }
  100% { left: 100%; }
}

.cta-note {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Statistics Container */
.statistics-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}

/* Statistics Blocks */
.stat-block {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateZ(0);
}

.stat-block:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 60px rgba(152, 11, 244, 0.2);
}

.stat-block-primary {
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.05));
}

.stat-block-secondary {
  background: linear-gradient(135deg, rgba(15, 100, 247, 0.1), rgba(43, 200, 234, 0.05));
}

/* Stat Decoration */
.stat-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.stat-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(152, 11, 244, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.stat-block-secondary .stat-glow-effect {
  background: radial-gradient(circle, rgba(43, 200, 234, 0.1) 0%, transparent 70%);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Particles */
.stat-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  right: 30%;
  animation-delay: 2s;
}

.particle-3 {
  bottom: 30%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Stat Content */
.stat-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(152, 11, 244, 0.3);
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stat-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.stat-source {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-weight: 500;
}

/* Stat Icon */
.stat-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.stat-block:hover .stat-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .statistics-container {
    gap: 30px;
    padding: 10px;
  }
  
  .stat-block {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .stat-unit {
    font-size: 1.2rem;
  }
  
  .stat-highlight {
    font-size: 1rem;
  }
  
  .stat-source {
    font-size: 0.8rem;
  }
}

/* Ecosystem Section */
.ecosystem-section {
  position: relative;
  z-index: 10;
  margin-bottom: 120px;
}

.ecosystem-header {
  text-align: center;
  margin-bottom: 80px;
}

.ecosystem-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.ecosystem-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.ecosystem-item {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
}

.ecosystem-item:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 200, 234, 0.5);
}

.ecosystem-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(45deg, #2BC8EA, #0F64F7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}

.ecosystem-item h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}

.ecosystem-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Video Section Premium */
.video-section-premium {
  position: relative;
  z-index: 10;
}

.video-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.video-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.video-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.video-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  color: #fff;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-player-premium {
  position: relative;
}

.video-frame-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-frame-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.video-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-frame-wrapper:hover .video-overlay-premium {
  opacity: 1;
}

.play-button-premium {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.play-button-premium:hover {
  transform: scale(1.1);
}

.video-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(152, 11, 244, 0.3), rgba(43, 200, 234, 0.3));
  animation: orbFloat 4s ease-in-out infinite;
}

.orb-1 {
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
}

.orb-2 {
  bottom: -15px;
  left: -15px;
  width: 30px;
  height: 30px;
  animation-delay: 1s;
}

.orb-3 {
  top: 50%;
  right: -25px;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
  .about-hero-title {
    font-size: 3.5rem;
  }
  
  .content-main-title {
    font-size: 2.5rem;
  }
  
  .content-text-area {
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .about-hero-title {
    font-size: 3rem;
  }
  
  .video-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .video-text-area {
    text-align: center;
  }
  
  .ecosystem-title,
  .video-section-title {
    font-size: 2rem;
  }
  
  .orbital-item {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 80px 0 60px;
  }
  
  .about-hero-header {
    padding: 0 20px;
    margin-bottom: 50px;
  }
  
  .hero-badge-premium {
    font-size: 0.85rem;
    padding: 8px 18px;
    margin-bottom: 25px;
  }
  
  .about-hero-title {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  
  .title-line-1,
  .title-line-2 {
    display: block;
    margin-bottom: 8px;
  }
  
  .title-highlight-gradient {
    display: block;
    font-size: 2.3rem;
    margin: 10px 0;
    word-break: break-word;
    hyphens: auto;
  }
  
  .about-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  .content-main-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .about-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
    padding: 0 20px;
  }
  
  .benefit-card-premium {
    padding: 30px 24px;
  }
  
  .benefit-icon-premium {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .benefit-card-premium h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .benefit-card-premium p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-main-content {
    padding: 0 20px;
    margin-bottom: 60px;
  }
  
  .content-text-area {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .lead-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  
  .content-description p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  .cta-premium-wrapper {
    margin-top: 35px;
  }
  
  .btn-premium-action {
    padding: 18px 32px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .statistics-container {
    padding: 0;
  }
  
  .stat-block {
    margin-bottom: 25px;
    padding: 30px 24px;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .stat-unit {
    font-size: 1.3rem;
  }
  
  .stat-description {
    margin-top: 18px;
  }
  
  .stat-highlight {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .stat-source {
    font-size: 0.85rem;
    margin-top: 10px;
  }
  
  .visual-elements-container {
    height: 300px;
  }
  
  .ecosystem-section {
    padding: 0 20px;
    margin-bottom: 60px;
  }
  
  .ecosystem-header {
    margin-bottom: 40px;
  }
  
  .ecosystem-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .ecosystem-subtitle {
    font-size: 1rem;
  }
  
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ecosystem-item {
    padding: 30px 24px;
  }
  
  .ecosystem-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  
  .ecosystem-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .ecosystem-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .video-section-premium {
    padding: 0 20px;
    margin-top: 60px;
  }
  
  .video-content-wrapper {
    flex-direction: column;
  }
  
  .video-text-area {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .video-section-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  
  .video-description {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }
  
  .video-stats {
    justify-content: center;
    margin-top: 20px;
  }
  
  .video-frame-wrapper {
    border-radius: 16px;
  }
  
  .video-frame-wrapper iframe {
    min-height: 220px;
    border-radius: 14px;
  }
}

@media (max-width: 576px) {
  .about-hero-section {
    padding: 70px 0 50px;
  }
  
  .about-hero-header {
    padding: 0 15px;
    margin-bottom: 40px;
  }
  
  .about-hero-title {
    font-size: 1.95rem;
    line-height: 1.35;
  }
  
  .title-highlight-gradient {
    font-size: 1.95rem;
  }
  
  .about-hero-subtitle {
    font-size: 1rem;
    padding: 0 5px;
  }
  
  .content-main-title {
    font-size: 1.75rem;
  }
  
  .about-benefits-grid {
    padding: 0 15px;
    gap: 18px;
    margin-bottom: 50px;
  }
  
  .benefit-card-premium {
    padding: 25px 20px;
  }
  
  .benefit-icon-premium {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  .benefit-card-premium h3 {
    font-size: 1.2rem;
  }
  
  .benefit-card-premium p {
    font-size: 0.95rem;
  }
  
  .about-main-content {
    padding: 0 15px;
    margin-bottom: 50px;
  }
  
  .content-text-area {
    margin-bottom: 40px;
  }
  
  .lead-text {
    font-size: 1.05rem;
  }
  
  .content-description p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  
  .btn-premium-action {
    padding: 16px 28px;
    font-size: 0.95rem;
  }
  
  .stat-block {
    padding: 25px 20px;
    margin-bottom: 20px;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-unit {
    font-size: 1.2rem;
  }
  
  .stat-highlight {
    font-size: 0.95rem;
  }
  
  .stat-source {
    font-size: 0.8rem;
  }
  
  .central-visual-circle {
    width: 150px;
    height: 150px;
  }
  
  .central-icon {
    font-size: 3rem;
  }
  
  .ecosystem-section {
    padding: 0 15px;
    margin-bottom: 50px;
  }
  
  .ecosystem-title {
    font-size: 1.6rem;
  }
  
  .ecosystem-subtitle {
    font-size: 0.95rem;
  }
  
  .ecosystem-grid {
    gap: 18px;
  }
  
  .ecosystem-item {
    padding: 25px 20px;
  }
  
  .ecosystem-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .ecosystem-item h4 {
    font-size: 1.15rem;
  }
  
  .ecosystem-item p {
    font-size: 0.9rem;
  }
  
  .video-section-premium {
    padding: 0 15px;
    margin-top: 50px;
  }
  
  .video-text-area {
    margin-bottom: 35px;
  }
  
  .video-section-title {
    font-size: 1.6rem;
  }
  
  .video-description {
    font-size: 0.95rem;
    padding: 0 5px;
  }
  
  .video-frame-wrapper iframe {
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  
  .title-highlight-gradient {
    font-size: 1.75rem;
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
  }
  
  .about-hero-subtitle {
    font-size: 0.95rem;
  }
  
  .content-main-title {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .ecosystem-title {
    font-size: 1.5rem;
  }
  
  .video-section-title {
    font-size: 1.5rem;
  }
}

/* ========================================
   SUPPORTERS CORPORATE SECTION
   ======================================== */

.supporters-corporate-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  overflow: hidden;
}

/* Container simplificado */
.supporters-corporate-section .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.corporate-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.bg-pattern-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(152, 11, 244, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(152, 11, 244, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.gradient-overlay-corporate {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(152, 11, 244, 0.02), rgba(43, 200, 234, 0.02));
}

/* Header simplificado */
.corporate-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 60px;
}

.header-eyebrow {
  display: inline-block;
  background: rgba(152, 11, 244, 0.1);
  color: #980BF4;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(152, 11, 244, 0.2);
}

.eyebrow-line {
  display: none; /* Remover linhas decorativas para simplicidade */
}

.corporate-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.title-primary {
  display: block;
  color: #334155;
}

.title-accent {
  display: block;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.corporate-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Supporters Grid */
.supporters-grid-premium {
  position: relative;
  z-index: 10;
}

/* Horizontal Grid Layout */
.supporters-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Melhorias de acessibilidade e touch para mobile */
.supporter-card-executive {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.supporter-card-executive:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.15);
  border-color: rgba(152, 11, 244, 0.3);
}

.supporter-card-executive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #980BF4, #2BC8EA);
}

.supporter-tier-section {
  margin-bottom: 80px;
}

.tier-header {
  text-align: center;
  margin-bottom: 50px;
}

.tier-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tier-description {
  font-size: 1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

.tier-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Tier Label for Horizontal Layout */
.tier-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(152, 11, 244, 0.3);
}

/* Executive Cards */
.supporter-card-executive {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1e 100%);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(152, 11, 244, 0.2);
  max-width: 500px;
  width: 100%;
  min-height: 550px;
}

.supporter-card-executive:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(152, 11, 244, 0.4);
  border-color: rgba(152, 11, 244, 0.6);
}

.card-frame {
  position: relative;
  z-index: 2;
}

.logo-container-exec {
  text-align: center;
  margin-bottom: 25px;
  background: #f8fafc;
  padding: 25px 15px;
  border-radius: 16px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.supporter-logo-main {
  height: 240px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1);
  transition: all 0.3s ease;
  /* Garantir que a imagem seja responsiva */
  display: block;
  margin: 0 auto;
}

.supporter-logo {
  height: 180px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1);
  transition: all 0.3s ease;
  /* Garantir que a imagem seja responsiva */
  display: block;
  margin: 0 auto;
}

.supporter-info {
  text-align: center;
}

.supporter-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.supporter-role {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
}

.supporter-badge {
  display: inline-block;
}

.badge-premium {
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-media {
  background: linear-gradient(45deg, #0F64F7, #2BC8EA);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-pending {
  background: #f1f5f9;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.card-highlight-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.supporter-card-executive:hover .card-highlight-border {
  opacity: 1;
}

.card-highlight-border::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f1e 100%);
  border-radius: 14px;
  z-index: -1;
}

/* Card especial para organizador principal */
.main-organizer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  border: 2px solid #980BF4;
}

.main-organizer .supporter-name,
.main-organizer .supporter-role {
  color: white;
}

.main-organizer .logo-container-exec {
  background: rgba(255, 255, 255, 0.1);
}

/* Card institucional pendente */
.institutional-pending {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
}

.institutional-pending .supporter-name,
.institutional-pending .supporter-role {
  color: #1e293b;
}

.institutional-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
}

.institutional-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.institutional-info {
  text-align: center;
}

.institution-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.institution-status {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.pending-border {
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  opacity: 0.7;
}

/* Partners Call Section */
.partners-call-section {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #ffffff;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.partners-call-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(152, 11, 244, 0.1), rgba(43, 200, 234, 0.1));
  pointer-events: none;
}

.call-content {
  position: relative;
  z-index: 2;
}

.call-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: #ffffff;
}

.call-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.call-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.call-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.benefit-item-partner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.benefit-item-partner i {
  color: #2BC8EA;
  font-size: 1.1rem;
}

.btn-partnership {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.3);
}

.btn-partnership:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.4);
  color: #ffffff;
}

/* Supporters Footer */
.supporters-footer {
  position: relative;
  z-index: 10;
  margin-top: 80px;
}

.footer-divider-corporate {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #980BF4, #2BC8EA);
  margin: 0 auto 40px;
  border-radius: 2px;
}

.footer-message {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.message-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #980BF4, #2BC8EA);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
}

.message-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.message-text strong {
  color: #1e293b;
}

/* ===== RESPONSIVE DESIGN REFATORADO ===== */
@media (max-width: 768px) {
  .supporters-corporate-section {
    padding: 60px 0;
    overflow-x: hidden;
  }
  
  .supporters-corporate-section .container {
    padding: 0 15px;
  }
  
  .corporate-header {
    margin-bottom: 40px;
  }
  
  .header-eyebrow {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 20px;
  }
  
  .corporate-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .corporate-subtitle {
    font-size: 0.9rem;
  }
  
  .supporters-horizontal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .supporter-card-executive {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .tier-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 15px;
  }
  
  .logo-container-exec {
    padding: 20px 15px;
    min-height: 120px;
  }
  
  .supporter-logo-main,
  .supporter-logo {
    max-height: 80px;
  }
  
  .supporter-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .supporter-role {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .badge-premium,
  .badge-media,
  .badge-pending {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .institutional-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .institution-name {
    font-size: 1rem;
  }
  
  .institution-status {
    font-size: 0.8rem;
  }
  
  .supporters-footer {
    margin-top: 40px;
  }
  
  .footer-message {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .message-icon {
    margin: 0 auto;
  }
  
  .message-text {
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .supporters-corporate-section {
    padding: 40px 0;
  }
  
  .supporters-corporate-section .container {
    padding: 0 10px;
  }
  
  .corporate-header {
    margin-bottom: 30px;
  }
  
  .corporate-title {
    font-size: 1.6rem;
  }
  
  .corporate-subtitle {
    font-size: 0.85rem;
  }
  
  .supporters-horizontal-grid {
    gap: 15px;
  }
  
  .supporter-card-executive {
    padding: 20px 15px;
    border-radius: 12px;
  }
  
  .tier-label {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  
  .logo-container-exec {
    padding: 15px 10px;
    min-height: 100px;
  }
  
  .supporter-logo-main,
  .supporter-logo {
    max-height: 60px;
  }
  
  .supporter-name {
    font-size: 1rem;
  }
  
  .supporter-role {
    font-size: 0.8rem;
  }
  
  .badge-premium,
  .badge-media,
  .badge-pending {
    padding: 4px 8px;
    font-size: 0.7rem;
  }
  
  .institutional-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .institution-name {
    font-size: 0.9rem;
  }
  
  .institution-status {
    font-size: 0.75rem;
  }
  
  .message-text {
    font-size: 0.85rem;
  }
}

/* ================================
   COMMUNITY SECTION - PROFESSIONAL & CREATIVE
   ================================ */

.community-premium-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 120px 0;
  overflow: hidden;
}

.community-bg-artistic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatAnimation 20s infinite ease-in-out;
}

.shape-1 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #0F64F7, #06b6d4);
  top: 60%;
  right: 15%;
  animation-delay: 7s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #06b6d4, #980BF4);
  bottom: 20%;
  left: 60%;
  animation-delay: 14s;
}

@keyframes floatAnimation {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(90deg); }
  50% { transform: translate(-20px, 20px) rotate(180deg); }
  75% { transform: translate(20px, -10px) rotate(270deg); }
}

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

.section-badge-community {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  color: #980BF4;
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(152, 11, 244, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.community-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.title-highlight {
  color: #1e293b;
}

.title-solid {
  color: #000000;
  font-weight: 800;
}

.gradient-text {
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.community-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 500px;
}

.community-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(152, 11, 244, 0.15);
  border-color: rgba(152, 11, 244, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.btn-community-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.25);
}

.btn-community-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.35);
  color: white;
}

.btn-glow {
  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 ease;
}

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

.community-launch-badge {
  margin-top: 1.5rem;
}

.launch-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  color: #059669;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.launch-indicator i {
  font-size: 1.1rem;
  animation: rocketPulse 2s ease-in-out infinite;
}

.launch-text {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pulse-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
  border-radius: 30px;
  opacity: 0;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes rocketPulse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Visual Side */
.community-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  position: relative;
}

.visual-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.3);
  z-index: 3;
}

.hub-content {
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-logo {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
}

.hub-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.hub-content span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(152, 11, 244, 0.2);
}

.ring-1 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateClockwise 20s linear infinite;
}

.ring-2 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateCounterClockwise 25s linear infinite;
}

@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.orbit-item {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.1);
  animation: counterRotate 20s linear infinite;
  transition: all 0.3s ease;
}

.ring-2 .orbit-item {
  animation: counterRotateReverse 25s linear infinite;
}

@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes counterRotateReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-item:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.2);
}

.orbit-item i {
  font-size: 1.5rem;
  color: #980BF4;
  margin-bottom: 0.25rem;
}

.orbit-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

/* Positioning orbit items */
.item-1 { top: -40px; left: 50%; transform: translateX(-50%); }
.item-2 { top: 50%; right: -40px; transform: translateY(-50%); }
.item-3 { bottom: -40px; left: 50%; transform: translateX(-50%); }
.item-4 { top: -40px; right: 50px; }
.item-5 { bottom: -40px; right: 50px; }
.item-6 { top: 50%; left: -40px; transform: translateY(-50%); }

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-line {
  stroke: rgba(152, 11, 244, 0.2);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 5, 5;
  animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 20; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .community-premium-section {
    padding: 80px 0;
  }
  
  .community-premium-section .row {
    flex-direction: column;
  }
  
  .community-content {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-badge-community {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-flex;
  }
  
  .community-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  
  .title-solid {
    display: block;
  }
  
  .community-description {
    font-size: 1.05rem;
    line-height: 1.65;
    padding: 0 10px;
  }
  
  .community-benefits {
    margin-bottom: 40px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    margin-bottom: 18px;
  }
  
  .benefit-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  .benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .benefit-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .community-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .btn-community-primary {
    width: 100%;
    max-width: 100%;
    padding: 18px 28px;
    font-size: 0.95rem;
    justify-content: center;
  }
  
  .community-launch-badge {
    margin-top: 20px;
  }
  
  .launch-indicator {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .launch-indicator i {
    font-size: 1rem;
  }
  
  .community-visual {
    padding: 0 20px;
  }
  
  .visual-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
  
  .central-hub {
    width: 140px;
    height: 140px;
  }
  
  .hub-logo {
    max-width: 80px;
    max-height: 80px;
  }

  .hub-content i {
    font-size: 1.5rem;
  }

  .hub-content span {
    font-size: 0.7rem;
  }
  
  .ring-1 {
    width: 200px;
    height: 200px;
  }
  
  .ring-2 {
    width: 280px;
    height: 280px;
  }
  
  .orbit-item {
    width: 60px;
    height: 60px;
  }
  
  .orbit-item i {
    font-size: 1.2rem;
  }
  
  .orbit-item span {
    font-size: 0.6rem;
  }
}

@media (max-width: 576px) {
  .community-premium-section {
    padding: 70px 0;
  }
  
  .community-content {
    padding: 0 15px;
    margin-bottom: 40px;
  }
  
  .section-badge-community {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  
  .community-title {
    font-size: 2rem;
    margin-bottom: 22px;
  }
  
  .community-description {
    font-size: 1rem;
    padding: 0 5px;
  }
  
  .benefit-item {
    padding: 20px 18px;
    margin-bottom: 16px;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 14px;
  }
  
  .benefit-content h4 {
    font-size: 1.15rem;
  }
  
  .benefit-content p {
    font-size: 0.9rem;
  }
  
  .btn-community-primary {
    padding: 16px 24px;
    font-size: 0.9rem;
  }
  
  .community-visual {
    padding: 0 15px;
  }
  
  .visual-container {
    width: 280px;
    height: 280px;
  }
  
  .central-hub {
    width: 130px;
    height: 130px;
  }
  
  .hub-logo {
    max-width: 70px;
    max-height: 70px;
  }
  
  .ring-1 {
    width: 180px;
    height: 180px;
  }
  
  .ring-2 {
    width: 260px;
    height: 260px;
  }
  
  .orbit-item {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .community-title {
    font-size: 1.8rem;
  }
  
  .visual-container {
    width: 260px;
    height: 260px;
  }
  
  .central-hub {
    width: 120px;
    height: 120px;
  }
}

/* ================================
   SUPPORTERS SECTION - REFACTORED WITH HORIZONTAL CARDS
   ================================ */

.supporters-refactored-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 120px 2rem;
  overflow: hidden;
}

.supporters-bg-artistic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-elements-supporters {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-shape-supporters {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatAnimation 25s infinite ease-in-out;
}

.floating-shape-supporters.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.floating-shape-supporters.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #0F64F7, #06b6d4);
  top: 70%;
  right: 20%;
  animation-delay: 8s;
}

.floating-shape-supporters.shape-3 {
  width: 160px;
  height: 160px;
  background: linear-gradient(45deg, #06b6d4, #980BF4);
  bottom: 25%;
  left: 70%;
  animation-delay: 16s;
}

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

.section-badge-supporters {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  color: #980BF4;
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(152, 11, 244, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.supporters-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

.supporters-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.supporters-header {
  text-align: center;
  margin-bottom: 4rem;
}

.supporters-horizontal-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.supporters-horizontal-cards-row {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  padding: 0 2rem;
}

.supporter-card-horizontal {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  flex: 1;
  width: 100%;
  max-width: 320px;
  min-height: 320px;
  height: 320px;
}

.supporter-card-horizontal.main-card {
  min-height: 320px;
  height: 320px;
}

.supporter-card-horizontal:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(152, 11, 244, 0.15);
}

.supporter-card-horizontal.main-card {
  border: 2px solid rgba(152, 11, 244, 0.3);
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-header {
  margin-bottom: 1rem;
}

.card-body-simple {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-section-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 3rem);
  height: 180px;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem;
}

.card-logo-simple {
  max-width: 120px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.card-logo-simple.logo-main {
  max-width: 150px;
  max-height: 110px;
}

.multi-logo-simple {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: calc(100% - 3rem);
  height: 180px;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.logo-item-simple {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item-simple a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.logo-item-simple a:hover {
  transform: scale(1.05);
}

.logo-separator-simple {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.institutional-icon-simple {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b7280, #374151);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.institutional-section-simple {
  width: calc(100% - 3rem);
  height: 180px;
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header {
  margin-bottom: 1.5rem;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tier-badge.realização {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
}

.tier-badge.media {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.tier-badge.institutional {
  background: linear-gradient(135deg, #6b7280, #374151);
  color: white;
}

.card-body {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-section {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.card-logo {
  max-width: 80px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.multi-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-separator {
  font-size: 1.5rem;
  font-weight: 700;
  color: #94a3b8;
}

.institutional-section {
  min-width: 120px;
}

.institutional-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6b7280, #374151);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.card-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.05), rgba(15, 100, 247, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.supporter-card-horizontal:hover .card-glow-effect {
  opacity: 1;
}

.supporters-footer-new {
  margin-top: 4rem;
  text-align: center;
}

.footer-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.gratitude-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.message-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.message-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .supporters-refactored-section {
    padding: 80px 1rem;
  }
  
  .supporters-title {
    font-size: 2.2rem;
  }
  
  .supporters-description {
    font-size: 1.1rem;
  }
  
  .supporters-horizontal-cards-row {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .supporter-card-horizontal {
    max-width: 100%;
    width: 100%;
    height: 280px;
    min-height: 280px;
  }
  
  .supporter-card-horizontal.main-card {
    height: 280px;
    min-height: 280px;
  }
  
  .multi-logo-simple {
    justify-content: center;
  }
  
  .gratitude-message {
    flex-direction: column;
    text-align: center;
  }
  
  .message-text {
    text-align: center;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-logo-simple {
    max-width: 100px;
    max-height: 70px;
  }
  
  .card-logo-simple.logo-main {
    max-width: 120px;
    max-height: 90px;
  }
  
  .institutional-icon-simple {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .logo-section-simple,
  .multi-logo-simple,
  .institutional-section-simple {
    width: calc(100% - 2rem);
    height: 150px;
    margin: 1rem;
    padding: 0.8rem;
  }
}

/* ================================
   COMMUNITY PAGE - REFACTORED STYLES
   ================================ */

/* Hero Section */
.community-hero-new {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.hero-bg-artistic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes-hero {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatHero 20s infinite ease-in-out;
}

.hero-shape.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #980BF4, #0F64F7);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #0F64F7, #06b6d4);
  top: 60%;
  right: 15%;
  animation-delay: 7s;
}

.hero-shape.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #06b6d4, #980BF4);
  bottom: 20%;
  left: 60%;
  animation-delay: 14s;
}

@keyframes floatHero {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(40px, -40px) rotate(90deg); }
  50% { transform: translate(-30px, 30px) rotate(180deg); }
  75% { transform: translate(30px, -15px) rotate(270deg); }
}

.hero-content-new {
  position: relative;
  z-index: 2;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  color: #980BF4;
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(152, 11, 244, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.gradient-text-community {
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-new {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-features-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e293b;
  font-weight: 600;
}

.feature-highlight i {
  font-size: 1.2rem;
  color: #980BF4;
}

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

.btn-primary-community {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.25);
}

.btn-primary-community:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.35);
  color: white;
}

.btn-secondary-community {
  display: inline-flex;
  align-items: center;
  color: #64748b;
  padding: 16px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-community:hover {
  color: #980BF4;
}

/* Hero Visual */
.hero-visual-new {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.community-ecosystem {
  position: relative;
  width: 400px;
  height: 400px;
}

.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.3);
  z-index: 3;
}

.ecosystem-logo {
  max-width: 200px;
  max-height: 200px;
  filter: brightness(0) invert(1);
}

.benefit-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(152, 11, 244, 0.2);
}

.benefit-orbit.orbit-1 {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateOrbit 25s linear infinite;
}

.benefit-orbit.orbit-2 {
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateOrbit 30s linear infinite reverse;
}

@keyframes rotateOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.benefit-node {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.1);
  animation: counterRotateNode 25s linear infinite;
  transition: all 0.3s ease;
}

.benefit-orbit.orbit-2 .benefit-node {
  animation: counterRotateNode 30s linear infinite reverse;
}

@keyframes counterRotateNode {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.benefit-node:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.2);
}

.benefit-node i {
  font-size: 1.5rem;
  color: #980BF4;
  margin-bottom: 0.25rem;
}

.benefit-node span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

/* Node Positioning */
.node-1 { top: -40px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: -40px; transform: translateY(-50%); }
.node-3 { bottom: -40px; left: 50%; transform: translateX(-50%); }
.node-4 { top: -40px; right: 50px; }
.node-5 { bottom: -40px; right: 50px; }
.node-6 { top: 50%; left: -40px; transform: translateY(-50%); }

.connection-web {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-path {
  stroke: rgba(152, 11, 244, 0.2);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 5, 5;
  animation: dashFlow 3s linear infinite;
}

@keyframes dashFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 20; }
}

/* Vision Section */
.community-vision-section {
  padding: 120px 0;
  background: white;
}

.section-badge-vision {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  color: #980BF4;
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(152, 11, 244, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vision-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

.vision-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.vision-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.15);
}

.vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.vision-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.vision-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Benefits Section */
.community-benefits-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.benefits-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23980BF4" opacity="0.1"/></svg>') repeat;
  z-index: 1;
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(226, 232, 240, 0.8));
}

.benefits-content {
  position: relative;
  z-index: 2;
}

.section-badge-benefits {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  color: #980BF4;
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(152, 11, 244, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefits-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.benefits-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 500px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-premium-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
}

.benefit-premium-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.15);
}

.benefit-premium-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
  font-family: 'Bootstrap Icons', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.benefit-premium-icon i {
  font-size: 1.8rem;
  color: white;
  line-height: 1;
}

.benefit-premium-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.benefit-premium-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Success Stories */
.benefits-visual {
  position: relative;
  z-index: 2;
}

.community-stats-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
  flex-direction: row-reverse;
  min-height: 120px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  align-self: flex-start;
  font-family: 'Bootstrap Icons', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
  line-height: 1;
}

.stat-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.stat-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.3;
}

.stat-content p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  word-wrap: break-word;
}

.success-stories-preview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.15);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.story-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  flex-shrink: 0;
}

.story-info h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.story-info span {
  font-size: 0.9rem;
  color: #64748b;
}

.story-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-metrics {
  display: flex;
  gap: 2rem;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #980BF4;
}

.metric-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Section */
.community-cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  overflow: hidden;
}

.cta-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(152, 11, 244, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

.particle-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 6s;
}

.particle-4 {
  top: 40%;
  right: 40%;
  animation-delay: 9s;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25% { transform: translate(20px, -20px) scale(1.2); opacity: 1; }
  50% { transform: translate(-15px, 15px) scale(0.8); opacity: 0.4; }
  75% { transform: translate(15px, -10px) scale(1.1); opacity: 0.8; }
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.2), rgba(15, 100, 247, 0.2));
  color: #a855f7;
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid rgba(152, 11, 244, 0.3);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: white;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #980BF4 0%, #0F64F7 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(152, 11, 244, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.4);
  color: white;
}

.btn-shine {
  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 ease;
}

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

.cta-info {
  margin-top: 2rem;
}

.info-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.info-item i {
  color: #22c55e;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-new {
    font-size: 1.1rem;
  }
  
  .hero-actions-new {
    flex-direction: column;
    align-items: stretch;
  }
  
  .community-ecosystem {
    width: 300px;
    height: 300px;
  }
  
  .ecosystem-center {
    width: 90px;
    height: 90px;
  }
  
  .ecosystem-logo {
    max-width: 60px;
    max-height: 60px;
  }
  
  .benefit-orbit.orbit-1 {
    width: 220px;
    height: 220px;
  }
  
  .benefit-orbit.orbit-2 {
    width: 280px;
    height: 280px;
  }
  
  .benefit-node {
    width: 60px;
    height: 60px;
  }
  
  .benefit-node i {
    font-size: 1.2rem;
  }
  
  .benefit-node span {
    font-size: 0.6rem;
  }
  
  .vision-title,
  .benefits-title,
  .cta-title {
    font-size: 2.2rem;
  }
  
  .benefit-premium-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .stat-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
    min-height: auto;
  }
  
  .stat-icon {
    align-self: center;
    margin-bottom: 0.5rem;
  }
  
  .stat-content {
    text-align: center;
    width: 100%;
  }
  
  .story-metrics {
    justify-content: center;
  }
  
  .info-items {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* Manifesto Section Styles */
.manifesto-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.manifesto-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(152, 11, 244, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.manifesto-header {
  text-align: center;
  margin-bottom: 60px;
}

.manifesto-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.2), rgba(255, 107, 107, 0.2));
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(152, 11, 244, 0.3);
}

.manifesto-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #980BF4, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.manifesto-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.manifesto-preview {
  padding: 40px;
}

.manifesto-opening {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.preview-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
}

.manifesto-expand-btn {
  background: linear-gradient(135deg, #980BF4, #FF6B6B);
  border: none;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
}

.manifesto-expand-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(152, 11, 244, 0.3);
}

.expand-icon {
  transition: transform 0.3s ease;
}

.manifesto-expand-btn.expanded .expand-icon {
  transform: rotate(180deg);
}

.manifesto-full-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.manifesto-full-content.expanded {
  max-height: 2000px;
}

.content-wrapper {
  padding: 0 40px 40px;
}

.manifesto-text .text-section {
  margin-bottom: 32px;
}

.lead-paragraph {
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.6;
  font-weight: 500;
}

.manifesto-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.stats-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 48px 0;
  padding: 32px;
  background: rgba(152, 11, 244, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(152, 11, 244, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #980BF4;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-source {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.highlighted-section {
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(255, 107, 107, 0.1));
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #980BF4;
}

.emphasis-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.manifesto-conclusion {
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.15), rgba(255, 107, 107, 0.15));
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(152, 11, 244, 0.3);
}

.conclusion-main {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.conclusion-tagline {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-gradient {
  background: linear-gradient(135deg, #980BF4, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.final-call {
  margin-top: 24px;
}

.final-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.final-cta {
  font-size: 1.4rem;
  font-weight: 800;
  color: #980BF4;
  margin-bottom: 8px;
}

.final-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsividade do Manifesto */
@media (max-width: 768px) {
  .manifesto-title {
    font-size: 2.5rem;
  }
  
  .manifesto-opening {
    font-size: 1.5rem;
  }
  
  .manifesto-preview,
  .content-wrapper {
    padding: 24px;
  }
  
  .stats-highlight {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  
  .manifesto-conclusion {
    padding: 24px;
  }
  
  .manifesto-expand-btn {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

/* Manifesto Images Section */
.manifesto-images {
  display: flex;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
  align-items: center;
}

.manifesto-image-item {
  flex: 1;
  max-width: 400px;
  position: relative;
  overflow: visible;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.manifesto-image-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(255, 107, 107, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.manifesto-image-item:hover::before {
  opacity: 1;
}

.manifesto-image-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.manifesto-image-item img {
  width: 100%;
  height: auto;
  min-height: 250px;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  transform-origin: center center;
}

.manifesto-image-item:hover img {
  transform: scale(1.08);
}

/* Removido o overlay com textos - agora só ampliação da imagem */

/* Responsive Design for Manifesto Images */
@media (max-width: 768px) {
  .manifesto-images {
    flex-direction: column;
    gap: 20px;
    margin: 35px 0;
  }
  
  .manifesto-image-item {
    max-width: 100%;
    padding: 6px;
  }
  
  .manifesto-image-item img {
    min-height: 200px;
    max-height: 280px;
  }
  
  .manifesto-image-item:hover img {
    transform: scale(1.04);
  }
  
  /* Manifesto Section Mobile */
  .manifesto-section {
    padding: 80px 0 60px;
  }

  .manifesto-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .manifesto-header {
    margin-bottom: 45px;
    padding: 0;
  }
  
  .manifesto-badge {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .manifesto-title {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  
  .manifesto-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0;
  }
  
  .manifesto-card {
    margin: 0;
    border-radius: 20px;
  }
  
  .manifesto-preview {
    padding: 30px 24px;
  }
  
  .manifesto-opening {
    font-size: 1.6rem;
    margin-bottom: 20px;
    line-height: 1.35;
  }
  
  .preview-text {
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.65;
  }
  
  .manifesto-expand-btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .content-wrapper {
    padding: 0 24px 30px;
  }
  
  .manifesto-text .text-section {
    margin-bottom: 28px;
  }
  
  .lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.6;
  }
  
  .manifesto-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .highlighted-section {
    padding: 24px 20px;
    border-radius: 12px;
    margin: 28px 0;
  }
  
  .emphasis-text {
    font-size: 1.1rem;
  }
  
  .manifesto-conclusion {
    margin-top: 28px;
  }
  
  .conclusion-main {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }
  
  .conclusion-tagline {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  
  .final-call {
    padding: 24px 20px;
  }
  
  .final-text {
    font-size: 1.1rem;
  }
  
  .final-cta {
    font-size: 1.2rem;
    margin: 16px 0;
  }
  
  .final-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .manifesto-section {
    padding: 70px 0 50px;
  }

  .manifesto-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .manifesto-header {
    margin-bottom: 40px;
    padding: 0;
  }
  
  .manifesto-badge {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  
  .manifesto-title {
    font-size: 2rem;
    line-height: 1.35;
  }
  
  .manifesto-intro {
    font-size: 1rem;
    padding: 0;
  }
  
  .manifesto-card {
    margin: 0;
    border-radius: 18px;
    overflow: visible;
  }
  
  .manifesto-preview {
    padding: 25px 20px;
  }
  
  .manifesto-opening {
    font-size: 1.45rem;
  }
  
  .preview-text {
    font-size: 0.95rem;
  }
  
  .manifesto-expand-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .content-wrapper {
    padding: 0 10px 40px;
  }

  .manifesto-cta-wrapper {
    display: none !important;
  }
  
  .lead-paragraph {
    font-size: 1.08rem;
  }
}

/* ================================
   NOVOS CTAs E CONVERSÃO 
   ================================ */

/* CTA Subtext para About Section */
.cta-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-align: center;
}

.cta-subtext strong {
  color: #FFD700;
}

/* CTA após Manifesto */
.manifesto-cta-wrapper {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(152, 11, 244, 0.2);
}

.btn-manifesto-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(152, 11, 244, 0.4);
}

.btn-manifesto-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(152, 11, 244, 0.6);
  color: #fff;
}

.cta-manifesto-subtext {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

/* CTA Final da Seção de Palestrantes */
.speakers-final-cta {
  margin-top: 60px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #0F64F7, #980BF4);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.speakers-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="300" cy="400" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="600" cy="200" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="800" cy="600" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="400" cy="800" r="3" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.cta-content-box {
  position: relative;
  z-index: 2;
}

.cta-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-speakers-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: #fff;
  color: #980BF4;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
}

.btn-speakers-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #0F64F7;
}

.btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

.cta-urgency {
  color: #FFD700;
  font-weight: 600;
  font-size: 0.95rem;
}

/* CTA após Local */
.local-cta-box {
  background: linear-gradient(135deg, rgba(152, 11, 244, 0.1), rgba(15, 100, 247, 0.1));
  padding: 35px 25px;
  border-radius: 20px;
  border: 2px solid rgba(152, 11, 244, 0.2);
}

.local-cta-text {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.btn-local-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 35px;
  background: linear-gradient(135deg, #980BF4, #0F64F7);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(152, 11, 244, 0.4);
}

.btn-local-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(152, 11, 244, 0.6);
  color: #fff;
}

/* CTA após Vídeo */
.video-cta-section {
  margin-top: 40px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(152, 11, 244, 0.1));
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.video-cta-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #980BF4;
  margin-bottom: 15px;
}

.video-cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}

.btn-video-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-video-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
  color: #000;
}

/* Responsividade dos CTAs */
@media (max-width: 768px) {
  .speakers-final-cta {
    padding: 40px 20px;
    margin-top: 40px;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .btn-speakers-cta,
  .btn-manifesto-action,
  .btn-local-cta,
  .btn-video-cta {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .manifesto-cta-wrapper {
    padding: 30px 15px;
    margin: 0 -20px;
  }
  
  .video-cta-title {
    font-size: 1.5rem;
  }
  
  .local-cta-text {
    font-size: 1.1rem;
  }
  
  .manifesto-text p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  
  .manifesto-images {
    gap: 18px;
    margin: 30px 0;
  }
  
  .manifesto-image-item img {
    min-height: 180px;
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .manifesto-title {
    font-size: 1.8rem;
  }
  
  .manifesto-opening {
    font-size: 1.35rem;
  }
  
  .conclusion-main {
    font-size: 1.08rem;
  }
  
  .final-cta {
    font-size: 1.15rem;
  }
}