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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #eef1f7 0%, #e4e8f2 100%);
  min-height: 100vh;
  color: #1e2f63;
}

.front-main {
  width: 100%;
}

.hero-kolmear {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 36px;
  overflow: hidden;
}

.hero-kolmear::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(30, 47, 99, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30, 47, 99, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
}

.hero-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(39, 63, 126, 0.16);
  padding: 44px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.logo-box {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(135deg, #f6f6f9 0%, #ececf2 100%);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.logo-box img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  min-height: 72px;
  padding: 0 28px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(180deg, #f8ad2a 0%, #f39a1e 100%);
  border: 1px solid #d6820c;
  box-shadow:
    0 12px 24px rgba(243, 154, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.25s ease;
  position: relative;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 28px rgba(243, 154, 30, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  filter: brightness(1.02);
}

.hero-button:active {
  transform: translateY(0);
}

.hero-button::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: 108%;
  height: 38px;
  background: radial-gradient(
    ellipse at center,
    rgba(243, 154, 30, 0.18) 0%,
    rgba(243, 154, 30, 0) 75%
  );
  pointer-events: none;
  z-index: -1;
}

/* ==========================
   TITULAÇÃO DOS CARDS
   ========================== */

.stats-heading {
  text-align: center;
  margin: 34px auto 18px;
}

.stats-heading h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #243a73;
  margin-bottom: 8px;
}

.stats-heading p {
  font-size: 16px;
  color: #6f7f99;
}

/* ==========================
   BLOCO DE CONTADORES
   ========================== */

.stats-strip {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* Linha 1 */
.stats-strip .stat-card:nth-child(1) {
  grid-column: span 2;
}

.stats-strip .stat-card:nth-child(2) {
  grid-column: span 2;
}

.stats-strip .stat-card:nth-child(3) {
  grid-column: span 2;
}

/* Linha 2 */
.stats-strip .stat-card:nth-child(4) {
  grid-column: span 3;
}

.stats-strip .stat-card:nth-child(5) {
  grid-column: span 3;
}

.stat-card {
  min-height: 112px;
  border-radius: 20px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 28px rgba(39, 63, 126, 0.14);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(39, 63, 126, 0.18);
}

.stat-number {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 180px;
  margin: 0 auto;
}

/* Cores */
.stat-blue {
  background: #3b73c9;
}

.stat-navy {
  background: #243a73;
}

.stat-cyan {
  background: #1f9bb6;
}

.stat-orange {
  background: #f7931a;
}

.stat-steel {
  background: #6f7f99;
}

/* ==========================
   CTA SECUNDÁRIO
   ========================== */

.secondary-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.secondary-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background: rgba(36, 58, 115, 0.08);
  border: 1px solid rgba(36, 58, 115, 0.18);
  color: #243a73;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.secondary-cta-button:hover {
  background: rgba(36, 58, 115, 0.14);
}

/* ==========================
   SEÇÕES
   ========================== */

.section-block {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px 16px 18px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 58, 115, 0.08);
  color: #243a73;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #243a73;
  margin-bottom: 10px;
}

.section-head p {
  font-size: 16px;
  line-height: 1.55;
  color: #6f7f99;
}

/* ==========================
   COMO FUNCIONA
   ========================== */

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

.how-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 58, 115, 0.08);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 14px 28px rgba(39, 63, 126, 0.10);
}

.how-step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f8ad2a 0%, #f39a1e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.how-card h3 {
  font-size: 20px;
  color: #243a73;
  margin-bottom: 10px;
}

.how-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #637391;
}

/* ==========================
   PERFIS
   ========================== */

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

.profile-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 58, 115, 0.08);
  border-radius: 20px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(39, 63, 126, 0.10);
}

.profile-card i {
  font-size: 34px;
  color: #243a73;
  margin-bottom: 14px;
  display: inline-block;
}

.profile-card h3 {
  font-size: 20px;
  color: #243a73;
  margin-bottom: 10px;
}

.profile-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #637391;
}

/* ==========================
   CTA FINAL
   ========================== */

.final-cta-section {
  padding-bottom: 38px;
}

.final-cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,249,253,0.96) 100%);
  border: 1px solid rgba(36, 58, 115, 0.08);
  border-radius: 24px;
  padding: 34px 28px;
  box-shadow: 0 18px 36px rgba(39, 63, 126, 0.12);
  text-align: center;
}

.final-cta-box h2 {
  font-size: 30px;
  line-height: 1.15;
  color: #243a73;
  margin-bottom: 10px;
}

.final-cta-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #6f7f99;
  max-width: 760px;
  margin: 0 auto 22px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-front,
.btn-secondary-front {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary-front {
  background: linear-gradient(180deg, #f8ad2a 0%, #f39a1e 100%);
  border: 1px solid #d6820c;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(243, 154, 30, 0.22);
}

.btn-primary-front:hover {
  transform: translateY(-2px);
}

.btn-secondary-front {
  background: rgba(36, 58, 115, 0.08);
  border: 1px solid rgba(36, 58, 115, 0.18);
  color: #243a73;
}

.btn-secondary-front:hover {
  background: rgba(36, 58, 115, 0.14);
}

/* ==========================
   FOOTER
   ========================== */

.front-footer {
  border-top: 1px solid rgba(36, 58, 115, 0.08);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(6px);
}

.front-footer-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 16px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand strong {
  font-size: 18px;
  color: #243a73;
}

.footer-brand span,
.footer-meta span {
  font-size: 14px;
  color: #6f7f99;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

/* ==========================
   RESPONSIVO
   ========================== */

@media (max-width: 900px) {
  .hero-kolmear {
    padding: 20px 12px 28px;
  }

  .hero-wrapper {
    max-width: 100%;
  }

  .hero-card {
    padding: 28px 16px 34px;
    border-radius: 18px;
  }

  .logo-box {
    max-width: 100%;
    margin-bottom: 22px;
    padding: 16px 12px;
  }

  .logo-box img {
    max-width: 250px;
  }

  .hero-button {
    max-width: 100%;
    min-height: 60px;
    font-size: 18px;
    border-radius: 14px;
  }

  .stats-heading {
    margin: 28px auto 16px;
  }

  .stats-heading h2 {
    font-size: 26px;
  }

  .stats-heading p {
    font-size: 15px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    gap: 14px;
    margin: 0 auto 20px;
  }

  .stats-strip .stat-card:nth-child(1),
  .stats-strip .stat-card:nth-child(2),
  .stats-strip .stat-card:nth-child(3),
  .stats-strip .stat-card:nth-child(4),
  .stats-strip .stat-card:nth-child(5) {
    grid-column: span 1;
  }

  .stat-card {
    min-height: 100px;
    padding: 16px 16px 14px;
  }

  .stat-number {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 14px;
    max-width: none;
  }

  .section-block {
    padding: 28px 12px 14px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .how-grid,
  .profiles-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-box {
    padding: 28px 20px;
  }

  .final-cta-box h2 {
    font-size: 26px;
  }

  .front-footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-card {
    padding: 22px 14px 28px;
  }

  .logo-box img {
    max-width: 210px;
  }

  .hero-button {
    min-height: 56px;
    font-size: 16px;
    letter-spacing: 0.2px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 92px;
    align-items: center;
    text-align: center;
  }

  .stat-label {
    max-width: none;
  }

  .stats-heading h2,
  .section-head h2,
  .final-cta-box h2 {
    font-size: 24px;
  }

  .section-head p,
  .final-cta-box p,
  .how-card p,
  .profile-card p {
    font-size: 15px;
  }

  .btn-primary-front,
  .btn-secondary-front,
  .secondary-cta-button {
    width: 100%;
  }
}