/* VARIÁVEIS GLOBAIS */
:root {
  --bg: #0f0f12;
  --surface: #141419;
  --brand: #E85934;
  --brand-light: #ff7d5c;
  --brand-dark: #c44a29;
  --text: #e8e8ee;
  --muted: #b9b9c6;
  --light: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.4);
  --gradient: linear-gradient(135deg, #E85934 0%, #ff2a2a 100%);
}

/* RESET E BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  width: min(1200px, 94%);
  margin-inline: auto;
  padding: 0 1rem;
}

.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;
}

/* HEADER */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 1rem 0;
}

.site-header.scrolled {
  background: rgba(11, 11, 14, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  height: 110px;
  width: auto;
  transition: all 0.3s ease;
  z-index: 1001;
}

.site-header.scrolled .logo {
  height: 50px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(232, 89, 52, 0.1);
  border: 2px solid rgba(232, 89, 52, 0.3);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--brand);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.menu a:not(.btn-primary):hover {
  color: var(--brand);
  background: rgba(232, 89, 52, 0.1);
}

.menu a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu a:not(.btn-primary):hover::after {
  width: 60%;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::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: 0.5s;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 89, 52, 0.4);
}

.btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: #2c2c2c;
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

/* HERO SECTION - ATUALIZADO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

/* Estilos do carrossel */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(120, 120, 120, 0.2) 0%, rgba(30, 30, 30, 0.5) 100%);
  z-index: 3;
}

/* O restante do CSS permanece igual */
.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  z-index: 4; /* Acima de tudo */
}

.hero-badge {
  display: inline-block;
  background: rgba(232, 89, 52, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--brand);
  text-shadow: 0 0 30px rgba(232, 89, 52, 0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
  font-size: 0.9rem;
  z-index: 4; /* Acima de tudo */
}

.scroll-arrow {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.hero-particles {
  z-index: 3; /* Acima do overlay, abaixo do conteúdo */
}

/* Animações */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}
/* SEÇÃO INFORMAÇÕES INSTITUCIONAIS */
#informacoes {
  padding: 6rem 2rem;
  background: #0a0a0e;
  position: relative;
  overflow: hidden;
}

#informacoes .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

#informacoes .kicker {
  color: #E85934;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

#informacoes .kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background: #E85934;
  border-radius: 2px;
}

#informacoes h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
}

#informacoes h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E85934, transparent);
  border-radius: 2px;
}

#informacoes p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 2rem;
}

.info-highlight {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.highlight-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #E85934;
  line-height: 1;
}

.highlight-text {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 5px;
}

.image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(232, 89, 52, 0.3);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  z-index: 1;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  padding: 1.5rem 1rem 1rem;
  font-size: 0.9rem;
  text-align: center;
  z-index: 2;
}

/* ANIMAÇÕES */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* ==================== */
/* APENAS MOBILE (max-width: 768px) */
/* ==================== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  /* HEADER MOBILE */
  .nav-toggle {
    display: flex;
  }
  
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 11, 14, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .menu.active {
    right: 0;
  }
  
  .logo {
    height: 50px;
  }
  
  /* HERO MOBILE */
  .hero {
    padding: 70px 0 0;
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 1.5rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .stat-item {
    min-width: auto;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  /* INFORMAÇÕES INSTITUCIONAIS MOBILE */
  #informacoes {
    padding: 3rem 1rem;
  }
  
  #informacoes .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .informacoes-col.media {
    order: 1;
  }
  
  .informacoes-col.content {
    order: 2;
  }
  
  #informacoes h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  #informacoes h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  #informacoes p {
    font-size: 1rem;
    text-align: center;
  }
  
  .info-highlight {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .highlight-item {
    align-items: center;
    text-align: center;
  }
  
  .image-caption {
    font-size: 0.8rem;
    padding: 1rem 0.8rem;
  }
  
  /* BOTÕES MOBILE */
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ==================== */
/* MOBILE PEQUENO (max-width: 480px) */
/* ==================== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  #informacoes h2 {
    font-size: 1.8rem;
  }
  
  .highlight-number {
    font-size: 1.5rem;
  }
}

/* MELHORIAS DE ACESSIBILIDADE */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* CORREÇÕES DE TOUCH PARA DISPOSITIVOS MÓVEIS */
@media (hover: none) {
  .menu a:not(.btn-primary):hover {
    color: var(--light);
    background: transparent;
  }
  
  .menu a:not(.btn-primary)::after {
    display: none;
  }
  
  .image-container:hover {
    transform: none;
  }
  
  .btn:hover {
    transform: none;
  }
}
/* SEGUNDA SEÇÃO - INFO ICG */
.info-icg {
  background: #000;
  color: #f5f5f5;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.image-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
}

.image-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(232, 89, 52, 0.3);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(232, 89, 52, 0.2));
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.image-frame:hover .image-overlay {
  opacity: 0.5;
}

.info-subtitle {
  color: #E85934;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.info-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background: #E85934;
  border-radius: 2px;
}

.info-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E85934, transparent);
  border-radius: 2px;
}

.info-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 2rem;
}

.address-info {
  margin-top: 2rem;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.address-item i {
  width: 24px;
  height: 24px;
  background: #E85934;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-top: 5px;
}

.address-item i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
}

.address-item h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.address-item p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #ccc;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 89, 52, 0.1);
  animation: float 15s infinite linear;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 10%;
  animation-delay: 1s;
  animation-duration: 15s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 5%;
  animation-delay: 2s;
  animation-duration: 25s;
}

/* Animações */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
  .two-col, .info-container {
    gap: 3rem;
  }
  
  .info-highlight {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #informacoes, .info-icg {
    padding: 4rem 1.5rem;
  }
  
  .two-col, .info-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .image-container, .info-image {
    order: 2;
  }
  
  .content, .info-text {
    order: 1;
    text-align: center;
  }
  
  #informacoes h2::after,
  .info-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .address-item {
    justify-content: center;
    text-align: left;
  }
  
  .floating-shapes {
    display: none;
  }
}

@media (max-width: 480px) {
  #informacoes, .info-icg {
    padding: 3rem 1rem;
  }
  
  #informacoes p, .info-text p {
    font-size: 1rem;
  }
  
  .highlight-number {
    font-size: 1.5rem;
  }
}

.presidente {
  background: #0B0B0E;
  color: #f5f5f5;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.presidente-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.presidente-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
}

.presidente-subtitle {
  color: #E85934;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.presidente-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background: #E85934;
  border-radius: 2px;
}

.presidente-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.presidente-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E85934, transparent);
  border-radius: 2px;
}

.presidente-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 2rem;
}

.presidente-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.badge {
  background: rgba(232, 89, 52, 0.15);
  color: #E85934;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(232, 89, 52, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(232, 89, 52, 0.25);
  transform: translateY(-2px);
}

.presidente-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
}

.image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(232, 89, 52, 0.3);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(11, 11, 14, 0.4), rgba(232, 89, 52, 0.2));
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.image-wrapper:hover .image-overlay {
  opacity: 0.5;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 89, 52, 0.1);
  animation: float 15s infinite linear;
}

.floating-element.el-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.floating-element.el-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 10%;
  animation-delay: 1s;
  animation-duration: 15s;
}

.floating-element.el-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 5%;
  animation-delay: 2s;
  animation-duration: 25s;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* --- Responsividade --- */
@media (max-width: 992px) {
  .presidente-container {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .presidente {
    padding: 4rem 1.5rem;
  }
  
  .presidente-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .presidente-image {
    order: 2;
  }
  
  .presidente-text {
    order: 1;
    text-align: center;
  }
  
  .presidente-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .presidente-badges {
    justify-content: center;
  }
  
  .floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .presidente {
    padding: 3rem 1rem;
  }
  
  .presidente-text p {
    font-size: 1rem;
  }
  
  .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
.diretora {
  background: #0B0B0E;
  color: #f5f5f5;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.diretora-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr; /* Ajuste para imagem menor */
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.diretora-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
}

.diretora-subtitle {
  color: #3498db;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.diretora-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background: #3498db;
  border-radius: 2px;
}

.diretora-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.diretora-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, transparent);
  border-radius: 2px;
}

.diretora-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 2rem;
}

.diretora-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.diretora-badges .badge {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.diretora-badges .badge:hover {
  background: rgba(52, 152, 219, 0.25);
  transform: translateY(-2px);
}

.diretora-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
  max-width: 400px; /* Largura máxima reduzida */
  margin: 0 auto; /* Centraliza a imagem */
}

.diretora-image .image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
}

.diretora-image .image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

.diretora-image .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.diretora-image .image-wrapper:hover img {
  transform: scale(1.03);
}

.diretora-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(11, 11, 14, 0.4), rgba(52, 152, 219, 0.2));
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.diretora-image .image-wrapper:hover .image-overlay {
  opacity: 0.5;
}

.diretora .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.diretora .floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.1);
  animation: float 15s infinite linear;
}

.diretora .floating-element.el-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.diretora .floating-element.el-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 10%;
  animation-delay: 1s;
  animation-duration: 15s;
}

.diretora .floating-element.el-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 5%;
  animation-delay: 2s;
  animation-duration: 25s;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* --- Responsividade --- */
@media (max-width: 992px) {
  .diretora-container {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }
  
  .diretora-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .diretora {
    padding: 4rem 1.5rem;
  }
  
  .diretora-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .diretora-image {
    order: 1;
    max-width: 400px;
  }
  
  .diretora-text {
    order: 2;
    text-align: center;
  }
  
  .diretora-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .diretora-badges {
    justify-content: center;
  }
  
  .diretora .floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .diretora {
    padding: 3rem 1rem;
  }
  
  .diretora-image {
    max-width: 300px;
  }
  
  .diretora-text p {
    font-size: 1rem;
  }
  
  .diretora-badges .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

.diretora-hakyla {
  background: #0B0B0E;
  color: #f5f5f5;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.diretora-hakyla .diretora-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.diretora-hakyla .diretora-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
}

.diretora-hakyla .diretora-subtitle {
  color: #9b59b6;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.diretora-hakyla .diretora-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background: #9b59b6;
  border-radius: 2px;
}

.diretora-hakyla .diretora-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.diretora-hakyla .diretora-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #9b59b6, transparent);
  border-radius: 2px;
}

.diretora-hakyla .diretora-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 2rem;
}

.diretora-hakyla .diretora-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.diretora-hakyla .badge {
  background: rgba(155, 89, 182, 0.15);
  color: #9b59b6;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(155, 89, 182, 0.3);
  transition: all 0.3s ease;
}

.diretora-hakyla .badge:hover {
  background: rgba(155, 89, 182, 0.25);
  transform: translateY(-2px);
}

.diretora-hakyla .diretora-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
  max-width: 400px;
  margin: 0 auto;
}

.diretora-hakyla .image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
}

.diretora-hakyla .image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
}

.diretora-hakyla .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.diretora-hakyla .image-wrapper:hover img {
  transform: scale(1.03);
}

.diretora-hakyla .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(11, 11, 14, 0.4), rgba(155, 89, 182, 0.2));
  z-index: 2;
  opacity: 0.7;
  transition: all 0.5s ease;
}

.diretora-hakyla .image-wrapper:hover .image-overlay {
  opacity: 0.5;
}

.diretora-hakyla .floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.diretora-hakyla .floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(155, 89, 182, 0.1);
  animation: float 15s infinite linear;
}

.diretora-hakyla .floating-element.el-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.diretora-hakyla .floating-element.el-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  left: 10%;
  animation-delay: 1s;
  animation-duration: 15s;
}

.diretora-hakyla .floating-element.el-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 5%;
  animation-delay: 2s;
  animation-duration: 25s;
}

/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* --- Responsividade --- */
@media (max-width: 992px) {
  .diretora-hakyla .diretora-container {
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }
  
  .diretora-hakyla .diretora-image {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .diretora-hakyla {
    padding: 4rem 1.5rem;
  }
  
  .diretora-hakyla .diretora-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .diretora-hakyla .diretora-image {
    order: 2;
    max-width: 400px;
  }
  
  .diretora-hakyla .diretora-text {
    order: 1;
    text-align: center;
  }
  
  .diretora-hakyla .diretora-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .diretora-hakyla .diretora-badges {
    justify-content: center;
  }
  
  .diretora-hakyla .floating-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .diretora-hakyla {
    padding: 3rem 1rem;
  }
  
  .diretora-hakyla .diretora-image {
    max-width: 300px;
  }
  
  .diretora-hakyla .diretora-text p {
    font-size: 1rem;
  }
  
  .diretora-hakyla .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

.indios-gallery {
  background: linear-gradient(135deg, #0B0B0E 0%, #1a1a2e 100%);
  color: #f5f5f5;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.gallery-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #ff8c00, #ffd700);
  border-radius: 3px;
}

.gallery-subtitle {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 2rem;
}

.header-decoration {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.decoration-element {
  width: 20px;
  height: 20px;
  background: #ff8c00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.decoration-element:nth-child(2) {
  background: #ffd700;
  animation-delay: 0.5s;
}

.decoration-element:nth-child(3) {
  background: #ff8c00;
  animation-delay: 1s;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.gallery-item {
  perspective: 1000px;
  transition: transform 0.3s ease;
}

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

.image-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: all 0.5s ease;
  height: 350px;
}

.gallery-item:hover .image-frame {
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
  transform: rotateY(5deg) rotateX(5deg);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffd700;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.overlay-content p {
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.5s ease;
  transition-delay: 0.1s;
}

.gallery-item:hover .overlay-content h3,
.gallery-item:hover .overlay-content p {
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.gallery-cta p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.6);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.1);
  animation: floatAround 20s infinite linear;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.floating-element:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 70%;
  left: 10%;
  animation-delay: 2s;
  animation-duration: 20s;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 5%;
  animation-delay: 4s;
  animation-duration: 30s;
}

.floating-element:nth-child(4) {
  width: 50px;
  height: 50px;
  top: 20%;
  right: 15%;
  animation-delay: 1s;
  animation-duration: 22s;
}

.floating-element:nth-child(5) {
  width: 70px;
  height: 70px;
  top: 65%;
  right: 20%;
  animation-delay: 3s;
  animation-duration: 28s;
}

/* Animações */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* --- Responsividade --- */
@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .image-frame {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .indios-gallery {
    padding: 4rem 1.5rem;
  }
  
  .gallery-title::after {
    bottom: -10px;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .image-frame {
    height: 250px;
  }
  
  .overlay-content {
    padding: 1.5rem;
  }
  
  .overlay-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .indios-gallery {
    padding: 3rem 1rem;
  }
  
  .gallery-container {
    grid-template-columns: 1fr;
  }
  
  .image-frame {
    height: 280px;
  }
  
  .gallery-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .floating-element {
    display: none;
  }
}
/* EQUIPE - ESTILOS APERFEIÇOADOS */
.equipe {
  background: #000000;
  color: #f5f5f5;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.equipe-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.equipe-header {
  margin-bottom: 4rem;
}

.equipe-subtitle {
  color: #E85934;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 15px;
}

.equipe-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background: #E85934;
  border-radius: 2px;
}

.equipe-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.equipe-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E85934, transparent);
  border-radius: 2px;
}

.equipe-header p {
  color: #ddd;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.equipe-member {
  background: linear-gradient(145deg, #0B0B0E, #15151c);
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.equipe-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E85934, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.equipe-member:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 35px rgba(232, 89, 52, 0.2);
}

.equipe-member:hover::before {
  transform: scaleX(1);
}

.member-image {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #1a1a22;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.equipe-member:hover .member-image img {
  transform: scale(1.1);
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(232, 89, 52, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.equipe-member:hover .member-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #000;
  transform: translateY(-3px);
}

.icon-linkedin::before,
.icon-email::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.icon-linkedin::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E");
}

.icon-email::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12.713l-11.985-9.713h23.97l-11.985 9.713zm0 2.574l-12-9.725v15.438h24v-15.438l-12 9.725z'/%3E%3C/svg%3E");
}

.member-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.member-info > p {
  font-size: 1rem;
  color: #E85934;
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-desc {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}

.equipe-member:hover .member-desc {
  height: 50px;
}

.member-desc p {
  font-size: 0.9rem;
  color: #bbb;
  line-height: 1.5;
  margin: 0;
}

.equipe-cta {
  background: linear-gradient(145deg, #0B0B0E, #15151c);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid #1e2030;
}

.equipe-cta p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #E85934;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #E85934;
}

.cta-button:hover {
  background: transparent;
  color: #E85934;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(232, 89, 52, 0.3);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 89, 52, 0.05);
  animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  left: 15%;
  animation-delay: 5s;
  animation-duration: 20s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 40%;
  right: 10%;
  animation-delay: 10s;
  animation-duration: 30s;
}

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

/* Responsividade */
@media (max-width: 992px) {
  .equipe-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .equipe {
    padding: 4rem 1.5rem;
  }
  
  .equipe-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .member-image {
    width: 140px;
    height: 140px;
  }
  
  .equipe-cta {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .equipe {
    padding: 3rem 1rem;
  }
  
  .equipe-header p {
    font-size: 1rem;
  }
  
  .member-info h3 {
    font-size: 1.2rem;
  }
  
  .cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
/* MISSÃO - ESTILOS APERFEIÇOADOS */
.missao-section {
  background: #0C0C0F;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.missao-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.missao-header {
  margin-bottom: 3rem;
}

.missao-subtitle {
  color: #E96629;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.missao-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #E96629;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(233, 102, 41, 0.4);
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.decoration-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E96629, transparent);
}

.decoration-icon {
  font-size: 1.5rem;
  animation: pulse 2s infinite ease-in-out;
}

.missao-content {
  background: rgba(15, 15, 20, 0.6);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(233, 102, 41, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.missao-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(233, 102, 41, 0.05), transparent);
  z-index: -1;
}

.missao-text {
  font-size: 1.15rem;
  line-height: 1.9;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}

.missao-text::first-letter {
  font-size: 2.5rem;
  color: #E96629;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.missao-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-item {
  background: rgba(233, 102, 41, 0.1);
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(233, 102, 41, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(233, 102, 41, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(233, 102, 41, 0.2);
  border-color: rgba(233, 102, 41, 0.3);
}

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

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.2);
}

.highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.missao-visual {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.visual-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(233, 102, 41, 0.1);
  animation: floatMission 20s infinite linear;
}

.visual-element.el-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.visual-element.el-2 {
  width: 50px;
  height: 50px;
  top: 60%;
  left: 15%;
  animation-delay: 5s;
  animation-duration: 20s;
}

.visual-element.el-3 {
  width: 70px;
  height: 70px;
  top: 40%;
  right: 10%;
  animation-delay: 10s;
  animation-duration: 30s;
}

.missao-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-particle {
  position: absolute;
  background: rgba(233, 102, 41, 0.05);
  animation: particles 15s infinite linear;
}

.bg-particle.p1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 0s;
}

.bg-particle.p2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 8%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: 3s;
}

.bg-particle.p3 {
  width: 60px;
  height: 60px;
  top: 30%;
  right: 20%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation-delay: 6s;
}

.bg-particle.p4 {
  width: 100px;
  height: 100px;
  bottom: 10%;
  left: 15%;
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
  animation-delay: 9s;
}

/* Animações */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes floatMission {
  0% {
    transform: translateY(0) rotate(0deg) translateX(0);
  }
  33% {
    transform: translateY(-15px) rotate(120deg) translateX(15px);
  }
  66% {
    transform: translateY(10px) rotate(240deg) translateX(-10px);
  }
  100% {
    transform: translateY(0) rotate(360deg) translateX(0);
  }
}

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

/* Responsividade */
@media (max-width: 992px) {
  .missao-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  
  .missao-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .missao-section {
    padding: 4rem 1.5rem;
  }
  
  .missao-highlights {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .title-decoration {
    gap: 0.5rem;
  }
  
  .decoration-line {
    width: 40px;
  }
  
  .missao-text::first-letter {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .missao-section {
    padding: 3rem 1rem;
  }
  
  .missao-content {
    padding: 1.5rem 1rem;
  }
  
  .missao-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .missao-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .highlight-item {
    padding: 1.2rem 0.8rem;
  }
  
  .highlight-icon {
    font-size: 2rem;
  }
  
  .visual-element {
    display: none;
  }
}

/* Revelar ao scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
/* VISÃO - ESTILOS APERFEIÇOADOS */
.visao-section {
  background: #000000;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.visao-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.visao-header {
  margin-bottom: 4rem;
}

.visao-subtitle {
  color: #E96629;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.visao-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #E96629;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 25px rgba(233, 102, 41, 0.5);
}

.visao-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #E96629, transparent);
  border-radius: 2px;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #E96629, transparent);
}

.decoration-icon {
  font-size: 1.8rem;
  animation: glow 3s infinite ease-in-out;
}

.visao-content {
  background: rgba(20, 20, 25, 0.7);
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid rgba(233, 102, 41, 0.15);
  backdrop-filter: blur(12px);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.visao-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(233, 102, 41, 0.1), transparent 70%);
  z-index: -1;
}

.visao-text-wrapper {
  margin-bottom: 3rem;
  position: relative;
}

.visao-text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #e0e0e0;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.visao-text::before,
.visao-text::after {
  content: '"';
  font-size: 4rem;
  color: #E96629;
  font-weight: 700;
  position: absolute;
  opacity: 0.3;
}

.visao-text::before {
  top: -20px;
  left: 0;
}

.visao-text::after {
  bottom: -40px;
  right: 0;
}

.visao-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: #E96629;
  border-radius: 50%;
  border: 3px solid rgba(233, 102, 41, 0.3);
  box-shadow: 0 0 15px rgba(233, 102, 41, 0.4);
  position: relative;
  z-index: 2;
}

.marker-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, #E96629, transparent);
  margin-top: -1px;
}

.timeline-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.5;
  margin: 0;
}

.visao-graphic {
  position: relative;
  height: 200px;
  margin: 2rem auto;
  max-width: 300px;
}

.graphic-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(233, 102, 41, 0.2);
  border-radius: 50%;
  animation: pulseCircle 6s infinite ease-in-out;
}

.circle-1 {
  width: 180px;
  height: 180px;
  animation-delay: 0s;
}

.circle-2 {
  width: 140px;
  height: 140px;
  animation-delay: 2s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  animation-delay: 4s;
}

.graphic-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(233, 102, 41, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.center-icon {
  font-size: 2rem;
  animation: rotate 10s infinite linear;
}

.visao-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  background: rgba(233, 102, 41, 0.05);
  animation: floatShape 20s infinite linear;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
  animation-delay: 0s;
}

.shape-2 {
  width: 70px;
  height: 70px;
  bottom: 30%;
  right: 15%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: 5s;
}

.shape-3 {
  width: 50px;
  height: 50px;
  top: 40%;
  right: 25%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation-delay: 10s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 15s;
}

/* Animações */
@keyframes glow {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

@keyframes pulseCircle {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

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

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.6;
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .visao-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .timeline-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .marker-line {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .visao-section {
    padding: 4rem 1.5rem;
  }
  
  .visao-content {
    padding: 2rem 1.5rem;
  }
  
  .visao-text {
    font-size: 1.05rem;
    line-height: 1.8;
    padding: 0;
  }
  
  .visao-text::before,
  .visao-text::after {
    font-size: 3rem;
  }
  
  .title-decoration {
    gap: 0.5rem;
  }
  
  .decoration-line {
    width: 40px;
  }
  
  .visao-graphic {
    height: 150px;
  }
  
  .circle-1 { width: 140px; height: 140px; }
  .circle-2 { width: 110px; height: 110px; }
  .circle-3 { width: 80px; height: 80px; }
  
  .graphic-center {
    width: 50px;
    height: 50px;
  }
  
  .center-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .visao-section {
    padding: 3rem 1rem;
  }
  
  .visao-content {
    padding: 1.5rem 1rem;
  }
  
  .visao-title {
    font-size: 2rem;
  }
  
  .visao-text {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .timeline-content h4 {
    font-size: 1.1rem;
  }
  
  .timeline-content p {
    font-size: 0.9rem;
  }
  
  .bg-shape {
    display: none;
  }
}

/* Revelar ao scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* VALORES - ESTILOS APERFEIÇOADOS */
.valores {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.valores-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.4);
  transition: transform 0.8s ease;
}

.valores:hover .valores-bg {
  transform: scale(1.05);
}

.valores-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(233, 102, 41, 0.3), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.valores-conteudo {
  position: relative;
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.valores-header {
  margin-bottom: 3rem;
}

.valores-subtitle {
  color: #E96629;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.valores-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #E96629, transparent);
}

.decoration-icon {
  font-size: 1.8rem;
  animation: pulse 2s infinite ease-in-out;
}

.valores-text {
  max-width: 800px;
  margin: 0 auto 4rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.valores-text p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.valor-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.valor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(233, 102, 41, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.valor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(233, 102, 41, 0.3);
  border-color: rgba(233, 102, 41, 0.3);
}

.valor-card:hover::before {
  opacity: 1;
}

.valor-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.4s ease;
}

.valor-card:hover .valor-icon {
  transform: scale(1.2) rotate(5deg);
}

.valor-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.valor-card h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #E96629;
  transition: width 0.4s ease;
}

.valor-card:hover h4::after {
  width: 60px;
}

.valor-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

.valores-cta {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.valores-cta p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #E96629;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #E96629;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: transparent;
  color: #E96629;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 102, 41, 0.4);
}

.valores-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: rgba(233, 102, 41, 0.1);
  border: 1px solid rgba(233, 102, 41, 0.2);
  animation: floatParticle 20s infinite linear;
}

.p1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 60%;
  animation-delay: 0s;
}

.p2 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 15%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-delay: 5s;
}

.p3 {
  width: 40px;
  height: 40px;
  top: 40%;
  right: 25%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation-delay: 10s;
}

.p4 {
  width: 70px;
  height: 70px;
  bottom: 20%;
  left: 20%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-delay: 15s;
}

/* Animações */
@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    transform: scale(1);
  }
  50% { 
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(180deg) scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
    opacity: 0.7;
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .valores-text {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .valores {
    min-height: auto;
  }
  

 
  .valores-conteudo {
    padding: 4rem 1.5rem;
  }
  
  .valores-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .valores-text {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .valores-text p {
    font-size: 1.05rem;
  }
  
  .title-decoration {
    gap: 0.5rem;
  }
  
  .decoration-line {
    width: 40px;
  }
  
  .valores-cta {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .valores-conteudo {
    padding: 3rem 1rem;
  }
  
  .valores-title {
    font-size: 2rem;
  }
  
  .valores-text {
    padding: 1.2rem;
  }
  
  .valores-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
  
  .valor-card {
    padding: 1.5rem 1rem;
  }
  
  .valor-icon {
    font-size: 2.5rem;
  }
  
  .valor-card h4 {
    font-size: 1.2rem;
  }
  
  .cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  
  .particle {
    display: none;
  }
}

/* Revelar ao scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Botão de fechar (X) para o menu mobile */
.menu-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(232, 89, 52, 0.1);
    border: 2px solid rgba(232, 89, 52, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    background: rgba(232, 89, 52, 0.2);
    transform: rotate(90deg);
}

/* Mostra o botão de fechar apenas no mobile */
@media (max-width: 768px) {
    .menu-close-btn {
        display: flex;
    }
    
    /* Ajusta o menu para acomodar o botão de fechar */
    .menu {
        padding-top: 60px !important;
    }
}

/* Estilos para o menu mobile */
.menu.show {
    display: flex !important;
    right: 0 !important;
}

/* Animação do hamburger menu */
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Estilos para elementos revelados */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para o botão voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

/* Header scroll effect */
.site-header.scrolled {
    background: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .logo {
    height: 50px;
}

/* SEÇÃO ÁREAS DE ATUAÇÃO */
.areas-atuacao-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #0a0a0e 0%, #1a1a24 100%);
  position: relative;
  overflow: hidden;
}

.areas-header {
  text-align: center;
  margin-bottom: 4rem;
}

.areas-subtitle {
  color: #E85934;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
}

.areas-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.decoration-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E85934, transparent);
}

.decoration-icon {
  font-size: 2rem;
  animation: pulse 2s infinite ease-in-out;
}

.areas-description {
  font-size: 1.2rem;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.area-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(232, 89, 52, 0.2);
  border-color: rgba(232, 89, 52, 0.3);
}

.area-icon {
  font-size: 3rem;
  color: #E85934;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.area-card:hover .area-icon {
  transform: scale(1.2) rotate(5deg);
}

.area-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.area-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #E85934;
  transition: width 0.3s ease;
}

.area-card:hover .area-title::after {
  width: 80px;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.area-list li {
  color: #ddd;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.area-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E85934;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.area-card:hover .area-list li::before {
  transform: scale(1.2);
}

.area-card:hover .area-list li {
  color: #fff;
}

.area-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 89, 52, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.area-card:hover .area-hover-effect {
  opacity: 1;
}

.areas-cta {
  text-align: center;
  background: rgba(232, 89, 52, 0.1);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(232, 89, 52, 0.2);
  backdrop-filter: blur(10px);
}

.areas-cta p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #E85934;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #E85934;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: transparent;
  color: #E85934;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(232, 89, 52, 0.3);
}

/* Elementos decorativos de fundo */
.areas-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 89, 52, 0.05);
  animation: floatElement 20s infinite linear;
}

.bg-element.el-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.bg-element.el-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

.bg-element.el-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 15%;
  animation-delay: 10s;
}

.bg-element.el-4 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  right: 20%;
  animation-delay: 15s;
}

/* Animações */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

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

/* Responsividade */
@media (max-width: 768px) {
  .areas-atuacao-section {
    padding: 4rem 1rem;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .area-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }
  
  .areas-title {
    font-size: 2.2rem;
  }
  
  .title-decoration {
    gap: 0.5rem;
  }
  
  .decoration-line {
    width: 40px;
  }
  
  .areas-cta {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .areas-atuacao-section {
    padding: 3rem 1rem;
  }
  
  .areas-title {
    font-size: 1.8rem;
  }
  
  .areas-description {
    font-size: 1rem;
  }
  
  .area-card {
    padding: 1.5rem 1rem;
  }
  
  .area-icon {
    font-size: 2.5rem;
  }
  
  .area-title {
    font-size: 1.2rem;
  }
  
  .area-list li {
    font-size: 0.9rem;
  }
  
  .bg-element {
    display: none;
  }
}

/* Revelar ao scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* SEÇÃO DE CURSOS */
.cursos-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #0f0f12 0%, #1a1a24 100%);
  position: relative;
  overflow: hidden;
}

.cursos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cursos-subtitle {
  color: #E85934;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
}

.cursos-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.decoration-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E85934, transparent);
}

.decoration-icon {
  font-size: 2rem;
  animation: pulse 2s infinite ease-in-out;
}

.cursos-description {
  font-size: 1.2rem;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filtros */
.cursos-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #E85934;
  background: transparent;
  color: #E85934;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #E85934;
  color: white;
  transform: translateY(-2px);
}

/* Grid de Cursos */
.cursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.curso-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.curso-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(232, 89, 52, 0.2);
  border-color: rgba(232, 89, 52, 0.3);
}

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

.curso-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.curso-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem;
}

.curso-hours,
.curso-students {
  background: rgba(232, 89, 52, 0.9);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.curso-content {
  padding: 1.5rem;
}

.curso-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.curso-description {
  color: #ddd;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.curso-details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.curso-details li {
  color: #bbb;
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.curso-details i {
  color: #E85934;
  width: 20px;
  margin-right: 0.5rem;
}

.curso-btn {
  width: 100%;
  padding: 0.8rem;
  background: #E85934;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.curso-btn:hover {
  background: #c44a29;
  transform: translateY(-2px);
}

/* CTA */
.cursos-cta {
  text-align: center;
  background: rgba(232, 89, 52, 0.1);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(232, 89, 52, 0.2);
}

.cursos-cta p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  background: #E85934;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #c44a29;
  transform: translateY(-3px);
}

/* Modal */
.curso-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
}

.curso-modal.active {
  display: flex;
}

.modal-content {
  background: #1a1a24;
  border-radius: 1.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #E85934;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.modal-header {
  position: relative;
  height: 200px;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 1.5rem;
}

.modal-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-meta {
  display: flex;
  gap: 1rem;
}

.modal-hours,
.modal-students {
  background: #E85934;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
}

.modal-body {
  padding: 1.5rem;
}

.modal-description {
  color: #ddd;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-details h4 {
  color: white;
  margin-bottom: 1rem;
}

.modal-details-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.modal-details-list li {
  color: #bbb;
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
}

.modal-location h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.modal-location-text {
  color: #ddd;
}

.modal-footer {
  padding: 1.5rem;
  text-align: center;
}

.modal-inscription-btn {
  background: #E85934;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-inscription-btn:hover {
  background: #c44a29;
  transform: translateY(-2px);
}

/* Elementos decorativos */
.cursos-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 89, 52, 0.05);
  animation: floatElement 20s infinite linear;
}

.bg-element.el-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
}

.bg-element.el-2 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 15%;
  animation-delay: 5s;
}

.bg-element.el-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 20%;
  animation-delay: 10s;
}

/* Animações */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

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

/* Responsividade */
@media (max-width: 768px) {
  .cursos-section {
    padding: 4rem 1rem;
  }
  
  .cursos-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cursos-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .curso-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cursos-section {
    padding: 3rem 1rem;
  }
  
  .cursos-title {
    font-size: 2rem;
  }
  
  .title-decoration {
    gap: 0.5rem;
  }
  
  .decoration-line {
    width: 40px;
  }
  
  .curso-content {
    padding: 1rem;
  }
  
  .modal-content {
    margin: 1rem;
  }
}
/* Título responsivo para CURSOS E CAPACITAÇÕES */
.cursos-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding: 0 1rem;
}

/* Para telas muito pequenas (menos de 360px) */
@media (max-width: 360px) {
  .cursos-title {
    font-size: 1.7rem;
    letter-spacing: 0.5px;
    padding: 0 0.5rem;
  }
}

/* Ajuste específico para o título muito longo */
@media (max-width: 480px) {
  .cursos-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* Para tablets em modo retrato */
@media (min-width: 481px) and (max-width: 768px) {
  .cursos-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }
}

/* Ajuste de quebra de linha para telas médias */
@media (max-width: 768px) {
  .cursos-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cursos-title br {
    display: block;
  }
}

/* Para desktop */
@media (min-width: 769px) {
  .cursos-title {
    font-size: 3.5rem;
    letter-spacing: 2px;
  }
  
  .cursos-title br {
    display: none;
  }
}

/* Versão alternativa com quebra de palavra controlada */
.cursos-title.alternative {
  display: inline-block;
  max-width: 100%;
}

/* Se precisar de uma solução mais específica */
.cursos-title span {
  display: inline-block;
}

@media (max-width: 768px) {
  .cursos-title span {
    display: block;
  }
  
  .cursos-title .line-break {
    display: block;
    margin-top: 0.5rem;
  }
}

/* VARIÁVEIS GLOBAIS */
:root {
    --primary-color: #E85934;
    --primary-dark: #c44a29;
    --secondary-color: #2c5282;
    --dark-bg: #0f0f12;
    --darker-bg: #0a0a0e;
    --light-text: #ffffff;
    --muted-text: #b9b9c6;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #E85934 0%, #2c5282 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* HEADER */
.site-header {
    background: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 60px;
}

/* HERO SECTION */
.participacoes-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagens/participacoes/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.3;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--muted-text);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--muted-text);
    text-transform: uppercase;
}

/* 🔽 Espaçamento extra para descer os botões */
.hero-cta {
    margin-top: 8.0rem; /* ajuste aqui o valor, pode aumentar ou diminuir */
}


/* PARTICIPAÇÕES SECTION */
.participacoes-section {
    padding: 6rem 0;
}

.participacao-card {
    background: var(--card-bg);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s ease;
}

.participacao-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.participacao-header {
    margin-bottom: 2rem;
}

.participacao-date {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.participacao-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.participacao-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.participacao-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.participacao-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--muted-text);
}

.detail-item i {
    color: var(--primary-color);
    width: 20px;
}

/* GALLERY */
.participacao-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 89, 52, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

/* CTA SECTION */
.participacoes-cta {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.cta-btn.primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cta-btn.secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 1rem;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVIDADE */
@media (max-width: 968px) {
    .participacao-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .participacao-gallery {
        order: -1;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .participacao-card {
        padding: 2rem;
    }
    
    .participacao-title {
        font-size: 1.8rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .participacao-gallery {
        grid-template-columns: 1fr;
    }
    
    .participacao-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .participacao-details {
        align-items: center;
    }
  }

  /* VARIÁVEIS GLOBAIS */
:root {
    --primary-color: #27ae60;
    --primary-dark: #219653;
    --secondary-color: #2d9cdb;
    --accent-color: #f2994a;
    --dark-bg: #0f0f12;
    --darker-bg: #0a0a0e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --light-text: #ffffff;
    --muted-text: #b9b9c6;
    --gradient-green: linear-gradient(135deg, #27ae60 0%, #2d9cdb 100%);
    --gradient-blue: linear-gradient(135deg, #2d9cdb 0%, #9b51e0 100%);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* HEADER */
.site-header {
    background: rgba(11, 11, 14, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 60px;
}

/* HERO SECTION */
.oficinas-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('imagens/oficinas/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--muted-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--muted-text);
    text-transform: uppercase;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

/* PROJETOS SECTION */
.oficinas-section {
    padding: 6rem 0;
}

.projeto-card {
    background: var(--card-bg);
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    transition: all 0.3s ease;
}

.projeto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.projeto-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.projeto-header {
    margin-bottom: 2rem;
}

.projeto-date {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.projeto-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    line-height: 1.2;
}

.projeto-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.projeto-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.projeto-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.highlight {
    background: rgba(39, 174, 96, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.highlight h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight ul {
    list-style: none;
    padding: 0;
}

.highlight li {
    padding: 0.3rem 0;
    color: var(--muted-text);
    position: relative;
    padding-left: 1.2rem;
}

.highlight li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.projeto-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(39, 174, 96, 0.1);
    transform: translateY(-3px);
}

.metric i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 0.3rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--muted-text);
}

/* GALLERY */
.projeto-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-main {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 174, 96, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-main:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.thumbnail {
    border-radius: 0.5rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

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

/* IMPACTO SECTION */
.impacto-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2a3a 100%);
    padding: 6rem 0;
}

.impacto-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impacto-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.impacto-header p {
    font-size: 1.2rem;
    color: var(--muted-text);
}

.impacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impacto-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.impacto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.impacto-icon {
    width: 80px;
    height: 80px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impacto-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.impacto-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.impacto-card p {
    color: var(--muted-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.impacto-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impacto-label {
    font-size: 0.9rem;
    color: var(--muted-text);
    text-transform: uppercase;
}

/* CTA SECTION */
.oficinas-cta {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.cta-btn.primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-btn.secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cta-btn.secondary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 1rem;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVIDADE */
@media (max-width: 968px) {
    .projeto-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .projeto-highlights {
        grid-template-columns: 1fr;
    }
    
    .projeto-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .projeto-card {
        padding: 2rem;
    }
    
    .projeto-title {
        font-size: 1.8rem;
    }
    
    .gallery-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .impacto-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .projeto-card {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .projeto-metrics {
        grid-template-columns: 1fr;
    }
    
    .projeto-badge {
        right: 20px;
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* SEÇÃO DE PALESTRAS */
.palestras-section {
  padding: 6rem 1rem;
  background: linear-gradient(135deg, #0f0f12 0%, #1a1a24 100%);
  position: relative;
  overflow: hidden;
}

.palestras-header {
  text-align: center;
  margin-bottom: 4rem;
}

.palestras-subtitle {
  color: #E85934;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-bottom: 1rem;
}

.palestras-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.decoration-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E85934, transparent);
}

.decoration-icon {
  font-size: 2rem;
  animation: pulse 2s infinite ease-in-out;
}

.palestras-description {
  font-size: 1.2rem;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filtros */
.palestras-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid #E85934;
  background: transparent;
  color: #E85934;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #E85934;
  color: white;
  transform: translateY(-2px);
}

/* Grid de Palestras */
.palestras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.palestra-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.palestra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(232, 89, 52, 0.2);
  border-color: rgba(232, 89, 52, 0.3);
}

.palestra-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #E85934;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  font-size: 0.9rem;
}

.palestra-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 16/9;
}

.palestra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.palestra-card:hover .palestra-image img {
  transform: scale(1.05);
}

.palestra-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem;
}

.palestra-hours,
.palestra-participants {
  background: rgba(232, 89, 52, 0.9);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.palestra-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #E85934;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.palestra-content {
  margin-bottom: 1.5rem;
}

.palestra-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.palestra-excerpt {
  color: #ddd;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.palestra-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(232, 89, 52, 0.1);
  padding: 0.8rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.detail:hover {
  background: rgba(232, 89, 52, 0.2);
  transform: translateY(-2px);
}

.detail i {
  color: #E85934;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.detail span {
  font-size: 0.8rem;
  color: #ddd;
  line-height: 1.3;
}

.palestra-btn {
  width: 100%;
  padding: 1rem;
  background: #E85934;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.palestra-btn:hover {
  background: #c44a29;
  transform: translateY(-2px);
}

.palestra-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.gallery-thumb {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Section */
.palestras-cta {
  background: rgba(232, 89, 52, 0.1);
  padding: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(232, 89, 52, 0.2);
  text-align: center;
}

.cta-content h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #ddd;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E85934;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #c44a29;
  transform: translateY(-3px);
}

/* Modal */
.palestra-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 2rem;
}

.palestra-modal.active {
  display: flex;
}

.modal-content {
  background: #1a1a24;
  border-radius: 1.5rem;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #E85934;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
}

.modal-header {
  position: relative;
  height: 250px;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #E85934;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.modal-body {
  padding: 2rem;
}

.modal-title {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-duration,
.modal-audience {
  background: rgba(232, 89, 52, 0.2);
  color: #E85934;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
}

.modal-description {
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-objectives h4 {
  color: white;
  margin-bottom: 1rem;
}

.objectives-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.objectives-list li {
  color: #ddd;
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
  padding-left: 1.5rem;
  position: relative;
}

.objectives-list li::before {
  content: "✓";
  color: #E85934;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.modal-gallery h4 {
  color: white;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.1);
}

.modal-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.modal-cta-btn {
  background: #E85934;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-cta-btn:hover {
  background: #c44a29;
  transform: translateY(-2px);
}

/* Elementos decorativos */
.palestras-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(232, 89, 52, 0.05);
  animation: floatElement 20s infinite linear;
}

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

.element-2 {
  width: 60px;
  height: 60px;
  bottom: 30%;
  right: 15%;
  animation-delay: 5s;
}

.element-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 20%;
  animation-delay: 10s;
}

/* Animações */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

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

/* Responsividade */
@media (max-width: 768px) {
  .palestras-grid {
    grid-template-columns: 1fr;
  }
  
  .palestra-card {
    padding: 1.5rem;
  }
  
  .palestra-details {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .palestras-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .palestras-section {
    padding: 4rem 1rem;
  }
  
  .palestras-title {
    font-size: 2rem;
  }
  
  .palestra-details {
    grid-template-columns: 1fr;
  }
  
  .palestra-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-content {
    margin: 1rem;
  }
}

/* Revelar ao scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* SEÇÃO DE DOAÇÕES - FUNDO ESCURO */
.donate-section {
  background: linear-gradient(135deg, #0a0a0e 0%, #1a1a24 100%);
  padding: 6rem 0 0;
  position: relative;
  color: white;
  border-bottom: 3px solid #E85934;
}

.donate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 4rem;
}

.donate-badge {
  background: rgba(232, 89, 52, 0.2);
  color: #E85934;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 89, 52, 0.3);
}

.donate-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #fff;
}

.donate-title span {
  color: #E85934;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.donate-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #ddd;
}

.donate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat:hover {
  background: rgba(232, 89, 52, 0.1);
  transform: translateY(-5px);
  border-color: rgba(232, 89, 52, 0.3);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #E85934;
}

.stat-label {
  font-size: 0.9rem;
  color: #bbb;
}

.donate-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.donate-btn {
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.donate-btn.primary {
  background: #E85934;
  color: white;
  box-shadow: 0 10px 30px rgba(232, 89, 52, 0.3);
}

.donate-btn.primary:hover {
  background: #ff7d5c;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 89, 52, 0.4);
}

.donate-btn.secondary {
  background: transparent;
  color: #E85934;
  border: 2px solid #E85934;
}

.donate-btn.secondary:hover {
  background: #E85934;
  color: white;
  transform: translateY(-3px);
}

.payment-methods {
  text-align: center;
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-methods span {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #bbb;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.payment-icons i {
  font-size: 1.8rem;
  color: #E85934;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  color: #ff7d5c;
  transform: scale(1.2);
}

.donate-wave {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.donate-wave svg {
  width: 100%;
  height: 100%;
}

.donate-wave path {
  fill: #0a0a0e;
}

/* SEÇÃO DE CONTATO - FUNDO ESCURO */
.contact-section {
  padding: 4rem 1rem;
  background: #0a0a0e;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-subtitle {
  color: #E85934;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}

.contact-title span {
  color: #E85934;
}

.contact-description {
  font-size: 1.1rem;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: rgba(232, 89, 52, 0.1);
  border-color: rgba(232, 89, 52, 0.3);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #E85934;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details a {
  color: #E85934;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  word-break: break-all;
}

.contact-details a:hover {
  color: #ff7d5c;
}

.contact-details p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-details span {
  color: #999;
  font-size: 0.85rem;
}

.contact-social {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contact-social h3 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(232, 89, 52, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E85934;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-link:hover {
  background: #E85934;
  color: white;
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-map {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.map-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.map-container:hover img {
  transform: scale(1.03);
}

.map-overlay {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(232, 89, 52, 0.9);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.map-actions {
  text-align: center;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #E85934;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.map-btn:hover {
  background: #ff7d5c;
  transform: translateY(-2px);
}

/* Media Queries para Responsividade */
@media (min-width: 576px) {
  .contact-section {
    padding: 4rem 2rem;
  }
  
  .contact-card {
    flex-direction: row;
    align-items: center;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .contact-social {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-card {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .map-container img {
    height: 300px;
  }
}

@media (min-width: 992px) {
  .contact-section {
    padding: 6rem 2rem;
  }
  
  .contact-grid {
    gap: 4rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
  
  .contact-social {
    padding: 2rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .contact-section {
    padding: 6rem 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
}
/* FOOTER - FUNDO ESCURO */
.site-footer {
  background: #0a0a0e;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  color: #ddd;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #bbb;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  background: rgba(232, 89, 52, 0.2);
  color: #E85934;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(232, 89, 52, 0.3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #E85934;
  padding-left: 5px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-newsletter h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-newsletter p {
  color: #bbb;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #333;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  background: #E85934;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #ff7d5c;
}

.footer-app h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ddd;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
  background: rgba(232, 89, 52, 0.2);
  color: #fff;
  border-color: rgba(232, 89, 52, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  color: #999;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #E85934;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.footer-particle {
  position: absolute;
  background: rgba(232, 89, 52, 0.05);
  border-radius: 50%;
  animation: floatParticle 15s infinite linear;
  border: 1px solid rgba(232, 89, 52, 0.1);
}

.footer-particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.footer-particle:nth-child(2) {
  width: 50px;
  height: 50px;
  bottom: 30%;
  right: 15%;
  animation-delay: 5s;
}

.footer-particle:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 60%;
  left: 20%;
  animation-delay: 10s;
}

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

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  .donate-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .donate-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .contact-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .donate-section {
    padding: 4rem 0 0;
  }
  
  .contact-section {
    padding: 4rem 0;
  }
  
  .site-footer {
    padding: 3rem 0 2rem;
  }
  
  .donate-title {
    font-size: 2rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .payment-icons {
    flex-wrap: wrap;
  }
}

/* ESTILOS PARA A SEÇÃO EXTRATIVISMO QUE ALIMENTA */
.extrativismo-preview {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('caminho/para/textura-background.jpg');
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.extrativismo-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2E8B57 0%, #0d0d0d 100%);
  opacity: 0.9;
  z-index: -1;
}

.extrativismo-preview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.preview-header {
  text-align: center;
  margin-bottom: 3rem;
}

.preview-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FF7B00 0%, #3CB371 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.preview-header p {
  font-size: 1.5rem;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}

.divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #FF7B00, #3CB371);
  margin: 0 auto;
  border-radius: 2px;
}

.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.preview-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

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

.preview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  text-align: center;
}

.preview-info h3 {
  font-size: 2.5rem;
  color: #FF7B00;
  margin-bottom: 1.5rem;
}

.preview-info p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #f8fafc;
}

.benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 123, 0, 0.2);
  transform: translateX(5px);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #3CB371;
  margin-right: 1rem;
  width: 30px;
}

.benefit-item span {
  font-size: 1.1rem;
  color: #f8fafc;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF7B00 0%, #FF5E00 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.5);
}

.cta-button.secondary {
  background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%);
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
}

.cta-button.secondary:hover {
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.5);
}

/* Responsividade */
@media (max-width: 968px) {
  .preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .preview-header h2 {
    font-size: 2.5rem;
  }
  
  .preview-header p {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .extrativismo-preview {
    padding: 3rem 0;
  }
  
  .preview-header h2 {
    font-size: 2rem;
  }
  
  .preview-info h3 {
    font-size: 2rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-item i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* ESTILOS ESPECÍFICOS PARA A SEÇÃO CAMU-CAMU */
.camucamu-preview {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a00 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.camucamu-preview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.camucamu-preview .preview-header h2 {
  background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.camucamu-preview .divider {
  background: linear-gradient(to right, #FF8C00, #FFD700);
}

.camucamu-preview .preview-info h3 {
  color: #FFD700;
}

.camucamu-preview .benefit-item i {
  color: #FF8C00;
}

.camucamu-preview .benefit-item {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.camucamu-preview .benefit-item:hover {
  background: rgba(255, 140, 0, 0.2);
}

.camucamu-preview .preview-info p {
  color: #f8f8f8;
}

.camucamu-preview .benefit-item span {
  color: #fff;
}

.camucamu-preview .cta-button {
  background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  color: #1a1a1a;
}

.camucamu-preview .cta-button:hover {
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.5);
  color: #1a1a1a;
}

.camucamu-preview .cta-button.secondary {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a00 100%);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  color: #FFD700;
  border: 2px solid #FF8C00;
}

.camucamu-preview .cta-button.secondary:hover {
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
  color: #1a1a1a;
}

/* RESPONSIVIDADE ESPECÍFICA */
@media (max-width: 968px) {
  .camucamu-preview .preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .camucamu-preview {
    padding: 3rem 0;
  }
}

/* ESTILOS ESPECÍFICOS PARA A SEÇÃO PIQUIÁ */
.piquia-preview {
  background: linear-gradient(135deg, #2d4a18 0%, #1a2a0e 100%);
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.piquia-preview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.piquia-preview .preview-header h2 {
  background: linear-gradient(135deg, #8dbc45 0%, #5a8429 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.piquia-preview .divider {
  background: linear-gradient(to right, #8dbc45, #5a8429);
}

.piquia-preview .preview-info h3 {
  color: #8dbc45;
}

.piquia-preview .benefit-item i {
  color: #8dbc45;
}

.piquia-preview .benefit-item {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.piquia-preview .benefit-item:hover {
  background: rgba(141, 188, 69, 0.2);
}

.piquia-preview .preview-info p {
  color: #f8f8f8;
}

.piquia-preview .benefit-item span {
  color: #fff;
}

.piquia-preview .cta-button {
  background: linear-gradient(135deg, #8dbc45 0%, #5a8429 100%);
  box-shadow: 0 5px 15px rgba(141, 188, 69, 0.3);
  color: #1a2a0e;
}

.piquia-preview .cta-button:hover {
  box-shadow: 0 8px 20px rgba(141, 188, 69, 0.5);
  color: #1a2a0e;
}

.piquia-preview .cta-button.secondary {
  background: linear-gradient(135deg, #1a2a0e 0%, #2d4a18 100%);
  box-shadow: 0 5px 15px rgba(141, 188, 69, 0.3);
  color: #8dbc45;
  border: 2px solid #8dbc45;
}

.piquia-preview .cta-button.secondary:hover {
  box-shadow: 0 8px 20px rgba(141, 188, 69, 0.5);
  background: linear-gradient(135deg, #8dbc45 0%, #5a8429 100%);
  color: #1a2a0e;
}

/* RESPONSIVIDADE ESPECÍFICA */
@media (max-width: 968px) {
  .piquia-preview .preview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .piquia-preview {
    padding: 3rem 0;
  }
}