/* ============================================================
   sobre/style.css — Página Sobre a Clicksoft
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --lime:          #dcfc17;
  --lime-hover:    #cde600;
  --purple-deep:   #0d0921;
  --purple-mid:    #160d30;
  --purple-high:   #1e1347;
  --purple-card:   rgba(80,57,140,.18);
  --purple-border: rgba(105,65,198,.3);
  --white:         #ffffff;
  --white-soft:    rgba(255,255,255,.72);
  --white-muted:   rgba(255,255,255,.45);
  --radius:        16px;
  --transition:    all 0.3s ease;
}

html  { scroll-behavior: smooth; }
body  {
  font-family: 'Manrope', sans-serif;
  background: var(--purple-deep);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  padding: 14px 28px;
  transition: var(--transition);
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn--yellow {
  background: var(--lime);
  color: #0d0921;
}
.btn--yellow:hover { background: var(--lime-hover); box-shadow: 0 0 20px rgba(220,252,23,.35); }

/* ── Eyebrow / Section labels ────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow--lime { color: var(--lime); }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--white-soft);
  max-width: 680px;
  margin-bottom: 56px;
}
.text-lime { color: var(--lime); }

/* ── Fade-in ──────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(13,9,33,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.sticky-header.is-visible { transform: translateY(0); }

.sticky-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-logo { display: flex; align-items: center; }
.sticky-logo img { height: 32px; width: auto; }
.sticky-logo__icon { display: none; }
.sticky-cta { font-size: 14px; padding: 10px 22px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #0d0921 0%, #160d30 55%, #1e1347 100%);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(105,65,198,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-nav {
  padding: 28px 0 0;
}
.hero-logo img { height: 42px; width: auto; }

.hero-body {
  padding: 72px 0 0;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--white-soft);
  max-width: 680px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
}
.hero-stat {
  flex: 1;
  min-width: 140px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { border-right: none; padding-right: 0; }
.hero-stat strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: .875rem;
  color: var(--white-muted);
  font-weight: 500;
}

/* ============================================================
   HISTÓRIA / TIMELINE
   ============================================================ */
.historia {
  background: var(--purple-mid);
  padding: 100px 0;
}

.timeline {
  position: relative;
  margin-top: 16px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--purple-border) 10%, var(--purple-border) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 64px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-item--left  { flex-direction: row; }
.timeline-item--right { flex-direction: row-reverse; }

.timeline-year {
  flex: 0 0 calc(50% - 40px);
  text-align: right;
  font-size: 3rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  padding-top: 4px;
  opacity: .7;
}
.timeline-item--right .timeline-year { text-align: left; }

.timeline-content {
  flex: 0 0 calc(50% - 40px);
  background: linear-gradient(145deg, rgba(80,57,140,.2), rgba(22,13,48,.3));
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  position: relative;
}
.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 14px;
  height: 14px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(220,252,23,.4);
}
.timeline-item--left  .timeline-content::before { right: -47px; }
.timeline-item--right .timeline-content::before { left:  -47px; }

.timeline-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.timeline-content p {
  font-size: .9375rem;
  color: var(--white-soft);
  line-height: 1.65;
}

/* ============================================================
   LIDERANÇA
   ============================================================ */
.lideranca {
  background: var(--purple-deep);
  padding: 100px 0;
}

.lideranca-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 8px;
}

.pessoa-card {
  background: linear-gradient(145deg, rgba(80,57,140,.18), rgba(22,13,48,.3));
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: var(--transition);
}
.pessoa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220,252,23,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(220,252,23,.1);
}

.pessoa-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 24px;
  border: 2px solid var(--lime);
  overflow: hidden;
}
.pessoa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.pessoa-avatar--carlos { background: linear-gradient(135deg, #291858, #50398c); }
.pessoa-avatar--gabi   { background: linear-gradient(135deg, #0d0921, #3a2478); }

.pessoa-nome {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pessoa-cargo {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.pessoa-bio {
  font-size: .9375rem;
  color: var(--white-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.pessoa-bio strong { color: var(--white); }

.pessoa-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--lime);
  border: 1px solid rgba(220,252,23,.3);
  border-radius: 8px;
  padding: 8px 16px;
  transition: var(--transition);
}
.pessoa-linkedin:hover {
  background: rgba(220,252,23,.08);
  border-color: var(--lime);
}

/* ============================================================
   EQUIPE / ESPECIALIDADES
   ============================================================ */
.equipe {
  background: var(--purple-mid);
  padding: 100px 0;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.especialidade-card {
  background: linear-gradient(145deg, rgba(80,57,140,.15), rgba(22,13,48,.2));
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.especialidade-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220,252,23,.25);
}
.especialidade-icon {
  width: 44px;
  height: 44px;
  background: rgba(220,252,23,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.especialidade-icon i {
  font-size: 1.125rem;
  color: var(--lime);
}
.especialidade-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.especialidade-card p {
  font-size: .8125rem;
  color: var(--white-soft);
  line-height: 1.55;
}

/* ============================================================
   CLIENTES / MARQUEE
   ============================================================ */
.clientes {
  background: var(--purple-deep);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.clientes-label {
  text-align: center;
  font-size: .9375rem;
  color: var(--white-muted);
  margin-bottom: 36px;
}

.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: .55;
  filter: brightness(0) invert(1);
  transition: opacity .3s ease;
  flex-shrink: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track img:hover { opacity: .85; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   CTA FINAL / SERVIÇOS
   ============================================================ */
.cta-final {
  background: var(--purple-mid);
  padding: 100px 0;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.servico-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(145deg, rgba(80,57,140,.15), rgba(22,13,48,.2));
  border: 1px solid var(--purple-border);
  border-radius: 12px;
  padding: 20px 22px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--white-soft);
  transition: var(--transition);
  text-decoration: none;
}
.servico-card:hover {
  transform: translateY(-3px);
  border-color: rgba(220,252,23,.3);
  color: var(--white);
  background: linear-gradient(145deg, rgba(80,57,140,.28), rgba(22,13,48,.35));
}
.servico-card > i:first-child {
  font-size: 1rem;
  color: var(--lime);
  flex-shrink: 0;
}
.servico-card span { flex: 1; }
.servico-arrow {
  font-size: .75rem;
  color: var(--white-muted);
  transition: var(--transition);
}
.servico-card:hover .servico-arrow {
  color: var(--lime);
  transform: translateX(4px);
}

.cta-contato {
  text-align: center;
  padding-top: 16px;
}
.cta-contato p {
  font-size: 1.125rem;
  color: var(--white-soft);
  margin-bottom: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #070516;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .8125rem;
  color: var(--white-muted);
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  color: var(--white-muted);
  font-size: 1.125rem;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--lime); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid        { grid-template-columns: repeat(2, 1fr); }

  .timeline::before { display: none; }
  .timeline-item,
  .timeline-item--right { flex-direction: column; gap: 16px; }
  .timeline-year { flex: none; text-align: left; font-size: 2.25rem; }
  .timeline-content { flex: none; width: 100%; }
  .timeline-content::before { display: none; }
}

@media (max-width: 768px) {
  .container--wide { padding: 0 20px; }

  .hero-stats { gap: 24px; }
  .hero-stat  { flex: 0 0 calc(50% - 12px); border-right: none; padding-right: 0; }

  .lideranca-grid   { grid-template-columns: 1fr; }
  .especialidades-grid { grid-template-columns: 1fr 1fr; }
  .servicos-grid    { grid-template-columns: 1fr; }

  .sticky-logo__full { display: none; }
  .sticky-logo__icon { display: block; }

  .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat  { flex: none; }
  .especialidades-grid { grid-template-columns: 1fr; }
}
