:root {
  --emp-blue: #007adb;
  --emp-blue-2: #38bdf8;
  --emp-green: #269b51;
  --emp-yellow: #f6b934;
  --emp-ink: #10203a;
  --emp-muted: #65758b;
  --emp-line: #dce5f2;
  --emp-cream: #f8f1e8;
  --emp-cream-2: #f1e4d2;
  --emp-white: #ffffff;
  --emp-shadow: 0 18px 45px rgba(16, 32, 58, 0.12);
  --emp-radius: 8px;
  color-scheme: light;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--emp-cream);
  color: var(--emp-ink);
  margin: 0;
}

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

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

.site-header {
  align-items: center;
  background: rgba(248, 241, 232, 0.88);
  border-bottom: 1px solid rgba(0, 122, 219, 0.1);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 68px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  height: auto;
  width: 172px;
}

.desktop-nav,
.header-actions {
  align-items: center;
  display: flex;
  gap: 22px;
}

.desktop-nav a,
.login-link {
  color: var(--emp-ink);
  font-size: 14px;
  font-weight: 800;
}

.primary-action,
.secondary-action,
.dark-action {
  align-items: center;
  border-radius: var(--emp-radius);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.primary-action {
  background: var(--emp-blue);
  box-shadow: 5px 5px 0 var(--emp-yellow);
  color: var(--emp-white);
}

.secondary-action {
  background: var(--emp-white);
  border: 1px solid rgba(0, 122, 219, 0.28);
  color: var(--emp-blue);
}

.dark-action {
  background: var(--emp-blue);
  box-shadow: 4px 4px 0 var(--emp-yellow);
  color: var(--emp-white);
}

.hero {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.9fr) minmax(220px, 0.55fr);
  min-height: 520px;
  padding: 24px clamp(20px, 5vw, 68px) 32px;
  position: relative;
}

.hero h1 {
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
}

.hero-copy {
  align-self: center;
  max-width: 590px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--emp-blue);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero h1,
.section h2,
.jobs-showcase h2 {
  color: var(--emp-ink);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
}

.hero p,
.section-heading p,
.job-panel p,
.proof-grid p,
.site-footer p {
  color: var(--emp-muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-copy p {
  max-width: 475px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 420px;
  position: relative;
}

.hero-ring {
  border: 56px solid rgba(38, 155, 81, 0.92);
  border-radius: 50%;
  height: 330px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 330px;
  z-index: 0;
}

.hero-avatar {
  bottom: -32px;
  height: 145%;
  left: 50%;
  max-height: 580px;
  max-width: none;
  object-fit: contain;
  position: absolute;
  transform: translateX(-61%);
  z-index: 2;
}

.hero-note {
  align-self: center;
  color: var(--emp-ink);
  font-size: 15px;
  line-height: 1.55;
}

.hero-note strong {
  color: var(--emp-blue);
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}

.section {
  padding: 92px clamp(20px, 5vw, 68px);
}

.advantage-section {
  background: var(--emp-white);
  display: grid;
  gap: clamp(34px, 6vw, 96px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 74px;
  padding-bottom: 74px;
}

.advantage-section .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}

.advantage-section .section-heading h2 {
  max-width: 820px;
}

.advantage-card {
  display: grid;
  align-content: start;
  gap: 22px;
  padding-left: 42px;
  position: relative;
}

.advantage-card .bolt {
  color: var(--emp-blue);
  font-size: 27px;
  font-weight: 950;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 5px;
}

.advantage-card h2 {
  color: var(--emp-ink);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 950;
  line-height: 1.08;
  margin: 0;
}

.advantage-card ul {
  color: var(--emp-muted);
  display: grid;
  gap: 24px;
  font-size: 17px;
  line-height: 1.52;
  margin: 0;
  padding-left: 22px;
}

.advantage-card .primary-action {
  justify-self: start;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.split {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.8fr) auto;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 58px);
  max-width: 650px;
}

.section-heading p {
  margin: 8px 0 0;
  max-width: 530px;
}

.section-heading.centered {
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

.cards-mosaic {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.95fr 1.55fr;
}

.info-card {
  background: var(--emp-cream-2);
  border: 1px solid rgba(0, 122, 219, 0.08);
  border-radius: var(--emp-radius);
  min-height: 280px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
}

.info-card::after {
  border: 8px solid rgba(0, 122, 219, 0.5);
  border-radius: 50%;
  bottom: -38px;
  content: "";
  height: 105px;
  position: absolute;
  right: -30px;
  width: 105px;
}

.info-card-wide {
  min-height: 300px;
}

.card-icon {
  color: var(--emp-blue);
  font-size: 14px;
  font-weight: 950;
}

.info-card h3,
.job-card h3,
.proof-grid h3,
.differentiator-list h3 {
  color: var(--emp-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.08;
  margin: 18px 0 14px;
}

.info-card p,
.differentiator-list p,
.proof-grid li,
.job-card p {
  color: #33435d;
  font-size: 15px;
  line-height: 1.58;
}

.circle-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  margin: 40px auto 0;
  max-width: 1040px;
  place-items: center;
}

.circle-item {
  align-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(0, 122, 219, 0.68);
  border-radius: 50%;
  color: var(--emp-ink);
  display: flex;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 950;
  justify-content: center;
  margin: -4px;
  padding: 28px;
  text-align: center;
  width: 100%;
}

.circle-item-active {
  background: var(--emp-blue);
  border-color: var(--emp-yellow);
  color: var(--emp-white);
  flex-direction: column;
  gap: 14px;
  padding: 40px;
}

.circle-item-active p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.circle-item-active a {
  color: var(--emp-yellow);
  font-size: 14px;
  font-weight: 950;
  text-decoration: underline;
}

.jobs-showcase {
  background: var(--emp-blue);
  color: var(--emp-white);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 1.1fr;
  min-height: 650px;
}

.job-tabs,
.job-panel {
  padding: clamp(36px, 5vw, 68px);
}

.job-tabs h2,
.job-panel h2 {
  color: var(--emp-white);
  font-size: clamp(34px, 4vw, 55px);
  margin-bottom: 54px;
}

.job-tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  margin: 28px 0;
  padding: 0;
  text-align: left;
  transition: color 0.3s ease, transform 0.3s ease;
  width: 100%;
}

.job-tab:hover {
  color: rgba(255, 255, 255, 0.8);
}

.job-tab.active {
  color: var(--emp-white);
  font-weight: 950;
  transform: translateX(4px);
}

#job-cards-wrapper,
#showcase-img {
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(6px);
}

.showcase-image {
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.showcase-image::after {
  border: 38px solid rgba(38, 155, 81, 0.95);
  border-radius: 50%;
  bottom: -78px;
  content: "";
  height: 210px;
  left: -26px;
  position: absolute;
  width: 210px;
}

.showcase-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.job-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.job-panel .eyebrow {
  color: var(--emp-yellow);
}

.job-card {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--emp-radius);
  margin-top: 20px;
  padding: 24px;
}

.job-card h3 {
  color: var(--emp-white);
  margin-top: 0;
}

.job-card p {
  color: rgba(255, 255, 255, 0.7);
}

.job-card div {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
}

.job-card span {
  color: var(--emp-yellow);
  font-size: 13px;
  font-weight: 900;
}

.job-card a {
  border: 1px solid var(--emp-yellow);
  border-radius: var(--emp-radius);
  color: var(--emp-yellow);
  font-size: 13px;
  font-weight: 950;
  padding: 9px 12px;
}

.differentiator-list {
  display: grid;
  gap: 28px;
}

.differentiator-list article {
  border-top: 1px solid rgba(0, 122, 219, 0.22);
  display: grid;
  gap: 28px;
  grid-template-columns: 280px minmax(0, 1fr);
  padding-top: 28px;
}

.differentiator-list img {
  aspect-ratio: 1.45;
  border-radius: var(--emp-radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.differentiator-list span {
  color: var(--emp-blue);
  font-size: 13px;
  font-weight: 950;
}

.differentiator-list h3 {
  max-width: 520px;
}

.differentiator-list p {
  max-width: 720px;
}

.partner-companies {
  background: var(--emp-cream);
}

.partner-companies > .section-heading.split {
  align-items: center !important;
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  margin-inline: auto;
  max-width: 900px;
  text-align: center;
}

.partner-companies > .section-heading.split > div {
  display: grid;
  justify-items: center;
}

.partner-companies .section-heading h2,
.partner-companies .section-heading p {
  margin-inline: auto;
  max-width: 760px;
}

.partner-companies .section-heading .dark-action {
  margin-inline: auto;
}

.partner-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-card {
  align-items: center;
  background: var(--emp-white);
  border: 1px solid rgba(0, 122, 219, 0.16);
  border-radius: var(--emp-radius);
  color: rgba(16, 32, 58, 0.72);
  display: flex;
  font-size: 18px;
  font-weight: 950;
  justify-content: center;
  min-height: 104px;
  padding: 20px;
  text-align: center;
}

.partner-card:nth-child(3n + 1) {
  color: var(--emp-blue);
}

.partner-card:nth-child(3n + 2) {
  color: var(--emp-green);
}

.partner-card:nth-child(3n) {
  color: #a86f00;
}

.support-page {
  background: var(--emp-white);
}

.support-hero {
  background: var(--emp-cream);
  display: grid;
  gap: clamp(28px, 6vw, 84px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  min-height: 500px;
  padding: 84px clamp(20px, 5vw, 68px) 72px;
}

.support-hero-copy {
  align-self: center;
  max-width: 780px;
}

.support-hero h1 {
  color: var(--emp-ink);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.support-hero p,
.support-quick-note p,
.support-channel p,
.support-topic-list p {
  color: var(--emp-muted);
  font-size: 17px;
  line-height: 1.56;
}

.support-hero-copy p {
  margin: 18px 0 0;
  max-width: 650px;
}

.support-quick-note {
  align-self: center;
  background: var(--emp-white);
  border: 1px solid rgba(0, 122, 219, 0.16);
  border-radius: var(--emp-radius);
  box-shadow: var(--emp-shadow);
  padding: clamp(24px, 4vw, 34px);
}

.support-quick-note strong {
  color: var(--emp-blue);
  display: block;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.12;
  margin-bottom: 12px;
}

.support-quick-note p {
  margin: 0;
}

.support-section {
  background: var(--emp-white);
}

.support-channel-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-channel {
  background: var(--emp-cream);
  border: 1px solid rgba(0, 122, 219, 0.14);
  border-radius: var(--emp-radius);
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
}

.support-channel-icon {
  align-items: center;
  background: var(--emp-blue);
  border-radius: var(--emp-radius);
  color: var(--emp-white);
  display: inline-flex;
  font-size: 24px;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.support-channel h3,
.support-topic-list h3 {
  color: var(--emp-ink);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
  margin: 0;
}

.support-channel p,
.support-topic-list p {
  margin: 0;
}

.support-channel a,
.support-channel span:not(.support-channel-icon) {
  color: var(--emp-blue);
  font-size: 15px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.support-topics {
  background: var(--emp-cream);
}

.support-topic-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.support-topic-list article {
  background: var(--emp-white);
  border: 1px solid rgba(0, 122, 219, 0.14);
  border-radius: var(--emp-radius);
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
}

.site-footer {
  background: var(--emp-white);
  border-top: 1px solid var(--emp-line);
  color: var(--emp-ink);
  display: grid;
  gap: 44px;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  padding: 72px clamp(20px, 5vw, 68px);
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  border: 44px solid rgba(38, 155, 81, 0.48);
  border-radius: 50%;
  bottom: -40px;
  content: "";
  height: 240px;
  position: absolute;
  right: 9%;
  width: 240px;
}

.site-footer img {
  margin-bottom: 22px;
  width: 185px;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: var(--emp-muted);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--emp-blue);
}

.site-footer nav,
.site-footer address {
  display: grid;
  font-style: normal;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.site-footer strong {
  color: var(--emp-ink);
  font-size: 16px;
  margin-bottom: 6px;
}

.footer-brand,
.site-footer nav,
.footer-apps,
.site-footer address {
  position: relative;
  z-index: 1;
}

.footer-apps {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-apps > strong {
  color: var(--emp-ink);
  font-size: 24px;
  font-weight: 950;
  margin: 0;
}

.footer-apps > span {
  color: var(--emp-muted);
  font-size: 15px;
  font-weight: 800;
}

.store-buttons,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.store-buttons a {
  align-items: center;
  background: var(--emp-white);
  border: 1px solid var(--emp-line);
  border-radius: var(--emp-radius);
  box-shadow: 4px 4px 0 rgba(0, 122, 219, 0.08);
  color: var(--emp-ink);
  display: inline-flex;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.store-buttons a:hover {
  background-color: var(--emp-cream);
  border-color: var(--emp-blue);
}

.store-buttons span:not(.store-icon) {
  color: var(--emp-ink);
  font-size: 16px;
  font-weight: 850;
}

.site-footer .store-icon {
  align-items: center;
  color: #111827;
  display: inline-flex;
  margin: 0;
}

.store-icon svg {
  display: block;
  height: 23px;
  width: 23px;
}

.social-links a {
  align-items: center;
  background: var(--emp-white);
  border: 1px solid var(--emp-line);
  border-radius: 50%;
  color: var(--emp-blue);
  display: inline-flex;
  font-size: 17px;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
  width: 42px;
}

.social-links a:hover {
  background: var(--emp-cream);
  border-color: var(--emp-blue);
}

.social-links svg {
  display: block;
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

.social-links svg path:not(.social-cutout) {
  fill: currentColor;
  stroke: none;
}

.social-links .social-cutout {
  fill: var(--emp-white);
  stroke: none;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero-ring {
  animation: ring-breathe 8s ease-in-out infinite;
}

@keyframes ring-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-ring {
    animation: none;
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-note {
    max-width: 620px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
  }



  .cards-mosaic,
  .advantage-section,
  .jobs-showcase,
  .support-hero,
  .support-channel-grid,
  .support-topic-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jobs-showcase {
    min-height: auto;
  }

  .showcase-image {
    min-height: 420px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-topic-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 138px;
  }

  .login-link {
    display: none;
  }

  .header-actions .primary-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    padding: 34px 16px 54px;
  }

  .hero-avatar {
    bottom: -54px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-visual {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    min-height: 390px;
  }

  .hero-ring {
    border-width: 34px;
    height: 210px;
    left: -92px;
    top: 120px;
    width: 210px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .circle-map {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .circle-item {
    font-size: 15px;
    padding: 18px;
  }

  .circle-item-active {
    grid-column: span 2;
  }

  .differentiator-list article {
    grid-template-columns: 1fr;
  }

  .job-tabs,
  .job-panel {
    padding: 38px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .support-hero {
    min-height: auto;
    padding: 54px 16px;
  }

  .support-topic-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .header-actions .primary-action {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .cards-mosaic {
    gap: 14px;
  }

  .info-card {
    min-height: auto;
  }
}

/* Estilos para Páginas Estáticas (Política de Privacidade, Exclusão de Conta) */
.static-container {
  max-width: 850px;
  margin: 60px auto 100px;
  padding: 0;
  background: var(--emp-white);
  border: 1px solid var(--emp-line);
  border-radius: 12px;
  box-shadow: var(--emp-shadow);
  overflow: hidden;
}

.static-content {
  padding: 40px clamp(20px, 5vw, 60px);
}

.static-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--emp-ink);
  font-weight: 900;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--emp-blue);
  padding-bottom: 12px;
}

.static-content h2 {
  font-size: clamp(20px, 3vw, 26px);
  color: var(--emp-ink);
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 16px;
}

.static-content p {
  color: var(--emp-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.static-content ul, .static-content ol {
  color: var(--emp-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 24px;
}

.static-content li {
  margin-bottom: 8px;
}

.static-content strong {
  color: var(--emp-ink);
}

.static-content a {
  color: var(--emp-blue);
  font-weight: 700;
  text-decoration: underline;
}

.static-content a:hover {
  color: var(--emp-blue-2);
}

.tab-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--emp-line);
  padding-bottom: 12px;
}

.tab-button {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 800;
  color: var(--emp-muted);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.tab-button:hover {
  background: rgba(0, 78, 189, 0.05);
  color: var(--emp-blue);
}

.tab-button.active {
  background: var(--emp-blue);
  color: var(--emp-white);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

