/* ===== Reset & base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: #16243B;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #5A5FF0; text-decoration: none; }
a:hover { color: #4448C5; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: #5A5FF0; color: #fff; }

.highlight { color: #5A5FF0; }
.icon { width: 1em; height: 1em; display: block; fill: currentColor; flex-shrink: 0; }

/* ===== Zoomable image frames ===== */
.zoom-frame { position: relative; cursor: zoom-in; }
.zoom-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, .35);
  opacity: 0;
  transform: perspective(600px) rotateY(-90deg) scale(.2);
  transform-origin: left;
  transition: transform .5s, opacity .5s;
  z-index: 1;
  pointer-events: none;
}
.zoom-frame:hover::before { opacity: 1; transform: perspective(600px) rotateY(0deg) scale(1); }
.zoom-frame .zoomable { transition: transform .5s ease-out; }
.zoom-frame:hover .zoomable { transform: scale(1.06); }
@media (prefers-reduced-motion: reduce) {
  .zoom-frame::before, .zoom-frame::after, .zoom-frame .zoomable { transition: none; }
  .zoom-frame:hover .zoomable { transform: none; }
}

/* ===== Motion ===== */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(90, 95, 240, .35); }
  70% { box-shadow: 0 0 0 16px rgba(90, 95, 240, 0); }
  100% { box-shadow: 0 0 0 0 rgba(90, 95, 240, 0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-image-frame { animation: none; }
  .btn-primary { animation: none; }
  [data-reveal] { transition: none !important; }
}

/* Reveal-on-scroll: visible by default. JS opts sections into the pre-reveal
   state (.reveal-ready) only once the observer is armed, so content never
   depends on JS/IO succeeding to become visible. After the animation ends the
   JS strips both classes so hover transitions on cards return to their own
   (faster) timing. */
[data-reveal].reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].reveal-ready.in-view { opacity: 1; transform: translateY(0); }

/* Staggered children: cards/pills follow their section with a small cascade */
.reveal-ready .ged-card,
.reveal-ready .beyond-card,
.reveal-ready .service-card,
.reveal-ready .faq-item,
.reveal-ready .practice-item,
.reveal-ready .partner-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.16, 1, .3, 1), transform .55s cubic-bezier(.16, 1, .3, 1);
}
.reveal-ready.in-view .ged-card,
.reveal-ready.in-view .beyond-card,
.reveal-ready.in-view .service-card,
.reveal-ready.in-view .faq-item,
.reveal-ready.in-view .practice-item,
.reveal-ready.in-view .partner-card {
  opacity: 1;
  transform: translateY(0);
}
.reveal-ready.in-view .ged-card:nth-child(1), .reveal-ready.in-view .beyond-card:nth-child(1), .reveal-ready.in-view .service-card:nth-child(1),
.reveal-ready.in-view .faq-item:nth-child(1), .reveal-ready.in-view .practice-item:nth-child(1), .reveal-ready.in-view .partner-card:nth-child(1) { transition-delay: .1s; }
.reveal-ready.in-view .ged-card:nth-child(2), .reveal-ready.in-view .beyond-card:nth-child(2), .reveal-ready.in-view .service-card:nth-child(2),
.reveal-ready.in-view .faq-item:nth-child(2), .reveal-ready.in-view .practice-item:nth-child(2), .reveal-ready.in-view .partner-card:nth-child(2) { transition-delay: .18s; }
.reveal-ready.in-view .ged-card:nth-child(3), .reveal-ready.in-view .beyond-card:nth-child(3), .reveal-ready.in-view .service-card:nth-child(3),
.reveal-ready.in-view .faq-item:nth-child(3), .reveal-ready.in-view .practice-item:nth-child(3), .reveal-ready.in-view .partner-card:nth-child(3) { transition-delay: .26s; }
.reveal-ready.in-view .ged-card:nth-child(4), .reveal-ready.in-view .beyond-card:nth-child(4), .reveal-ready.in-view .service-card:nth-child(4),
.reveal-ready.in-view .faq-item:nth-child(4), .reveal-ready.in-view .partner-card:nth-child(4) { transition-delay: .34s; }
.reveal-ready.in-view .ged-card:nth-child(5), .reveal-ready.in-view .beyond-card:nth-child(5), .reveal-ready.in-view .faq-item:nth-child(5), .reveal-ready.in-view .partner-card:nth-child(5) { transition-delay: .42s; }
.reveal-ready.in-view .beyond-card:nth-child(6) { transition-delay: .5s; }
.reveal-ready.in-view .beyond-card:nth-child(7) { transition-delay: .58s; }
.reveal-ready.in-view .beyond-card:nth-child(8) { transition-delay: .66s; }

/* ===== Layout helpers ===== */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #5A5FF0;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-label.light { color: #9A9FF5; }
.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #0B1F3A;
  margin-bottom: 14px;
  text-wrap: balance;
}
.section-title.light { color: #fff; }
.section-desc {
  font-size: 17px;
  color: #5C6B82;
  line-height: 1.6;
  max-width: 65ch;
}
.section-desc.light { color: #C2D0E4; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6A6FF2, #5A5FF0);
  color: #fff;
  padding: 15px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  box-shadow: 0 10px 24px rgba(90, 95, 240, .28);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s cubic-bezier(.16, 1, .3, 1), background .2s;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.015); background: linear-gradient(135deg, #7175F4, #5A5FF0); box-shadow: 0 16px 32px rgba(90, 95, 240, .38); color: #fff; }
.btn-primary:active { transform: scale(.97); }
.btn-icon { display: flex; }
.btn-icon .icon { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: background .2s, transform .2s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); color: #fff; }
.btn-secondary:active { transform: scale(.97); }

.btn-login {
  color: #5A5FF0;
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid #DBDCFA;
  padding: 9px 18px;
  border-radius: 9px;
  transition: all .2s;
}
.btn-login:hover { background: #F0F0FE; border-color: #5A5FF0; color: #5A5FF0; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); color: #fff; }
.btn-whatsapp .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }

/* ===== Header / Nav ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #E8EDF5;
  transition: box-shadow .3s, background .3s;
}
.header.scrolled { background: rgba(255, 255, 255, 0.6); box-shadow: 0 8px 24px rgba(11, 31, 58, 0.09); }
.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 11px; }
.nav-logo { height: 44px; width: auto; }
.nav-text { font-size: 10.5px; color: #5C6B82; font-weight: 600; line-height: 1.3; max-width: 150px; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-panel-login { display: none; }
.nav-link {
  color: #3A4860;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 9px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-link:hover { color: #5A5FF0; }
.nav-link.active { color: #5A5FF0; background: #F0F0FE; font-weight: 700; }
.nav-actions { display: flex; gap: 11px; align-items: center; }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px 9px;
  background: none;
  border: 1px solid #E8EDF5;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #16243B;
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Anchored sections land below the sticky header */
section[id] { scroll-margin-top: 84px; }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-text { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 20px 18px;
    background: #fff;
    border-bottom: 1px solid #E8EDF5;
    box-shadow: 0 16px 32px rgba(11, 31, 58, 0.12);
  }
  .header { position: sticky; }
  .nav { position: relative; }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 14px; font-size: 15px; }
  .nav-panel-login { display: block; margin-top: 8px; text-align: center; }
  .nav-actions .btn-login { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #0B1F3A 0%, #10294A 60%, #143158 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(65% 60% at 84% 6%, rgba(90, 95, 240, 0.38), transparent 70%),
    radial-gradient(50% 55% at 6% 96%, rgba(106, 111, 242, 0.32), transparent 70%),
    radial-gradient(42% 46% at 98% 82%, rgba(154, 159, 245, 0.2), transparent 70%),
    radial-gradient(36% 40% at 30% 10%, rgba(90, 95, 240, 0.16), transparent 72%);
}
.hero-blob {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 95, 240, 0.32), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
}
.hero-container {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 32px 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #C7C9FA;
  margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #9A9FF5; }
.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 1.5rem + 2.5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero-title .accent { color: #9A9FF5; }
.hero-desc { font-size: 18px; line-height: 1.6; color: #C2D0E4; max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 42px; }
.hero-cta .btn-primary { animation: pulseRing 2.6s infinite; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat-value { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 26px; }
.stat-label { font-size: 13px; color: #9FB2CC; margin-top: 2px; }
.stat-divider { width: 1px; background: rgba(255, 255, 255, 0.12); }

.hero-image { position: relative; }
.hero-image-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  animation: floaty 6s ease-in-out infinite;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-card {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #0B1F3A;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform .3s ease-out, box-shadow .3s ease-out;
}
.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(11, 31, 58, 0.22);
}
.hero-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(90, 95, 240, 0.12);
  color: #5A5FF0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.card-title { font-weight: 800; font-family: 'Archivo', sans-serif; font-size: 14px; }
.card-desc { font-size: 11.5px; color: #5C6B82; }

/* ===== Clientes e Parceiros ===== */
.partners { background: #fff; padding: 76px 32px; border-bottom: 1px solid #EDF1F7; }
.partners-container { max-width: 1240px; margin: 0 auto; }
.partners-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.partners-header .section-title { margin-left: auto; margin-right: auto; }
.partners-header .section-desc { margin: 0 auto; }
.testimonials {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}
.testimonials-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #5A5FF0; margin-bottom: 10px; }
.testimonials-heading { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 26px; color: #0B1F3A; line-height: 1.25; margin-bottom: 12px; }
.testimonials-text { font-size: 14.5px; color: #5C6B82; line-height: 1.6; }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid #E6ECF5;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s;
}
.testimonial-card:hover { transform: translateY(-3px); border-color: #C7C9FA; }
.testimonial-card-top { padding: 30px 26px 24px; }
.testimonial-text { font-size: 14.5px; color: #3A4860; line-height: 1.65; }
.testimonial-card-bottom {
  position: relative;
  margin-top: auto;
  padding: 36px 26px 26px;
  background: linear-gradient(120deg, #6A6FF2, #4448C5);
  border-radius: 60% 40% 0 0 / 46px 46px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar-ring {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(11, 31, 58, .25);
}
.testimonial-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #F0F0FE;
  color: #5A5FF0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author { min-width: 0; }
.testimonial-stars { color: #FFC542; font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }
.testimonial-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14.5px; color: #fff; }
.testimonial-role { font-size: 12px; color: rgba(255, 255, 255, .8); }
.testimonial-quote {
  position: absolute;
  top: 6px;
  right: 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 70px;
  font-weight: 800;
  color: rgba(255, 255, 255, .25);
  line-height: 1;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.partner-card {
  background: #FAFBFD;
  border: 1px solid #E6ECF5;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: left;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s, background .3s;
}
.partner-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: #C7C9FA;
  background: #fff;
}
.partner-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EEF2F8;
  color: #5A5FF0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: background .3s, color .3s;
}
.partner-card:hover .partner-card-icon { background: linear-gradient(135deg, #6A6FF2, #4448C5); color: #fff; }
.partner-card-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px; color: #0B1F3A; margin-bottom: 4px; }
.partner-card-tag { font-size: 11.5px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: #7A8AA3; }

/* ===== Quem Somos ===== */
.quem-somos { background: #F5F8FC; padding: 92px 32px; }
.quem-somos-container { max-width: 1180px; margin: 0 auto; }
.quem-somos-grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 64px;
  align-items: center;
}
.quem-somos-media { position: relative; }
.quem-somos-img-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(11, 31, 58, .16);
  overflow: hidden;
}
.quem-somos-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.quem-somos-content .section-label { margin-bottom: 10px; }
.quem-somos-content .section-title { margin-bottom: 10px; }
.quem-somos-content .section-desc { margin-bottom: 20px; }
.quem-somos-text { font-size: 16.5px; color: #3A4860; line-height: 1.7; margin-bottom: 28px; }
.quem-somos-points { display: flex; flex-direction: column; gap: 22px; }
.quem-somos-points li { display: flex; gap: 16px; }
.quem-somos-points-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F0F0FE;
  color: #5A5FF0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.quem-somos-points h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16.5px; color: #0B1F3A; margin-bottom: 4px; }
.quem-somos-points p { font-size: 14.5px; color: #5C6B82; line-height: 1.6; }

/* ===== Banner de Impacto ===== */
.impact-banner {
  position: relative;
  background: #0B1F3A;
  padding: 110px 32px;
  overflow: hidden;
}
.impact-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 18% 15%, rgba(90, 95, 240, .45), transparent 58%),
              radial-gradient(45% 55% at 85% 85%, rgba(106, 111, 242, .38), transparent 58%),
              radial-gradient(30% 40% at 60% 40%, rgba(154, 159, 245, .16), transparent 60%);
}
.impact-banner-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}
.impact-banner-logo-box {
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.impact-banner-logo { width: 100%; height: auto; }
.impact-banner-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.25;
  color: #fff;
}

/* ===== O Nosso GED ===== */
.ged { background: #fff; padding: 92px 32px; }
.ged-container { max-width: 1240px; margin: 0 auto; }
.ged-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: start; }
.ged-left { position: sticky; top: 100px; }
.ged-label { display: inline-block; font-size: 13px; font-weight: 700; color: #5A5FF0; margin-bottom: 14px; }
.ged-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 1.4rem + 1.3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0B1F3A;
  margin-bottom: 18px;
  text-wrap: balance;
}
.ged-desc { font-size: 17px; color: #5C6B82; line-height: 1.65; margin-bottom: 28px; }
.ged-features { margin-top: 30px; display: flex; flex-direction: column; gap: 11px; }
.feature { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: #3A4860; font-weight: 600; }
.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F0F0FE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.ged-right { display: flex; flex-direction: column; gap: 16px; }
.ged-card {
  display: flex;
  gap: 20px;
  background: #F5F8FC;
  border: 1px solid #E6ECF5;
  border-radius: 16px;
  padding: 26px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s;
}
.ged-card:hover { transform: translateY(-3px); border-color: #C7C9FA; }
.ged-card-highlight { background: linear-gradient(135deg, #F0F0FE, #EBECFC); border-color: #D3D5F8; }
.ged-card-highlight .ged-card-icon { background: linear-gradient(135deg, #6A6FF2, #4448C5); border-color: transparent; color: #fff; }
.ged-card-highlight:hover { border-color: #B7BAF7; }
.ged-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #E0E8F3;
  color: #5A5FF0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background .3s, color .3s, border-color .3s;
}
.ged-card:hover .ged-card-icon { background: linear-gradient(135deg, #6A6FF2, #4448C5); border-color: transparent; color: #fff; }
.ged-card-text h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; color: #0B1F3A; margin-bottom: 6px; }
.ged-card-text p { font-size: 15px; color: #5C6B82; line-height: 1.6; }

/* ===== Gestão Documental com IA ===== */
.ai-section { background: #F5F8FC; padding: 92px 32px; }
.ai-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 64px;
  align-items: center;
}
.ai-media { position: relative; }
.ai-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(11, 31, 58, .16);
}
.ai-badge {
  position: absolute;
  left: -20px;
  bottom: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6A6FF2, #4448C5);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 14px 30px rgba(90, 95, 240, .3);
}
.ai-badge-icon { width: 20px; height: 20px; display: flex; }
.ai-content .section-label { margin-bottom: 10px; }
.ai-content .section-title { margin-bottom: 10px; }
.ai-content .section-desc { margin-bottom: 28px; }
.ai-points { display: flex; flex-direction: column; gap: 22px; }
.ai-points li { display: flex; gap: 16px; }
.ai-points-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #F0F0FE;
  color: #5A5FF0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-points h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16.5px; color: #0B1F3A; margin-bottom: 4px; }
.ai-points p { font-size: 14.5px; color: #5C6B82; line-height: 1.6; }

/* ===== Além do GED ===== */
.beyond-ged { background: #0B1F3A; color: #fff; padding: 92px 32px; }
.beyond-container { max-width: 1240px; margin: 0 auto; }
.beyond-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.beyond-header .section-title { margin-left: auto; margin-right: auto; }
.beyond-header .section-desc { margin: 0 auto; }
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(148px, auto);
  gap: 16px;
}
.beyond-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 24px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s, background .3s;
}
.beyond-card:hover { transform: translateY(-3px); border-color: rgba(154, 159, 245, .45); background: rgba(255, 255, 255, 0.07); }
.beyond-card .card-emoji { font-size: 24px; margin-bottom: 12px; color: #9A9FF5; transition: color .3s; }
.beyond-card:hover .card-emoji { color: #C7C9FA; }
.beyond-card .card-title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
.beyond-card .card-desc { font-size: 13.5px; color: #9FB2CC; line-height: 1.55; }

/* Bento: two tiles carry more visual weight without repeating the same shape */
.beyond-card-feature {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(150deg, rgba(90, 95, 240, 0.2), rgba(90, 95, 240, 0.06));
  border-color: rgba(154, 159, 245, .22);
}
.beyond-card-feature .card-emoji { font-size: 30px; }
.beyond-card-feature .card-title { font-size: 18px; }
.beyond-card-feature .card-desc { font-size: 14.5px; max-width: 34ch; }
.beyond-card-stat {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 1.8rem + 1.2vw, 3rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

/* ===== Serviços ===== */
.services { background: #F5F8FC; padding: 92px 32px; }
.services-container { max-width: 1240px; margin: 0 auto; }
.services-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.services-header .section-title { margin-left: auto; margin-right: auto; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  background: #fff;
  border: 1px solid #E6ECF5;
  border-radius: 18px;
  padding: 32px;
  cursor: pointer;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s;
}
.service-card:hover { transform: translateY(-4px); border-color: #C7C9FA; }
.card-bar { display: none; }
.card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.card-header .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #F0F0FE;
  color: #5A5FF0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  transition: background .3s, color .3s;
}
.digitalization .card-header .card-icon,
.archive .card-header .card-icon { background: #EBECFC; color: #4448C5; }
.service-card:hover .card-header .card-icon { background: linear-gradient(135deg, #6A6FF2, #4448C5); color: #fff; }
.card-header h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 21px; color: #0B1F3A; }
.card-list { display: flex; flex-direction: column; gap: 9px; }
.card-list li { display: flex; gap: 9px; font-size: 14.5px; color: #3A4860; line-height: 1.5; }
.card-list .check { color: #5A5FF0; font-weight: 800; flex-shrink: 0; }
.digitalization .card-list .check,
.archive .card-list .check { color: #4448C5; }
.accounts .card-list .check { color: #6A6FF2; }

.service-card-core {
  position: relative;
  background: linear-gradient(160deg, #0B1F3A, #143158);
  border-color: transparent;
}
.service-card-core .card-header h3 { color: #fff; }
.service-card-core .card-list li { color: #C2D0E4; }
.service-card-core .card-list .check { color: #9A9FF5; }
.service-card-core .card-header .card-icon { background: rgba(154, 159, 245, 0.16); color: #9A9FF5; }
.service-card-core:hover .card-header .card-icon { background: linear-gradient(135deg, #6A6FF2, #4448C5); color: #fff; }
.service-card-core-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9A9FF5;
  background: rgba(154, 159, 245, 0.14);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ===== Na Prática ===== */
.practice { background: #fff; padding: 92px 32px; }
.practice-container { max-width: 1180px; margin: 0 auto; }
.practice-header { margin-bottom: 56px; }
.practice-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.375rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0B1F3A;
  margin-bottom: 12px;
}
.practice-desc { font-size: 16.5px; color: #5C6B82; line-height: 1.6; max-width: 560px; }
.practice-items { display: flex; flex-direction: column; gap: 72px; }
.practice-item {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 64px;
  align-items: center;
}
.practice-item.reverse { grid-template-columns: 5fr 6fr; }
.practice-item.reverse .practice-image { order: 2; }
.practice-item.reverse .practice-text { order: 1; }
.practice-image { width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; }
.practice-image img { width: 100%; height: 100%; object-fit: cover; }
.practice-label { font-size: 12.5px; font-weight: 700; color: #5A5FF0; margin-bottom: 10px; }
.practice-label.teal { color: #4448C5; }
.practice-label.blue { color: #6A6FF2; }
.practice-text h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #0B1F3A;
  margin-bottom: 12px;
}
.practice-text p { font-size: 16px; color: #3A4860; line-height: 1.7; }

/* ===== Facilidade de usar ===== */
.ease { background: linear-gradient(135deg, #0B1F3A, #143158); color: #fff; padding: 88px 32px; }
.ease-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.ease-right { display: flex; flex-direction: column; gap: 26px; }
.ease-bar-header { display: flex; justify-content: space-between; margin-bottom: 9px; }
.ease-bar-header span:first-child { font-size: 15px; font-weight: 700; }
.ease-value { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; color: #9A9FF5; }
.ease-bar-track { height: 10px; background: rgba(255, 255, 255, 0.1); border-radius: 100px; overflow: hidden; }
.ease-bar-fill {
  height: 100%;
  width: var(--w, 100%);
  border-radius: 100px;
  background: linear-gradient(90deg, #6A6FF2, #9A9FF5);
  transition: width 1.2s cubic-bezier(.16, 1, .3, 1);
}
/* Bars grow from zero when the section scrolls into view */
.ease.reveal-ready .ease-bar-fill { width: 0; }
.ease.reveal-ready.in-view .ease-bar-fill { width: var(--w, 100%); transition-delay: .35s; }

/* ===== FAQ ===== */
.faq { background: #fff; padding: 92px 32px; }
.faq-container { max-width: 860px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 44px; }
.faq-header .section-title { margin-left: auto; margin-right: auto; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid #E6ECF5; border-radius: 14px; overflow: hidden; background: #F8FAFD; }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: #0B1F3A;
}
.faq-icon { font-size: 20px; color: #5A5FF0; flex-shrink: 0; transition: transform .3s cubic-bezier(.16, 1, .3, 1); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 15.5px;
  color: #3A4860;
  line-height: 1.7;
  transition: max-height .45s cubic-bezier(.16, 1, .3, 1), padding .45s cubic-bezier(.16, 1, .3, 1);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 22px; }

/* ===== Contato ===== */
.contact-section { background: #F5F8FC; padding: 92px 32px; }
.contact-box {
  max-width: 1080px;
  margin: 0 auto;
  background:
    radial-gradient(70% 90% at 100% 0%, rgba(154, 159, 245, 0.35), transparent 60%),
    radial-gradient(60% 80% at 0% 100%, rgba(68, 72, 197, 0.4), transparent 60%),
    linear-gradient(135deg, #6A6FF2, #4448C5);
  border-radius: 26px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.contact-left h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.375rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.contact-left p { font-size: 17.5px; color: rgba(255, 255, 255, 0.9); line-height: 1.6; margin-bottom: 28px; }
.btn-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(180deg, #4CC768, #3DAE55);
  color: #fff;
  padding: 15px 30px 15px 15px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 18px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-pill:hover { transform: translateY(-3px); color: #fff; }
.btn-whatsapp-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-whatsapp-pill-icon .icon { width: 19px; height: 19px; }
.contact-info { display: flex; gap: 24px; margin-top: 30px; flex-wrap: wrap; }
.info-label { font-size: 12px; opacity: 0.75; font-weight: 600; color: #fff; }
.info-value { font-weight: 700; font-size: 15px; color: #fff; }

.contact-right { position: relative; background: #fff; border-radius: 18px; padding: 30px; }
.contact-right h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; color: #0B1F3A; margin-bottom: 6px; }
.contact-right > p { font-size: 13.5px; color: #5C6B82; margin-bottom: 18px; }
.contact-form { display: flex; flex-direction: column; gap: 13px; }
.form-input {
  border: 1px solid #DCE4F0;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 14.5px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  color: #16243B;
}
.form-input:focus { border-color: #5A5FF0; }
.form-input::placeholder { color: #6B7A93; }
.btn-submit {
  background: #5A5FF0;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  transition: background .2s, transform .2s;
}
.btn-submit:hover { background: #6A6FF2; transform: translateY(-2px); }
.btn-submit:active { transform: scale(.98); }
.form-note { font-size: 12px; color: #6B7A93; text-align: center; margin-top: 2px; }

/* ===== Footer ===== */
.footer { background: #081628; color: #9FB2CC; padding: 60px 32px 34px; }
.footer-container { max-width: 1240px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo { background: #fff; border-radius: 11px; padding: 7px 12px; }
.footer-logo img { height: 36px; width: auto; }
.footer-brand-text { font-size: 11px; color: #7186A3; line-height: 1.35; max-width: 160px; }
.footer-desc { font-size: 14px; line-height: 1.65; max-width: 330px; }
.footer-title { font-family: 'Archivo', sans-serif; font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: #9FB2CC; font-size: 14px; }
.footer-links a:hover { color: #9A9FF5; }
.footer-address, .footer-contact { font-size: 14px; line-height: 1.7; }
.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  background: rgba(154, 159, 245, 0.14);
  color: #9A9FF5;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
}
.btn-whatsapp-footer:hover { color: #9A9FF5; background: rgba(154, 159, 245, 0.22); }
.footer-bottom { padding-top: 24px; text-align: center; font-size: 13px; color: #5E7290; }
.footer-bottom .highlight { color: #9A9FF5; font-weight: 600; }

/* ===== Floating buttons ===== */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #DCE4F0;
  color: #5A5FF0;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s cubic-bezier(.16, 1, .3, 1);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px) scale(1.05); }

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float:active { transform: scale(.95); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(11, 31, 58, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  transform: scale(.94);
  transition: transform .3s;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, .22); }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-img { transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; padding-top: 56px; text-align: center; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-frame { height: 320px; }
  .hero-card { left: 16px; right: 16px; bottom: -18px; }
  .ged-grid { grid-template-columns: 1fr; }
  .ged-left { position: static; }
  .quem-somos-grid { grid-template-columns: 1fr; gap: 72px 0; }
  .quem-somos-media { max-width: 420px; margin: 0 auto; }
  .ai-container { grid-template-columns: 1fr; gap: 72px 0; }
  .ai-media { max-width: 420px; margin: 0 auto; }
  .beyond-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .beyond-card-feature { grid-row: span 1; }
  .testimonials { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .impact-banner { padding: 80px 32px; }
  .impact-banner-container { flex-direction: column; text-align: center; gap: 24px; }
  .impact-banner-logo-box { width: 96px; height: 96px; }
  .impact-banner-title { font-size: 30px; }
  .practice-item, .practice-item.reverse { grid-template-columns: 1fr; }
  .practice-item.reverse .practice-image { order: 0; }
  .practice-header { text-align: center; }
  .practice-desc { margin-left: auto; margin-right: auto; }
  .ease-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .ease-bar-header { text-align: left; }
  .contact-box { grid-template-columns: 1fr; padding: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav { padding: 12px 20px; }
  .hero-container { padding: 48px 20px 72px; }
  .hero-stats { gap: 18px; }
  .quem-somos, .ged, .beyond-ged, .services, .practice, .ease, .faq, .contact-section, .partners, .impact-banner { padding-left: 20px; padding-right: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-core-tag { position: static; display: inline-block; margin-bottom: 12px; }
  .service-card-core .card-header { flex-wrap: wrap; }
  .beyond-grid { grid-template-columns: 1fr 1fr; }
  .beyond-card-feature { grid-column: span 2; }
  .testimonials-track { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .impact-banner-title { font-size: 24px; }
  .contact-box { padding: 24px; border-radius: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 22px; }
  .back-to-top { bottom: 86px; }
}
