:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --border-subtle: #222222;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --text-muted: #666666;
  --accent: #10B981;
  --accent-hover: #059669;
  --accent-soft: rgba(16, 185, 129, 0.1);
  --cta-primary-bg: #ffffff;
  --cta-primary-text: #0a0a0a;
  --cta-secondary-bg: transparent;
  --cta-secondary-border: #333333;
  --announcement-bg: #065F46;
  --whatsapp: #25D366;
  
  --font-sans: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.text-accent {
  color: var(--accent) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-primary);
}

h1 {
  font-size: 36px;
  line-height: 1.1;
}

.hero-headline {
  font-size: 34px; /* Aumentado para mobile */
  margin-top: -35px; /* Puxa para cima para sobrepor a imagem levemente */
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9); /* Sombra para garantir leitura sobre o bg escuro/imagem */
}

@media (min-width: 992px) {
  h1 {
    font-size: 56px;
  }
  
  .hero-headline {
    font-size: 44px; /* Reduzido para otimizar espaço vertical */
    line-height: 1.15;
    margin-top: 0; /* Reseta a margem no desktop */
    text-shadow: none;
  }
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

@media (min-width: 992px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

.sub-headline {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
}

@media (min-width: 992px) {
  .sub-headline {
    font-size: 20px;
  }
}

.badge-accent {
  background-color: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}

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

a:hover {
  color: var(--accent-hover);
}

/* Announcement Bar */
#announcement-bar {
  background-color: var(--announcement-bg);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 1040;
}

#announcement-bar a {
  color: #fff;
  text-decoration: underline;
}

#announcement-bar .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  font-size: 10px;
}

/* Header */
.navbar {
  background-color: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  padding: 4px 0; /* Reduzido no mobile */
  position: relative;
}

.header-logo {
  height: 28px; /* Reduzido no mobile */
}

@media (min-width: 992px) {
  .navbar {
    padding: 15px 0; /* Retorna ao normal no desktop */
  }
  .header-logo {
    height: 50px; /* Aumentado no desktop */
  }
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand span {
  color: var(--accent);
}

.navbar-brand small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-left: 4px;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary) !important;
}

.navbar-toggler {
  border: none;
  color: var(--text-primary);
}

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

.offcanvas {
  background-color: var(--bg-secondary);
}

.offcanvas-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Buttons */
.btn-primary-custom {
  background-color: var(--cta-primary-bg);
  color: var(--cta-primary-text);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background-color: #e6e6e6;
  color: var(--cta-primary-text);
  transform: translateY(-2px);
}

.btn-dark-custom {
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-dark-custom:hover {
  background-color: #333333;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary-custom {
  background-color: var(--cta-secondary-bg);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  border: 1px solid var(--cta-secondary-border);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary-custom:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 60px 0;
}

@media (min-width: 992px) {
  section {
    padding: 100px 0;
  }
}

.bg-secondary-custom {
  background-color: var(--bg-secondary);
}

.bg-tertiary-custom {
  background-color: var(--bg-tertiary);
}

/* Hero Section */
#inicio {
  position: relative;
  overflow: hidden;
  padding-top: 0; /* Removido para colar a imagem no header */
  padding-bottom: 20px; /* Reduzido para puxar os parceiros para cima no mobile */
}

@media (min-width: 992px) {
  #inicio {
    padding-top: 0; /* Removido para colar a imagem no header */
    padding-bottom: 0; /* Removido para colar os logos no ticker no desktop */
  }
}

#inicio::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.social-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  margin-top: 0;
  padding-bottom: 0; /* Removido no mobile */
  border-bottom: none; /* Removido no mobile */
}

.social-proof-text {
  font-size: 13px; /* Reduzido no mobile */
}

@media (min-width: 992px) {
  .social-proof-strip {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding-bottom: 16px; /* Retorna no desktop, mas reduzido para aproximar parceiros */
    border-bottom: 1px solid var(--border-subtle); /* Retorna no desktop */
  }
  .social-proof-text {
    font-size: 16px; /* Retorna ao normal no desktop */
  }
}

.avatars {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-left: -10px;
  background-size: cover;
  background-position: center;
}

.avatar:first-child { margin-left: 0; }
.avatar-1 { background-color: #3b82f6; background-image: url('https://mapalicitacoes.com.br/img/fotos_bolinhas/pessoa1.webp'); }
.avatar-2 { background-color: #ef4444; background-image: url('https://mapalicitacoes.com.br/img/fotos_bolinhas/pessoa2.webp'); }
.avatar-3 { background-color: #10b981; background-image: url('https://mapalicitacoes.com.br/img/fotos_bolinhas/pessoa3.webp'); }
.avatar-4 { background-color: #f59e0b; background-image: url('https://mapalicitacoes.com.br/img/fotos_bolinhas/pessoa4.webp'); }
.avatar-5 { background-color: #8b5cf6; background-image: url('https://mapalicitacoes.com.br/img/fotos_bolinhas/pessoa5.webp'); }

/* Hero Image Layout */
.hero-image-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 0; /* Removido para economizar espaço no mobile */
  padding: 0; /* Removido padding para colar nas laterais */
  margin-top: 0; /* Removido para colar no header */
  width: 100%;
}

/* Pseudo-elemento para criar o fade suave nas bordas no mobile */
.hero-image-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, transparent 0%, transparent 70%, #0a0a0a 100%),
    linear-gradient(to right, #0a0a0a 0%, transparent 15%, transparent 85%, #0a0a0a 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-inner {
  position: relative;
  width: 100%;
  max-width: 100%; /* Permitir ocupar toda a largura */
  height: 220px; /* Altura aumentada para mostrar mais do corpo */
  margin: 0 auto;
  border-radius: 0; /* Removido border-radius */
  overflow: hidden;
}

.hero-capa-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* Foca mais no topo para não cortar o rosto */
  transform: scale(1.9) translateY(-10%); /* Aumentado o zoom na imagem no mobile e movido para cima */
  transform-origin: top center; /* Evita que o topo seja cortado pelo overflow: hidden */
  opacity: 1; /* Aumentado para ficar mais viva */
}

@media (min-width: 992px) {
  .hero-top-section {
    min-height: 65vh; /* Garante que a sessão tenha uma altura boa no desktop (reduzido em ~20%) */
  }

  .hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60vw; /* Aumentado para 60vw para dar mais espaço ao fade e à imagem */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    z-index: 0;
    pointer-events: none;
  }

  /* Pseudo-elemento para criar o fade perfeito sem cortar a imagem */
  .hero-image-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0a0a0a 0%, transparent 40%),
                linear-gradient(to top, #0a0a0a 0%, transparent 20%);
    z-index: 1;
  }

  .hero-image-inner {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
  }

  .hero-capa-img {
    width: 100%;
    height: 85vh; /* Mantém a altura original para preservar o zoom exato */
    max-width: none;
    object-fit: cover;
    object-position: 55% center; /* Restaura a posição original */
    border-radius: 0;
    opacity: 1; /* Opacidade ajustada para ficar mais viva */
    transform: translateY(-10vh); /* Move a imagem para cima para cortar o topo (reduzido para 10%) */
  }
}

/* Ticker */
.ticker-wrap {
  background-color: var(--bg-tertiary);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background-color: var(--text-secondary);
  opacity: 0.5;
}

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

.ticker-content {
  display: inline-flex;
  animation: marquee 120s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 40px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.ticker-item i {
  color: var(--accent);
  font-size: 10px;
  animation: pulse 2s infinite;
}

/* Logos Marquee */
.logos-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  padding: 8px 0 10px 0; /* Ainda mais reduzido para centralizar no mobile */
}

@media (min-width: 992px) {
  .logos-wrap {
    padding: 24px 0 32px 0; /* Espaço simétrico mantido no desktop */
  }
}

.logos-content {
  display: inline-flex;
  animation: marquee 60s linear infinite;
  align-items: center;
}

.logo-parceiro {
  display: inline-flex;
  align-items: center;
  margin-right: 60px;
}

/* Estado padrão - logo escuro/cinza */
.logo-parceiro img {
  height: 50px;
  width: auto;
}

/* Numbers Section */
.bg-light-section {
  background-color: #F5F5F5;
  padding: 80px 0;
}

.number-card-light {
  background-color: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.number-card-light:hover {
  border-color: rgba(0,0,0,0.1);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.number-card-light .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.number-card-light .number-value {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.number-card-light .number-desc {
  font-size: 15px;
  color: #555555;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .bg-light-section {
    padding: 40px 0;
  }
  .number-card-light {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    gap: 16px;
  }
  .number-card-light .card-icon {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .number-card-light .number-content {
    flex: 1;
  }
  .number-card-light .number-value {
    font-size: 32px;
    margin-bottom: 4px;
  }
  .number-card-light .number-desc {
    font-size: 13px;
  }
}

/* Old Number Card (kept for reference or other uses) */
.number-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.number-card:hover {
  border-color: #333;
  transform: scale(1.02);
}

.number-value {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.number-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Solutions Cards */
.solution-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  border-color: #333;
  transform: scale(1.02);
}

.solution-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 24px;
}

.solution-card h3 {
  margin-bottom: 12px;
}

.solution-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 0;
  flex-grow: 1;
}

.btn-expand {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.btn-expand:hover {
  color: var(--accent);
}

.solution-details {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text-secondary);
}

/* Educational Section */
.truth-myth-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}

.truth-myth-card.truth {
  background: linear-gradient(to bottom, rgba(16, 185, 129, 0.05), var(--bg-primary));
  border-top: 2px solid var(--accent);
}

.truth-myth-card.myth {
  background: linear-gradient(to bottom, rgba(239, 68, 68, 0.05), var(--bg-primary));
  border-top: 2px solid #ef4444;
}

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

.truth-myth-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.truth-myth-list li:last-child {
  margin-bottom: 0;
}

.truth-myth-list.truth i {
  color: var(--accent);
  font-size: 20px;
}

.truth-myth-list.myth i {
  color: #ef4444;
  font-size: 20px;
}

/* Educacional Section Light */
.educacional-light h2 {
  color: #111111;
}

.educacional-light p.text-secondary {
  color: #444444 !important;
}

.interactive-myth-box {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}

.myth-truth-item {
  display: grid;
  margin-bottom: 16px;
}

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

.myth-text, .truth-text {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 500;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
}

.myth-text {
  background-color: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border-left: 4px solid #ef4444;
  animation: fadeMyth 12s infinite;
}

.truth-text {
  background-color: rgba(16, 185, 129, 0.08);
  color: #059669;
  border-left: 4px solid #10b981;
  animation: fadeTruth 12s infinite;
  opacity: 0;
}

.myth-text i, .truth-text i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

@keyframes fadeMyth {
  0%, 45% { opacity: 1; z-index: 2; }
  50%, 95% { opacity: 0; z-index: 1; }
  100% { opacity: 1; z-index: 2; }
}

@keyframes fadeTruth {
  0%, 45% { opacity: 0; z-index: 1; }
  50%, 95% { opacity: 1; z-index: 2; }
  100% { opacity: 0; z-index: 1; }
}

.myth-truth-item:nth-child(1) .myth-text, .myth-truth-item:nth-child(1) .truth-text { animation-delay: 0s; }
.myth-truth-item:nth-child(2) .myth-text, .myth-truth-item:nth-child(2) .truth-text { animation-delay: 2s; }
.myth-truth-item:nth-child(3) .myth-text, .myth-truth-item:nth-child(3) .truth-text { animation-delay: 4s; }
.myth-truth-item:nth-child(4) .myth-text, .myth-truth-item:nth-child(4) .truth-text { animation-delay: 6s; }
.myth-truth-item:nth-child(5) .myth-text, .myth-truth-item:nth-child(5) .truth-text { animation-delay: 8s; }
.myth-truth-item:nth-child(6) .myth-text, .myth-truth-item:nth-child(6) .truth-text { animation-delay: 10s; }

.data-card-light {
  background-color: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.data-card-light:hover {
  border-color: rgba(0,0,0,0.1);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.data-card-light h4 {
  color: #111111;
  font-weight: 700;
}

.data-card-light p {
  color: #444444;
}

.data-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}

/* About Section */
.ceo-block-container {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(0, 0, 0, 0.2);
}

.ceo-block-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://mapalicitacoes.com.br/img/edificio_escuro.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15; /* Opacidade baixa para manter legibilidade */
  z-index: 0;
  transform: scale(0.9);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

.ceo-block-container > * {
  position: relative;
  z-index: 1;
}

.about-image-container {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.mission-card h4 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Social Proof */
.video-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: #333;
  transform: scale(1.02);
}

.video-card i {
  font-size: 64px;
  color: #fff;
  opacity: 0.8;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-card:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.video-label {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.instagram-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.contract-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contract-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ */
.accordion-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-button {
  background-color: transparent;
  color: var(--text-primary);
  font-weight: 600;
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--accent);
}

.accordion-button::after {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.accordion-body {
  padding: 0 24px 24px 24px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* Footer */
footer {
  background-color: #050505;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px 0;
}

.footer-brand {
  font-weight: 700;
  font-size: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-brand span {
  color: var(--accent);
}

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

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  margin-top: 60px;
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: float-pulse 2s infinite;
}

.floating-whatsapp:hover {
  background-color: #1ebe5d;
  color: #fff;
  transform: scale(1.1);
}

/* Animations */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes float-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal--active {
  opacity: 1;
  transform: translateY(0);
}
