:root {
  --blue-900: #082f73;
  --blue-800: #0b3f8f;
  --blue-700: #0c56ad;
  --blue-500: #168ac7;
  --teal-600: #078c9c;
  --teal-100: #dff6f7;
  --green-600: #4c9b36;
  --green-100: #eaf6e4;
  --yellow-500: #f2c94c;
  --orange-500: #f39a43;
  --orange-100: #fff1e4;
  --ink: #15304f;
  --muted: #5e7187;
  --line: #dce7ee;
  --surface: #ffffff;
  --background: #f5f9fb;
  --shadow: 0 20px 50px rgba(19, 65, 103, 0.12);
  --shadow-soft: 0 12px 30px rgba(19, 65, 103, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--background);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--blue-900);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 238, 0.85);
  backdrop-filter: blur(14px);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-symbol {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-symbol svg {
  width: 100%;
  height: 100%;
}

.brand-symbol circle {
  fill: var(--teal-100);
  stroke: var(--teal-600);
  stroke-width: 2;
}

.brand-symbol path {
  fill: var(--blue-800);
}

.brand-text {
  display: grid;
  line-height: 1.12;
}

.brand-text strong {
  color: var(--blue-900);
  font-size: 1.05rem;
  font-weight: 900;
}

.brand-text small {
  margin-top: 4px;
  color: var(--teal-600);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-800);
  background: #eef6fb;
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 15% 15%, rgba(242, 201, 76, 0.22), transparent 22%),
    radial-gradient(circle at 89% 22%, rgba(22, 138, 199, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f3fbfd 52%, #edf7fa 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: -120px;
  border: 34px solid rgba(7, 140, 156, 0.08);
}

.hero::after {
  width: 180px;
  height: 180px;
  right: 4%;
  top: -98px;
  border: 28px solid rgba(76, 155, 54, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-600);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow-500), var(--orange-500));
}

.hero h1 {
  max-width: 680px;
  margin: 16px 0 20px;
  color: var(--blue-900);
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--teal-600);
}

.hero-text {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.resource-image:focus-visible {
  outline: 3px solid rgba(242, 201, 76, 0.9);
  outline-offset: 4px;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue-800), var(--teal-600));
  box-shadow: 0 12px 26px rgba(11, 63, 143, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(11, 63, 143, 0.28);
}

.button-secondary {
  color: var(--blue-800);
  background: white;
  border-color: #cbdde8;
}

.button-secondary:hover {
  background: #f7fbfd;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 34px;
}

.hero-highlights div {
  position: relative;
  display: grid;
  padding-left: 14px;
}

.hero-highlights div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 999px;
  background: var(--green-600);
}

.hero-highlights div:nth-child(2)::before {
  background: var(--yellow-500);
}

.hero-highlights div:nth-child(3)::before {
  background: var(--orange-500);
}

.hero-highlights strong {
  color: var(--blue-900);
  font-size: 0.98rem;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
}

.image-frame {
  overflow: hidden;
  min-height: 510px;
  border: 10px solid rgba(255, 255, 255, 0.86);
  border-radius: 44px 44px 120px 44px;
  box-shadow: var(--shadow);
  background: white;
}

.image-frame img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: 57% center;
}

.floating-note {
  position: absolute;
  left: -38px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  padding: 16px 20px;
  border: 1px solid rgba(220, 231, 238, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.note-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  color: white;
  background: var(--green-600);
  font-size: 1.15rem;
  font-weight: 900;
}

.floating-note div {
  display: grid;
}

.floating-note strong {
  color: var(--blue-900);
}

.floating-note small {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.assessment-box h2 {
  margin: 12px 0 14px;
  color: var(--blue-900);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 900;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro {
  background: white;
}

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

.step-card {
  position: relative;
  min-height: 272px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.step-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -54px;
  bottom: -54px;
  border-radius: 50%;
  opacity: 0.14;
  background: currentColor;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #b7c6d1;
  font-size: 0.83rem;
  font-weight: 900;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 18px;
  font-size: 1.65rem;
  font-weight: 900;
  background: currentColor;
}

.step-icon::first-letter {
  color: white;
}

.step-card h3 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.22rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.accent-blue {
  color: var(--blue-500);
}

.accent-blue .step-icon {
  color: white;
  background: var(--blue-500);
}

.accent-green {
  color: var(--green-600);
}

.accent-green .step-icon {
  color: white;
  background: var(--green-600);
}

.accent-orange {
  color: var(--orange-500);
}

.accent-orange .step-icon {
  color: white;
  background: var(--orange-500);
}

.resources {
  background:
    linear-gradient(rgba(245, 249, 251, 0.94), rgba(245, 249, 251, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(7, 140, 156, 0.14), transparent 30%);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.resource-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.7;
  overflow: hidden;
  background: #edf6fa;
}

.resource-image::after {
  content: "Abrir";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(8, 47, 115, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.resource-card:hover .resource-image img {
  transform: scale(1.025);
}

.resource-content {
  padding: 28px 30px 32px;
}

.resource-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.label-blue {
  color: var(--blue-800);
  background: #e5f2fb;
}

.label-green {
  color: #367a27;
  background: var(--green-100);
}

.resource-content h3 {
  margin: 16px 0 9px;
  color: var(--blue-900);
  font-size: 1.55rem;
}

.resource-content p {
  min-height: 52px;
  margin: 0 0 20px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-600);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link span {
  transition: transform 0.2s ease;
}

.assessment {
  padding-top: 10px;
  background: var(--background);
}

.assessment-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 54px 58px;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 95% 5%, rgba(242, 201, 76, 0.22), transparent 25%),
    linear-gradient(135deg, var(--blue-900), var(--blue-700) 60%, var(--teal-600));
  box-shadow: var(--shadow);
}

.assessment-box::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -80px;
  bottom: -90px;
  border: 28px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.section-kicker.light {
  color: #b8f1f1;
}

.assessment-box h2 {
  color: white;
}

.assessment-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.assessment-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
}

.assessment-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  font-weight: 800;
}

.assessment-points b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  color: var(--blue-900);
  background: var(--yellow-500);
}

.site-footer {
  margin-top: 92px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: flex-start;
}

.footer-content strong {
  color: var(--blue-900);
}

.footer-content p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-note {
  max-width: 470px;
  text-align: right;
}

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

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .assessment-box {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero-text {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-highlights {
    justify-content: center;
  }

  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .image-frame,
  .image-frame img {
    min-height: 440px;
    height: 440px;
  }

  .floating-note {
    left: 18px;
  }

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

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

  .assessment-box {
    padding: 46px 38px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-content {
    min-height: 70px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-text strong {
    font-size: 0.96rem;
  }

  .brand-text small {
    font-size: 0.65rem;
  }

  .hero {
    padding: 45px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: left;
  }

  .hero-highlights div {
    padding-left: 10px;
  }

  .hero-highlights strong {
    font-size: 0.83rem;
  }

  .hero-highlights span {
    font-size: 0.72rem;
  }

  .image-frame,
  .image-frame img {
    min-height: 350px;
    height: 350px;
  }

  .image-frame {
    border-width: 7px;
    border-radius: 28px 28px 74px 28px;
  }

  .floating-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -20px 16px 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .assessment-box h2 {
    font-size: 2rem;
  }

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

  .resource-content {
    padding: 24px;
  }

  .resource-content p {
    min-height: 0;
  }

  .assessment {
    padding-top: 0;
  }

  .assessment-box {
    padding: 36px 24px;
    border-radius: 24px;
  }

  .footer-content {
    display: grid;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
