:root {
  --navy: #001a4b;
  --navy-dark: #010207;
  --purple: #7a43d1;
  --purple-soft: #e8e1f4;
  --green: #7ed321;
  --text: #1f1f1f;
  --muted: #64607a;
  --bg: #f7f6fb;
  --white: #ffffff;
  --shadow: 0 10px 24px rgba(30, 16, 80, 0.12);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif; 
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2 {
  font-weight: 700;
	line-height: 1.2;
}

h3, h4 {
  font-weight: 600;
}

p {
  font-weight: 400;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.2s ease;
  border: 2px solid transparent;
	font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(126, 211, 33, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: #94a0ff;
  color: var(--white);
}

.btn:hover {
  transform: translateY(-1px);
}

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;

  margin-left: auto;
}

.nav a {
  opacity: 0.95;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.2s ease;
}

.hero {
  /*background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);*/
	background:
    linear-gradient(rgba(7, 26, 103, 0.1), rgba(4, 18, 70, 0.5)),
    url('../imagens/hero4.png') center/cover no-repeat;
	
  color: var(--white);
  padding: 36px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-illustration {
  display: none

  background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)),
/*url('../imagens/hero2.png') center/cover no-repeat;*/
	  /*
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 35%),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);*/
  position: relative;
  overflow: hidden;
}

/*.hero-illustration::before,
.hero-illustration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(178, 141, 255, 0.18);
  filter: blur(2px);
}*/

.hero-illustration::before {
  width: 280px;
  height: 280px;
  top: 24px;
  left: 24px;
}

.hero-illustration::after {
  width: 220px;
  height: 220px;
  right: 36px;
  top: 50px;
}

.hero-copy {
  max-width: 700px;
  margin-left: auto;
  text-align: right;
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 18px;
  font-weight: 900;
}

.hero-copy p {
  font-size: 1.1rem;
  color: #e6e6ff;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
	justify-content: flex-end;
}

.section {
  padding: 70px 0;
}

.section-soft {
  background: var(--purple-soft);
}

.section-title {
	text-align: center;
	margin-bottom: 18px;
}

.section-title-left {
  text-align: left;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
   max-width: 1000px;
	margin: 0 auto 10px;
  color: #20124d;
}

.section-title p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 42px;
  height: 42px;
	object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.9;
}

.pain-card h3,
.service-card h3,
.scenario-card h3 {
  color: #2c1460;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.scenario-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.scenario-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  opacity: 0.9;
}

.scenario-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  max-width: 90%;
}

.scenario-card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
}

.pain-card p,
.service-card p,
.transparency-box li,
.about p,
.cta p,
.footer,
.pillar p,
.step p {
  color: var(--muted);
}

.about p + p {
  margin-top: 18px;
}

#transparencia {
  background: var(--purple-soft);
}

.two-col-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 340px));
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
}

.transparency-box {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px 28px;
  width: 100%;
}

.transparency-section .container {
  text-align: center;
	display: flex;
  flex-direction: column;
  align-items: center; /* ISSO AQUI */
}

.transparency-box h3 {
  margin-bottom: 14px;
  color: #28145c;
}

.transparency-box ul {
  text-align: left;
	list-style: none;
  display: grid;
  gap: 10px;
}

.transparency-box li::before {
  margin-right: 10px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .two-col-boxes {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}

.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.pill-yes {
  background: #b9e87a;
  color: #1f3d00;
}

.pill-no {
  background: #dcdcdc;
  color: #333;
}

.yes li::before {
  content: "✓";
  color: var(--green);
}

.no li::before {
  content: "✕";
  color: #9d9aa8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.service-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: start;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  min-height: auto;
}

.service-icon {
  width: 40px;
  height: 40px;
  display: block;
  place-items: center;
  /*background: rgba(122, 67, 209, 0.1);
  color: var(--purple);*/
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin: 0;
  align-self: start;
	object-fit: contain;
}

.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  margin: 0 0 8px 0;
  color: #6a3cc3;
  font-size: 1.1rem;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #4f4a63;
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center; /*centraliza o grid */
  gap: 28px;
  margin-top: 34px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
  text-align: center;
	position: relative;
	z-index: 1;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #6a4bbf;
  z-index: 0;
}

.process-step .circle {
  width: 64px;
  height: 64px;
  background: #6a4bbf;
  color: white;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 1.2rem;
}


.step {
  position: relative;
  padding: 8px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--purple);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.step h3 {
  font-size: 1rem;
  color: #2d1866;
  margin-bottom: 8px;
}

.about-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* ESSENCIAL */
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.about-icons {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center; /* centraliza */
  text-align: center;
}

.about-item img {
  /*width: 80px;*/
  height: 120px;
  margin-bottom: 12px;
	display: block;
}

.about-item span {
  color: #6a4bbf;
  font-weight: 600;
	align-items: center;
}

.pillars {
  display: grid;
  gap: 18px;
}

.pillar {
	background: rgba(255,255,255,0.2);
	backdrop-filter: blur(8px);
	padding: 20px;
	border-radius: 20px;
	margin: 10px 0;
}

.pillar h4 {
  color: white;
  margin-bottom: 8px;
}

.pillar p {
  color: rgba(255,255,255,0.8);
}



.cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 76px 0;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.cta p {
  color: #d7d8ff;
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 1.06rem;
}

.cta-final {
	background: linear-gradient(rgba(7,26,103,0.85), rgba(4,18,70,0.9)), 
	url('../imagens/final.jpg') center/cover no-repeat;
	color: white;
	padding: 80px 0; 
}

.cta-final-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.cta-left {
  grid-column: 2;
	margin-top: 0;
	text-align: right;
}

.cta-right {
  grid-column: 1;
	margin-top: 0px;
}

.cta-logo {
	width: 420px;
	max-width: 100%;
	margin-top: 0;
	display: block;
}
/*{
  width: 220px;
  margin-bottom: 20px;
}*/

.cta-company {
  font-size: 0.9rem;
  margin-bottom: 12px;
  opacity: 0.8;
}

.cta-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-links a {
  color: white;
}

.cta-right h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-right p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
}

.btn-cta-final {
  padding: 14px 28px;
  font-size: 1rem;
  margin-bottom: 10px;
}


.cta-note {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
}

  .process-steps {
    position: relative;
  }

@media (max-width: 768px) {

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps::before {
    display: none; /* 👈 MATA A LINHA */
  }

}

@media (max-width: 768px) {
  .cta-final-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-links {
    justify-content: center;
  }

  .cta-logo {
    margin: 0 auto 20px;
  }
}

.footer {
  background: #f1eef8;
  padding: 22px 0;
  font-size: 0.94rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section-soft#sobre {
	background: var(--purple-soft);
	color: white;
	padding: 140px 0;
}


@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .two-col-boxes,
  .cards-grid,
  .services-grid,
  .scenarios-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
	  max-width: 60px;
	  font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .cards-grid,
  .services-grid,
  .two-col-boxes,
  .scenarios-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px 0 42px;
  }

  .hero-illustration {
    min-height: 240px;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(4, 18, 70, 0.98);
    padding: 16px;
    border-radius: 16px;
  }

  .nav.nav-open {
    display: flex;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}