:root {
  --primary: #0a0a0a;
  --secondary: #1e1e1e;
  --accent: #ff6c26;
  --text: rgba(255, 255, 255, 0.95);
}

body {
  background: var(--primary);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.stagger-delay {
  transition-delay: 0.2s;
}

.stagger-delay-2 {
  transition-delay: 0.4s;
}

.section {
  padding: 8rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    45deg,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(30, 30, 30, 0.7) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 120%;
  height: 200px;
  background: var(--accent);
  transform: rotate(-3deg);
  filter: blur(80px);
  opacity: 0.1;
}

.display-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #ff6c26, #ff9f4d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 2rem;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 60%;
  background: var(--accent);
}

.color-card {
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.color-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05));
}

.doc-card {
  background: var(--secondary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.doc-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.doc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.doc-card:hover::after {
  transform: scaleX(1);
}

.timeline-item {
  padding: 2rem;
  margin: 4rem 0;
  border-left: 2px solid var(--accent);
  position: relative;
  background: linear-gradient(90deg, transparent, rgba(255, 108, 38, 0.05));
}

.partner-logo {
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s ease;
  padding: 1rem;
  height: 10dvh;
  background: var(--secondary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.stat-number::after {
  content: "+";
  position: absolute;
  right: -20px;
  top: 0;
  color: var(--accent);
  font-size: 2rem;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white !important;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 108, 38, 0.2);
}

.timeline-current-year {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #0d6efd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.timeline-year-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d6efd;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-highlight {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d6efd;
  margin: 0 8px;
}

.timeline-current-year:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Adiciona transição suave */
[data-category] {
  transition: all 0.3s ease;
}

/* Ajusta o botão ativo */
.btn-outline-accent.active {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* Melhora a usabilidade dos botões */
.btn-outline-accent:hover {
  background: rgba(255, 108, 38, 0.1);
}

/* Ajusta a animação de filtragem */
.asset-card {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 992px) {
  .navbar-collapse {
    padding: 1rem;
    background: var(--primary);
    border-radius: 12px;
    margin-top: 1rem;
  }

  .section {
    padding: 4rem 0;
    min-height: auto;
  }
}
