@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #2f5fd0 #eef4ff;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #f9fbff 0%, #f4f8ff 100%);
  color: #172033;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(118rem, 100% - 4rem);
  margin: 0 auto;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #eef4ff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2f5fd0 0%, #193a8f 100%);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #2550c0 0%, #0e2458 100%);
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5rem;
  box-shadow: rgba(0, 0, 0, 0.1803921569) -1px 5px 20px 0px;
  width: 80%;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(54, 83, 158, 0.15), #ffffff);
}
.site-header .header-inner {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
.site-header .brand img {
  width: 16rem;
}

.nav,
.header-actions,
.hero-actions,
.trusted-logos,
.stats-grid {
  display: flex;
  align-items: center;
}

.nav {
  gap: 2.8rem;
}
.nav a {
  font-size: 1.5rem;
  color: #193a8f;
  transition: color 0.2s ease;
}
.nav a:hover {
  color: #112b6d;
}

.header-actions {
  gap: 1.2rem;
}

.btn {
  height: 4rem;
  border-radius: 999px;
  padding: 0 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2f5fd0 0%, #1f77d7 100%);
  box-shadow: 0 1.4rem 3rem rgba(42, 104, 209, 0.25);
}

.btn-secondary {
  color: #193a8f;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dfe8fb;
  box-shadow: 0 1rem 2.4rem rgba(50, 83, 153, 0.08);
}

.btn-ghost {
  color: #193a8f;
  background: rgba(238, 244, 255, 0.9);
}

.eyebrow {
  display: inline-flex;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: rgba(47, 95, 208, 0.08);
  color: #2f5fd0;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 17rem 0 3rem;
  min-height: 100vh;
}
.hero .hero-visual {
  margin-top: -5vh;
  z-index: -1;
}
.hero .hero-visual img {
      object-fit: contain;
    height: 80vh;
  margin-top: 5rem;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hero .hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
.hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1.1;
  margin: 1.8rem 0;
  max-width: 64rem;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
}
.hero .hero-copy p {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  line-height: 1.75;
  color: #5f6f92;
  max-width: 59rem;
  margin: 0 0 2.8rem;
  text-align: center;
  text-wrap: balance;
}
.hero .hero-actions {
  gap: 1.4rem;
  margin-bottom: 2.8rem;
}

.hero-modules-strip {
  width: 100%;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-top: 2rem;
}

.hero-modules-label {
  font-size: 1.1rem;
  color: rgba(95, 111, 146, 0.5);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.hero-modules-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hero-modules-track::before,
.hero-modules-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12%;
  pointer-events: none;
  z-index: 2;
}
.hero-modules-track::before {
  left: 0;
  background: linear-gradient(to right, #f9fbff 0%, rgba(249, 251, 255, 0) 100%);
}
.hero-modules-track::after {
  right: 0;
  background: linear-gradient(to left, #f9fbff 0%, rgba(249, 251, 255, 0) 100%);
}

.hero-modules-inner {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.hm-pill {
      display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 1rem 3rem;
    margin: 0 0.35rem;
    border-radius: 999px;
    background: #dd7d06;
    border: 1px solid rgba(47, 95, 208, 0.12);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.hm-pill:focus {
  outline: none;
  border-color: rgba(47, 95, 208, 0.12);
}
.hm-pill:focus-visible {
  outline: 2px solid #2f5fd0;
  outline-offset: 2px;
}

.hm-pill:hover {
  background: #c46d04;
  border-color: rgba(196, 109, 4, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 0.6rem 1.4rem rgba(221, 125, 6, 0.28);
}
.hero .trusted-by span {
  display: inline-block;
  color: #5f6f92;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.hero .hero-dashboard {
  filter: drop-shadow(0 3.4rem 5rem rgba(32, 63, 132, 0.22));
  animation: heroDashboardBounce 3.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform;
  transform-origin: center bottom;
}

@keyframes heroDashboardBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-1.6rem) scale(1.01);
  }
}

#hero-balls {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-ball {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.hero-bg-left {
  inset: 11rem auto auto -13rem;
  width: 43rem;
  height: 43rem;
  background: radial-gradient(circle, rgba(82, 208, 191, 0.22) 0%, rgba(82, 208, 191, 0) 72%);
}

.hero-bg-right {
  inset: -8rem -14rem auto auto;
  width: 72rem;
  height: 72rem;
  background: radial-gradient(circle, rgba(47, 95, 208, 0.2) 0%, rgba(47, 95, 208, 0.04) 44%, rgba(47, 95, 208, 0) 75%);
}

.feature,
.why-us,
.cta {
  padding: 14rem 0;
  min-height: 100vh;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-copy h2,
.section-heading h2 {
  font-size: clamp(3rem, 3.6vw, 4.6rem);
  line-height: 1.1;
  margin: 1.8rem 0 1.4rem;
  letter-spacing: -0.03em;
}
.feature-copy p,
.section-heading p {
  color: #5f6f92;
  line-height: 1.8;
  font-size: 1.7rem;
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 2.6rem 0 3rem;
  display: grid;
  gap: 1.4rem;
}
.check-list li {
  position: relative;
  padding-left: 3rem;
  color: #172033;
  font-weight: 500;
  font-size: 1.5rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(83, 208, 191, 0.12);
  color: #1d9f8f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.center {
  text-align: center;
  max-width: 84rem;
  margin: 0 auto 4rem;
}

#container-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
  margin-bottom: 3rem;
}
#container-modules .module {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
#container-modules .module h1 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #172033;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #dfe8fb;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}
#container-modules .module h1 .icon {
  font-size: 1.4rem;
  color: #2f5fd0;
}
#container-modules .module h1 span {
  font-size: 1.1rem;
  color: #5f6f92;
  font-weight: 400;
}
#container-modules .module:hover h1 {
  border-color: rgba(47, 95, 208, 0.4);
  background: #eef4ff;
  transform: translateY(-0.1rem);
  box-shadow: 0 1rem 2.4rem rgba(50, 83, 153, 0.08);
  color: #193a8f;
}

.services {
  background: linear-gradient(120deg, #112b55 0%, #1a3a6e 50%, #315799 100%);
  height: -moz-fit-content;
  height: fit-content;
  padding: 5rem 0;
}
.services .eyebrow {
  background: rgba(255, 255, 255, 0.1019607843);
  color: #fff;
}
.services h2 {
  color: #fff;
}
.services p {
  color: rgba(255, 255, 255, 0.5490196078);
}

.services-grid,
.why-grid {
  display: grid;
  gap: 2.4rem;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.why-card,
.stat-card,
.cta-box {
  border: 1px solid rgba(223, 232, 251, 0.9);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1rem 2.4rem rgba(50, 83, 153, 0.08);
}

.service-card {
  padding: 2.8rem;
  border-radius: 2.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 3rem rgba(37, 73, 148, 0.12);
}
.service-card h3 {
  margin: 1.8rem 0 1.2rem;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}
.service-card p {
  margin: 0;
  color: #5f6f92;
  line-height: 1.7;
  font-size: 1.5rem;
}

.service-icon {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 1.8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f4f8ff 0%, #edf3ff 100%);
}
.service-icon img {
  width: 3.4rem;
  height: 3.4rem;
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 2.6rem;
}

.why-card {
  border-radius: 1.8rem;
  padding: 2.8rem 2.4rem;
}
.why-card img {
  width: 3.8rem;
  height: 3.8rem;
  margin-bottom: 1.6rem;
}
.why-card h3 {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.why-card p {
  margin: 0;
  color: #5f6f92;
  line-height: 1.7;
  font-size: 1.5rem;
}

.stats-grid {
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 22rem;
  border-radius: 2rem;
  padding: 2.4rem 2.8rem;
  text-align: center;
}
.stat-card strong {
  display: block;
  color: #193a8f;
  font-size: 3.8rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
}
.stat-card span {
  color: #5f6f92;
  font-weight: 500;
  font-size: 1.4rem;
}

.modules-section {
  padding: 12rem 0;
  background: linear-gradient(180deg, #f4f8ff 0%, #f8fbff 100%);
}
.modules-section .modules-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.2rem;
  align-items: start;
}

.mod-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 54rem;
  overflow-y: auto;
  padding-right: 0.8rem;
}
.mod-list::-webkit-scrollbar {
  width: 0.4rem;
}
.mod-list::-webkit-scrollbar-track {
  background: #dfe8fb;
  border-radius: 999px;
}
.mod-list::-webkit-scrollbar-thumb {
  background: rgba(47, 95, 208, 0.3);
  border-radius: 999px;
}

.mod-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-radius: 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.5);
}
.mod-item:hover {
  background: #ffffff;
  border-color: #dfe8fb;
  box-shadow: 0 1rem 2.4rem rgba(50, 83, 153, 0.08);
}
.mod-item.active {
  background: #ffffff;
  border-color: rgba(47, 95, 208, 0.3);
  box-shadow: 0 1rem 2.4rem rgba(50, 83, 153, 0.08);
}
.mod-item.active .mi-name {
  color: #193a8f;
  font-weight: 700;
}
.mod-item.active .mi-tag {
  background: rgba(47, 95, 208, 0.12);
  color: #193a8f;
}
.mod-item .mi-name {
  font-weight: 500;
  font-size: 1.5rem;
  color: #172033;
  transition: color 0.2s ease;
}
.mod-item .mi-tag {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f5fd0;
  background: rgba(47, 95, 208, 0.08);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.mod-detail {
  padding: 3.2rem;
  position: sticky;
  top: 10rem;
  height: 100%;
}
.mod-detail .mod-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.mod-detail .mod-detail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #f4f8ff 0%, #edf3ff 100%);
  border: 1px solid #dfe8fb;
}
.mod-detail .mod-detail-icon img {
  width: 4.8rem;
  height: 4.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.mod-detail .mod-detail-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.4rem;
}
.mod-detail h3#dName {
  font-size: 2.8rem;
  letter-spacing: -0.03em;
  margin: 0;
  color: #172033;
  line-height: 1.2;
}
.mod-detail #dFull {
  font-size: 1.5rem;
  color: #5f6f92;
  margin: 0;
}
.mod-detail #dDesc {
  font-size: 1.6rem;
  color: #5f6f92;
  line-height: 1.85;
  margin: 0;
  padding-top: 2rem;
  border-top: 1px solid #dfe8fb;
}

#contato {
  display: flex;
}

.cta-box {
      width: min(118rem, 100% - 4rem);
    min-height: 50rem;
  border-radius: 3rem;
  padding: 4.4rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2.4rem;
  background: radial-gradient(circle at top right, rgba(83, 208, 191, 0.16) 0%, rgba(83, 208, 191, 0) 30%), radial-gradient(circle at bottom left, rgba(47, 95, 208, 0.12) 0%, rgba(47, 95, 208, 0) 38%), rgba(255, 255, 255, 0.9);
}
.cta-box > * {
  width: 100%;
  max-width: 100%;
}
.cta-box h2 {
  margin: 1.4rem 0 1.2rem;
  font-size: clamp(2.6rem, 3.4vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.cta-box p {
      margin: 3rem 0;
  color: #5f6f92;
  line-height: 1.8;
  font-size: 1.7rem;
  max-width: 92rem;
  overflow-wrap: break-word;
}
.cta-box .btn-primary {
  width: 40%;
  min-width: 20rem;
}
.cta-box .cta-contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #5f6f92;
}
.cta-box .cta-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #0e245f;
  flex-shrink: 0;
}

.site-footer {
  padding: 6rem 0 0;
  background: radial-gradient(ellipse 70% 55% at 8% 85%, rgba(83, 208, 191, 0.07) 0%, transparent 60%), radial-gradient(ellipse 55% 50% at 92% 15%, rgba(47, 95, 208, 0.13) 0%, transparent 55%), linear-gradient(180deg, #0f2560 0%, #0b1c4e 100%);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(83, 208, 191, 0.5) 30%, rgba(47, 95, 208, 0.6) 70%, transparent 100%);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4.8rem;
  padding-bottom: 5rem;
}
.site-footer .footer-logo {
  width: 13.6rem;
  margin-bottom: 2rem;
  filter: invert(1);
}
.site-footer p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 2.1;
  font-size: 1.55rem;
  margin: 0 0 2.8rem;
  max-width: 27rem;
}
.site-footer .footer-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.site-footer h4 {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.site-footer li {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.site-footer a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-complaint-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.65) !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
}
.footer-complaint-link .material-symbols-outlined {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.footer-complaint-link:hover {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-footer .footer-bottom span {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.28);
}
.site-footer .footer-bottom .footer-bottom-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.28);
}
.site-footer .footer-bottom .footer-bottom-accent::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #53d0bf;
  opacity: 0.5;
}

.stats-strip {
  background: linear-gradient(135deg, #152f6e 0%, #1e448f 50%, #152f6e 100%);
  padding: 5.4rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60rem;
  height: 14rem;
  background: radial-gradient(ellipse, rgba(83, 208, 191, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.stats-strip .stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2rem 1.4rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-item strong {
  font-size: 4.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(140deg, #ffffff 0%, rgba(83, 208, 191, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item span {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.spotlight {
  padding: 14rem 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}
.spotlight .spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.spotlight .spotlight-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 3.4rem;
  flex-wrap: wrap;
}
.spotlight .spotlight-visual {
  position: relative;
}
.spotlight .spotlight-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 95, 208, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.spotlight-module-card {
  border-radius: 3.2rem;
  background: #ffffff;
  border: 1px solid #dfe8fb;
  box-shadow: 0 2.4rem 6rem rgba(34, 70, 145, 0.16);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.spotlight-module-card .smc-header {
  padding: 2.8rem;
  border-bottom: 1px solid #dfe8fb;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  background: linear-gradient(135deg, #f8fbff 0%, #edf3ff 100%);
}
.spotlight-module-card .smc-header .smc-icon {
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 1.8rem;
  background: #ffffff;
  border: 1px solid #dfe8fb;
  display: grid;
  place-items: center;
  box-shadow: 0 1rem 2.4rem rgba(50, 83, 153, 0.08);
  flex-shrink: 0;
}
.spotlight-module-card .smc-header .smc-icon img {
  width: 3.2rem;
  height: 3.2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.spotlight-module-card .smc-header .smc-meta h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #172033;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.spotlight-module-card .smc-header .smc-meta p {
  font-size: 1.35rem;
  color: #5f6f92;
  margin: 0;
}
.spotlight-module-card .smc-header .eyebrow {
  margin-left: auto;
  flex-shrink: 0;
}
.spotlight-module-card .smc-features {
  padding: 2.6rem 2.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.spotlight-module-card .smc-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.4rem;
  background: rgba(47, 95, 208, 0.04);
  border: 1px solid rgba(47, 95, 208, 0.07);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.spotlight-module-card .smc-feature:hover {
  background: rgba(47, 95, 208, 0.08);
  border-color: rgba(47, 95, 208, 0.14);
}
.spotlight-module-card .smc-feature .material-symbols-outlined {
  font-size: 2rem;
  color: #2f5fd0;
  flex-shrink: 0;
}
.spotlight-module-card .smc-feature span:last-child {
  font-size: 1.35rem;
  font-weight: 500;
  color: #172033;
  line-height: 1.3;
}
.spotlight-module-card .smc-footer {
  padding: 1.8rem 2.8rem;
  border-top: 1px solid #dfe8fb;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.spotlight-module-card .smc-footer .smc-tag {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2f5fd0;
  background: rgba(47, 95, 208, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
}
.spotlight-module-card .smc-footer .smc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a9083;
  background: rgba(83, 208, 191, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
}
.spotlight-module-card .smc-footer .smc-status::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #1a9083;
}

.clients {
  height: 25vh;
  min-height: unset;
  overflow: hidden;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
}
.clients #carrousel-clients {
  height: 15rem;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-left 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.clients #carrousel-clients img {
  height: 4rem;
  width: 13rem;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
  mix-blend-mode: multiply;
  margin: 0 7rem;
  transition: filter 0.8s ease, transform 0.8s ease;
}
.clients #carrousel-clients img.client-active {
  filter: grayscale(0);
  transform: scale(1.2);
}
@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 4rem;
  height: 4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.8rem;
  transition: background 0.2s;
}
.hamburger:hover {
  background: rgba(47, 95, 208, 0.06);
}
.hamburger span {
  display: block;
  height: 0.2rem;
  background: #172033;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  width: 2.4rem;
}
.hamburger span:nth-child(2) {
  width: 2rem;
}
.hamburger span:nth-child(3) {
  width: 2.4rem;
}
.hamburger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(0.7rem) rotate(45deg);
  width: 2.4rem;
}
.hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-0.7rem) rotate(-45deg);
  width: 2.4rem;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 38;
  backdrop-filter: blur(2px);
}
.mobile-menu-overlay.visible {
  display: block;
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 28rem;
  background: #ffffff;
  z-index: 39;
  padding: 9rem 3rem 3rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -0.4rem 0 2.4rem rgba(0, 0, 0, 0.1);
}
#mobile-menu.open {
  transform: translateX(0);
}
#mobile-menu a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #172033;
  padding: 1.4rem 0;
  border-bottom: 1px solid #dfe8fb;
  cursor: pointer;
  transition: color 0.2s;
}
#mobile-menu a:hover {
  color: #2f5fd0;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero .hero-grid,
  .feature-grid,
  .spotlight .spotlight-grid,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero .hero-visual {
    margin-top: 0;
  }
  .hero .hero-visual img {
    height: auto;
    width: 90%;
    max-width: 56rem;
    margin: 0 auto;
  }
  .stats-strip .stats-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .spotlight {
    padding: 8rem 0;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .modules-section .modules-layout {
    grid-template-columns: 1fr;
  }
  .mod-list {
    max-height: 28rem;
  }
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 5.6rem, 118rem);
  }
    .stats-strip {
        padding: 4rem 0;
    }

    .stats-strip .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0; /* remove gap — o separador já é visual via ::after */
    }

    .stat-item {
        padding: 1.6rem 1rem;
    }

    .stat-item strong {
        font-size: 3.2rem;
    }

    .stat-item span {
        font-size: 1.2rem;
    }

    /* Remove o divisor vertical dos itens pares (2º e 4º) */
    .stat-item:nth-child(2n)::after {
        display: none;
    }

    /* Adiciona separador horizontal entre as duas linhas */
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

  .spotlight {
    padding: 7rem 0;
  }
  .spotlight-module-card .smc-features {
    grid-template-columns: 1fr;
  }
  .site-header {
    width: 92%;
  }
  .site-header .header-inner {
    min-height: 7.6rem;
    gap: 1.4rem;
  }
  .header-actions .btn-ghost,
  .header-actions .btn-primary {
    display: none;
  }
  .hero {
    padding-top: 6.4rem;
    min-height: unset;
  }
  .hero .hero-visual {
    margin-top: 0;
  }
  .hero .hero-visual img {
    height: auto;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
  }
  .hero .hero-copy p,
  .feature-copy p,
  .section-heading p,
  .cta-box p {
    font-size: 1.6rem;
  }
  .hero .hero-copy {
    width: 100%;
  }
  .hero .hero-copy p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero .hero-actions,
  .header-actions,
  .trusted-logos,
  .stats-grid {
    flex-wrap: wrap;
  }
  .feature,
  .services,
  .why-us,
  .cta {
    padding: 7rem 0;
    height: auto;
  }
  .modules-section {
    padding: 7rem 0;
  }
  .service-card,
  .why-card,
  .cta-box {
    padding: 2.4rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mod-detail {
    padding: 2rem;
  }
  .mod-detail h3#dName {
    font-size: 2.2rem;
  }
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.8rem 0;
  }
}

@media (max-width: 400px) {
    .stats-strip .stats-strip-grid {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: none;
    }

    .stat-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  will-change: opacity, transform;
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.reveal {
  opacity: 0;
  transform: translateY(1.4rem);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-1.8rem);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(1.8rem);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    transition: opacity 0.2s ease;
    transform: none !important;
  }
}

[data-delay="1"] {
  transition-delay: 0.1s;
}

[data-delay="2"] {
  transition-delay: 0.2s;
}

[data-delay="3"] {
  transition-delay: 0.3s;
}

[data-delay="4"] {
  transition-delay: 0.4s;
}

[data-delay="5"] {
  transition-delay: 0.5s;
}

[data-delay="6"] {
  transition-delay: 0.6s;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-copy .eyebrow {
  animation: hero-fade-up 0.45s ease-out both 0.05s;
}

.hero-copy h1 {
  animation: hero-fade-up 0.5s ease-out both 0.15s;
}

.hero-copy p {
  animation: hero-fade-up 0.5s ease-out both 0.25s;
}

.hero-actions {
  animation: hero-fade-up 0.5s ease-out both 0.35s;
}

.hero-visual {
  animation: hero-fade-up 0.9s ease both 0.3s;
}

@keyframes mod-fade-up {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mod-detail.updating {
  animation: mod-fade-up 0.3s ease both;
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  right: 0;
  height: 0.15rem;
  background: #2f5fd0;
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
}

.btn:active {
  transform: translateY(1px) scale(0.97) !important;
  transition-duration: 0.08s;
}

.why-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 3rem rgba(37, 73, 148, 0.12);
}

.service-card:hover .service-icon {
  background: linear-gradient(180deg, rgba(47, 95, 208, 0.08) 0%, rgba(47, 95, 208, 0.18) 100%);
  transition: background 0.9s ease;
}

@media (max-width: 480px) {
  .site-header {
    width: 96%;
  }
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    min-width: 100%;
  }
  .mod-detail-header {
    flex-direction: column;
  }
}/* ── DERE Section ──────────────────────────────────────────── */
.dere-section {
  padding: 14rem 0;
  background: linear-gradient(135deg, #0b1c4e 0%, #112b6d 50%, #0e2458 100%);
  position: relative;
  overflow: hidden;
}
.dere-section::before {
  content: "";
  position: absolute;
  top: -15rem;
  right: -8rem;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 208, 191, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.dere-section::after {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: -8rem;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 95, 208, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.dere-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.dere-badges {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.dere-novo {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  box-shadow: 0 0.4rem 1.4rem rgba(245, 158, 11, 0.45);
}

.dere-eyebrow {
  background: rgba(83, 208, 191, 0.15) !important;
  color: #53d0bf !important;
}

.dere-info h2 {
  font-size: clamp(3.6rem, 4.5vw, 5.6rem);
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 0.8rem;
  line-height: 1.05;
}

.dere-fullname {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 2rem;
  font-weight: 500;
}

.dere-desc {
  font-size: 1.65rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin: 0 0 3.6rem;
  max-width: 56rem;
}

.dere-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 4rem;
}

.dere-feat {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.dere-feat:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(83, 208, 191, 0.25);
}
.dere-feat .material-symbols-outlined {
  font-size: 2.2rem;
  color: #53d0bf;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.dere-feat h4 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.dere-feat p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  line-height: 1.55;
}

.dere-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.dere-btn-outline {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.dere-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

/* Status panel */
.dere-status-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3.2rem;
  overflow: hidden;
  position: sticky;
  top: 10rem;
}

.dere-status-header {
  padding: 2.6rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
}
.dere-status-header .material-symbols-outlined {
  font-size: 2.8rem;
  color: #53d0bf;
  flex-shrink: 0;
}
.dere-status-header h3 {
  font-size: 1.75rem;
  color: #ffffff;
  margin: 0 0 0.3rem;
  letter-spacing: -0.02em;
}
.dere-status-header span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.32);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dere-status-list {
  padding: 0.6rem 3rem;
  display: flex;
  flex-direction: column;
}

.dere-status-item {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: 2rem 0;
}
.dere-status-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dsi-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.dsi-dot.dsi-done {
  background: #53d0bf;
  box-shadow: 0 0 0.8rem rgba(83, 208, 191, 0.55);
}
.dsi-dot.dsi-progress {
  background: #3b82f6;
  box-shadow: 0 0 0.8rem rgba(59, 130, 246, 0.55);
  animation: dsi-pulse 1.8s ease infinite;
}
.dsi-dot.dsi-ready {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
}
@keyframes dsi-pulse {
  0%, 100% { box-shadow: 0 0 0.8rem rgba(59, 130, 246, 0.55); }
  50%       { box-shadow: 0 0 1.8rem rgba(59, 130, 246, 0.85); }
}

.dsi-content { flex: 1; }

.dsi-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.dsi-title {
  font-size: 1.45rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.dsi-badge {
  display: inline-flex;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.dsi-badge.done       { background: rgba(83, 208, 191, 0.15); color: #53d0bf; }
.dsi-badge.structured { background: rgba(47, 95, 208, 0.2);  color: #7baeff; }
.dsi-badge.progress   { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.dsi-badge.ready      { background: rgba(255, 255, 255, 0.07); color: rgba(255,255,255,0.4); }

.dsi-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  line-height: 1.6;
}

.dere-flex-tag {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(83, 208, 191, 0.05);
}
.dere-flex-tag .material-symbols-outlined {
  font-size: 2rem;
  color: #53d0bf;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.dere-flex-tag span:last-child {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1100px) {
  .dere-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .dere-status-panel { position: static; }
}
@media (max-width: 768px) {
  .dere-section { padding: 8rem 0; }
  .dere-features-grid { grid-template-columns: 1fr; }
}

/* ── About Section ──────────────────────────────────────────── */
.about-section {
  padding: 14rem 0;
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(3rem, 3.6vw, 4.6rem);
  line-height: 1.1;
  margin: 1.8rem 0 1.4rem;
  letter-spacing: -0.03em;
}

.about-desc {
  font-size: 1.7rem;
  color: #5f6f92;
  line-height: 1.8;
  margin: 0 0 3rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem 2rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #f8fbff 0%, #edf3ff 100%);
  border: 1px solid #dfe8fb;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-pillar:hover {
  transform: translateX(4px);
  box-shadow: 0 1rem 2.4rem rgba(50, 83, 153, 0.08);
}
.about-pillar .material-symbols-outlined {
  font-size: 2.4rem;
  color: #2f5fd0;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.about-pillar h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #172033;
  margin: 0 0 0.3rem;
}
.about-pillar p {
  font-size: 1.4rem;
  color: #5f6f92;
  margin: 0;
  line-height: 1.5;
}

.chart-card {
  padding: 3.2rem;
  border-radius: 3.2rem;
  border: 1px solid rgba(223, 232, 251, 0.9);
  background: #ffffff;
  box-shadow: 0 2.4rem 6rem rgba(34, 70, 145, 0.1);
}

.chart-header {
  margin-bottom: 0.4rem;
}
.chart-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #172033;
  margin: 1rem 0 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Chart.js card */
.chartjs-wrap {
  position: relative;
  height: 40rem;
  margin-top: 1.8rem;
}

.cstat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid #dfe8fb;
}

.cstat {
  text-align: center;
  transition: transform 0.2s ease;
  cursor: default;
}
.cstat:hover {
  transform: translateY(-0.2rem);
}
.cstat strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #2f5fd0;
  letter-spacing: -0.04em;
  line-height: 1;
}
.cstat span {
  display: block;
  font-size: 1.1rem;
  color: #5f6f92;
  font-weight: 500;
  margin-top: 0.4rem;
  line-height: 1.3;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid #dfe8fb;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legend-dot {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-label {
  font-size: 1.4rem;
  color: #5f6f92;
  font-weight: 500;
  flex: 1;
}

.legend-pct {
  font-size: 1.4rem;
  font-weight: 700;
  color: #172033;
}

.chart-note {
  font-size: 1.3rem;
  color: rgba(95, 111, 146, 0.6);
  text-align: center;
  margin: 1.4rem 0 0;
  font-style: italic;
}

@media (max-width: 1100px) {
  .about-section {
    height: auto;
    padding: 8rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .about-section { padding: 6rem 0; }
  .bar-chart-cols { height: 11rem; }
}

/* ── Module Spotlights ─────────────────────────────────────── */
.mod-spotlight {
  padding: 6rem 0;
  min-height: 50vh;
}

.mod-spotlight:nth-child(even) {
  background: #ffffff;
}

.mod-spotlight .spotlight-copy h2 {
  font-size: clamp(2.4rem, 3vw, 3.8rem);
}

.mod-spotlight .spotlight-copy > p {
  font-size: 1.6rem;
  color: #5f6f92;
  line-height: 1.85;
  margin: 0 0 1.4rem;
}

.mod-spotlight-fullname {
  font-size: 1.4rem !important;
  color: rgba(100, 120, 160, 0.7) !important;
  font-weight: 500;
  font-style: italic;
  margin: -0.4rem 0 1.4rem !important;
}

.mod-spotlight--reversed .spotlight-visual {
  order: -1;
}

@media (max-width: 1100px) {
  .mod-spotlight {
    padding: 5rem 0;
    min-height: unset;
  }
  .mod-spotlight--reversed .spotlight-visual {
    order: 0;
  }
}

@media (max-width: 768px) {
  .mod-spotlight {
    padding: 4rem 0;
  }
}

/* ── Back to top ─────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f5fd0 0%, #1f77d7 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.8rem 2.4rem rgba(42, 104, 209, 0.35);
  z-index: 50;
  opacity: 0;
  transform: translateY(1.2rem);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  box-shadow: 0 1.2rem 3rem rgba(42, 104, 209, 0.5);
  transform: translateY(-2px);
}
#back-to-top .material-symbols-outlined {
  font-size: 2.2rem;
}

/*# sourceMappingURL=styles.css.map */