/* Fonte padrão */
body {
  font-family: 'Inter', sans-serif;
}

/* Paleta da marca */
.brand-blue { color: #1F3B66; }
.bg-brand-blue { background-color: #1F3B66; }
.bg-brand-green { background-color: #3CB371; }
.bg-brand-cyan { background-color: #34A8C8; }
.text-brand-gray { color: #4A4A4A; }
.bg-brand-light { background-color: #F3F4F6; }
.bg-brand-gradient {
  background: linear-gradient(90deg, #3CB371 0%, #34A8C8 100%);
}

/* Elementos reutilizáveis */
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.card {
  background-color: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(31, 59, 102, 0.04);
}
.card-hover {
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 59, 102, 0.08);
}
.card-diagonal-green {
  background: linear-gradient(135deg, rgba(60, 179, 113, 0.18) 0%, rgba(52, 168, 200, 0.08) 100%);
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
}
.card-diagonal-cyan {
  background: linear-gradient(135deg, rgba(52, 168, 200, 0.18) 0%, rgba(60, 179, 113, 0.08) 100%);
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
}
.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(15, 31, 52, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15, 31, 52, 0.18);
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: -30% 40% 40% -30%;
  border-radius: 999px;
  transform: rotate(25deg);
  opacity: 0.45;
}
.solution-card.finance::before {
  background: linear-gradient(135deg, rgba(60,179,113,0.65), rgba(52,168,200,0.25));
}
.solution-card.sales::before {
  background: linear-gradient(135deg, rgba(52,168,200,0.65), rgba(31,59,102,0.3));
}
.solution-card.marketing::before {
  background: linear-gradient(135deg, rgba(31,59,102,0.6), rgba(52,168,200,0.3));
}
.solution-card.hr::before {
  background: linear-gradient(135deg, rgba(60,179,113,0.55), rgba(31,59,102,0.28));
}
.solution-card .card-content {
  position: relative;
  z-index: 1;
}
.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #1F3B66;
}
.solution-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #1F3B66;
}
.sector-list {
  position: relative;
  padding-left: 3rem;
  margin-top: 3rem;
}
.sector-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(60,179,113,0.7), rgba(31,59,102,0.5));
  border-radius: 1rem;
}
.sector-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 3rem;
}
.sector-item:last-child {
  margin-bottom: 0;
}
.sector-item::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0.4rem;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3CB371, #34A8C8);
  box-shadow: 0 8px 18px rgba(31,59,102,0.18);
}
.sector-heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: #1F3B66;
}
.sector-description {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #4A4A4A;
}
.sector-details {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #4A4A4A;
}
.sector-details li {
  margin-left: 1rem;
  margin-top: 0.35rem;
}
.sector-stack {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.solutions-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}
.solutions-track::-webkit-scrollbar {
  height: 8px;
}
.solutions-track::-webkit-scrollbar-thumb {
  background-color: rgba(31, 59, 102, 0.35);
  border-radius: 999px;
}
.solution-panel {
  flex: 0 0 85%;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2.25rem;
  box-shadow: 0 25px 55px rgba(15, 31, 52, 0.14);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .solution-panel {
    flex: 0 0 45%;
  }
}
.solution-panel::before {
  content: "";
  position: absolute;
  inset: -20% 60% 40% -20%;
  background: linear-gradient(135deg, rgba(60,179,113,0.4), rgba(52,168,200,0.15));
  border-radius: 999px;
  transform: rotate(20deg);
  opacity: 0.65;
}
.solution-panel.sales::before {
  background: linear-gradient(135deg, rgba(52,168,200,0.45), rgba(31,59,102,0.2));
}
.solution-panel.marketing::before {
  background: linear-gradient(135deg, rgba(31,59,102,0.4), rgba(52,168,200,0.2));
}
.solution-panel.hr::before {
  background: linear-gradient(135deg, rgba(60,179,113,0.4), rgba(31,59,102,0.18));
}
.solution-panel-content {
  position: relative;
  z-index: 1;
}
.solution-kpi {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-weight: 700;
  color: #1F3B66;
  font-size: 2.25rem;
}
.solution-kpi span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.solutions-dots {
  display: flex;
  gap: 0.35rem;
  margin-top: 1rem;
  justify-content: center;
}
.solutions-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(31, 59, 102, 0.2);
}
.solutions-dots span.active {
  background: #1F3B66;
}
.solutions-carousel {
  position: relative;
}
.solutions-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 25px rgba(15, 31, 52, 0.18);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
  z-index: 5;
}
.solutions-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 15px 32px rgba(15, 31, 52, 0.22);
}
.solutions-arrow--prev {
  left: -1.25rem;
}
.solutions-arrow--next {
  right: -1.25rem;
}
@media (max-width: 1024px) {
  .solutions-arrow {
    display: none;
  }
}
.ring-gradient {
  position: relative;
}
.ring-gradient::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(60,179,113,0.6), rgba(52,168,200,0.6));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}

.btn-primary {
  background: linear-gradient(90deg, #3CB371 0%, #34A8C8 100%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: transform 150ms ease, opacity 150ms ease;
}
.btn-primary:hover { transform: translateY(-1px); opacity: 0.95; }
.btn-primary:active { transform: translateY(0); opacity: 1; }

.btn-secondary {
  background-color: #ffffff;
  color: #1F3B66;
  border: 1px solid #E5E7EB;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background-color 150ms ease, color 150ms ease;
}
.btn-secondary:hover {
  background-color: #F9FAFB;
  color: #143055;
}

/* Navegação fixa (opcional) */
.sticky-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: saturate(180%) blur(10px);
  background-color: rgba(255, 255, 255, 0.85);
}

/* Containers */
.container-max {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline (Trilho) */
.timeline-rail {
  position: absolute;
  left: 1.5rem; /* alinha com padding-left dos itens (pl-12) */
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(60,179,113,0.85) 0%, rgba(52,168,200,0.85) 100%);
  border-radius: 9999px;
  overflow: visible;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.8),
    0 12px 24px rgba(31,59,102,0.08);
}
.timeline-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  background: radial-gradient(ellipse at center, rgba(60,179,113,0.18) 0%, rgba(52,168,200,0) 70%);
  filter: blur(6px);
  pointer-events: none;
}
.timeline-dot {
  position: absolute;
  left: 1.5rem;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #3CB371 0%, #34A8C8 100%);
  border: 3px solid #ffffff;
  box-shadow: 0 10px 18px rgba(31, 59, 102, 0.18), 0 0 12px rgba(52, 168, 200, 0.4);
}
.timeline-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(52,168,200,0.25) 0%, rgba(52,168,200,0) 70%);
  opacity: 0.9;
}
.contact-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 25px 55px rgba(15, 31, 52, 0.18);
}
.footer-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 150ms ease;
}
.footer-link:hover {
  color: #ffffff;
}


