/* =========================================================
   MEUPREVI — SITE COMPLETO
========================================================= */

:root {
  --primary: #0871f9;
  --primary-dark: #005ce5;
  --primary-soft: #eaf3ff;
  --navy: #071a49;
  --text: #44506f;
  --text-light: #69758f;
  --white: #ffffff;
  --background: #f7faff;
  --background-alt: #f1f6fd;
  --border: #dce7f5;
  --yellow: #ffb20c;
  --success: #16835a;

  --container: 1400px;
  --header-height: 82px;

  --transition: 0.25s ease;

  --shadow-small:
    0 8px 24px rgba(18, 53, 102, 0.09);

  --shadow-medium:
    0 18px 48px rgba(18, 53, 102, 0.13);

  --shadow-card:
    0 14px 38px rgba(19, 52, 101, 0.08);
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  overflow-x: hidden;

  color: var(--text);
  background: var(--white);

  font-family: "Inter", Arial, Helvetica, sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
}

ul {
  list-style: none;
}


/* =========================================================
   UTILITÁRIOS
========================================================= */

.page-container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.section-label {
  width: fit-content;
  padding: 7px 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  background: var(--primary-soft);

  border: 1px solid rgba(8, 113, 249, 0.18);
  border-radius: 999px;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.section-label-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}


/* =========================================================
   CABEÇALHO
========================================================= */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;

  width: 100%;
  height: var(--header-height);

  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(15, 51, 105, 0.08);

  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow:
    0 8px 25px rgba(13, 42, 83, 0.08);
}

.header-container {
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  width: 172px;
  height: 56px;
  flex: 0 0 172px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;
}

.brand-logo {
  width: 170px;
  height: 54px;

  object-fit: contain;

  transform: scale(1.06);
  transform-origin: left center;
}

.desktop-navigation {
  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 2.7vw, 44px);
}

.nav-link {
  position: relative;

  height: var(--header-height);

  display: flex;
  align-items: center;

  color: var(--navy);

  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;

  transition:
    color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 16px;

  width: 0;
  height: 2px;

  background: var(--primary);
  border-radius: 999px;

  transform: translateX(-50%);

  transition:
    width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 28px;
}

.header-cta {
  min-height: 48px;
  padding: 0 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );

  border-radius: 9px;

  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;

  box-shadow:
    0 8px 20px rgba(0, 103, 247, 0.22);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(0, 103, 247, 0.3);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.mobile-menu-button {
  display: none;

  width: 46px;
  height: 46px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  border-radius: 10px;
}

.mobile-menu-button span {
  width: 28px;
  height: 3px;

  background: var(--primary);
  border-radius: 999px;

  transition:
    transform var(--transition),
    opacity var(--transition);
}

.mobile-menu-button.is-active span:nth-child(1) {
  transform:
    translateY(9px)
    rotate(45deg);
}

.mobile-menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-active span:nth-child(3) {
  transform:
    translateY(-9px)
    rotate(-45deg);
}

.mobile-navigation {
  position: absolute;
  top: 100%;
  left: 0;

  width: 100%;
  max-height: 0;

  overflow: hidden;
  visibility: hidden;
  opacity: 0;

  background: var(--white);
  border-top: 1px solid var(--border);

  box-shadow:
    0 20px 35px rgba(18, 47, 92, 0.12);

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mobile-navigation.is-open {
  max-height: 560px;
  visibility: visible;
  opacity: 1;
}

.mobile-navigation-content {
  width: min(calc(100% - 40px), 700px);
  margin: 0 auto;
  padding: 18px 0 26px;

  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 15px 4px;

  color: var(--navy);
  border-bottom: 1px solid #edf2f8;

  font-size: 15px;
  font-weight: 600;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-cta {
  min-height: 52px;
  margin-top: 20px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 10px;

  font-size: 15px;
  font-weight: 700;
}


/* =========================================================
   HERO DO COMPUTADOR
========================================================= */

.hero-desktop-art {
  display: block;

  width: 100%;

  background:
    linear-gradient(
      90deg,
      #f8fbff,
      #eef5ff
    );

  overflow: hidden;
}

.hero-desktop-art-container {
  position: relative;

  width: min(100%, 1920px);
  margin: 0 auto;
}

.hero-desktop-art-image {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
}

.hero-desktop-buttons {
  position: absolute;
  z-index: 10;

  top: 53.8%;
  left: 5.15%;

  width: 41%;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.7vw, 27px);
}

.desktop-art-primary,
.desktop-art-secondary {
  min-width: 0;
  min-height: clamp(46px, 3.55vw, 61px);
  padding:
    0
    clamp(15px, 1.45vw, 25px);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.8vw, 13px);

  border-radius:
    clamp(7px, 0.65vw, 11px);

  font-size:
    clamp(12px, 1.05vw, 18px);

  line-height: 1;
  font-weight: 700;
  white-space: nowrap;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.desktop-art-primary svg,
.desktop-art-secondary svg {
  width: clamp(17px, 1.4vw, 24px);
  height: clamp(17px, 1.4vw, 24px);
  flex: 0 0 auto;
}

.desktop-art-primary {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      #0876ff,
      #005ce5
    );

  box-shadow:
    0 11px 25px rgba(0, 99, 239, 0.25);
}

.desktop-art-primary:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 32px rgba(0, 99, 239, 0.34);
}

.desktop-art-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);

  border: 1.5px solid #5598ff;
}

.desktop-art-secondary:hover {
  transform: translateY(-2px);

  background: var(--white);
  border-color: var(--primary);

  box-shadow:
    0 12px 28px rgba(15, 53, 112, 0.13);
}


/* =========================================================
   HERO MOBILE
========================================================= */

.hero-mobile-section {
  display: none;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(225, 236, 253, 0.92),
      transparent 42%
    ),
    #f9fbff;
}

.hero-mobile-container {
  width: 100%;
  padding-bottom: 28px;
}

.hero-mobile-content {
  width: min(85%, 800px);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.hero-mobile-title {
  color: var(--navy);

  font-size:
    clamp(38px, 8.2vw, 61px);

  line-height: 1.08;
  letter-spacing: -0.048em;
  font-weight: 800;
}

.mobile-title-line {
  display: block;
}

.mobile-title-highlight {
  margin-top: 5px;
  color: var(--primary);
}

.hero-mobile-description {
  max-width: 760px;
  margin-top: 25px;

  color: #4b5570;

  font-size:
    clamp(16px, 3.35vw, 25px);

  line-height: 1.48;
}

.hero-mobile-actions {
  width: 100%;
  margin-top: 31px;

  display: flex;
  flex-direction: column;
  gap: 13px;
}

.mobile-primary-button,
.mobile-secondary-button {
  width: 100%;
  min-height: 59px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  font-size:
    clamp(16px, 3.3vw, 22px);

  line-height: 1;
  font-weight: 700;
  text-align: center;
}

.mobile-primary-button {
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      #0876ff,
      #005ce5
    );

  border: 1px solid var(--primary);

  box-shadow:
    0 11px 25px rgba(0, 99, 244, 0.22);
}

.mobile-secondary-button {
  color: #086af2;
  background: rgba(255, 255, 255, 0.75);

  border: 1.5px solid #176fff;
}

.mobile-photo-wrapper {
  width: min(85%, 800px);
  margin: 0 auto;

  overflow: hidden;

  border-radius: 22px;

  box-shadow:
    0 15px 40px rgba(18, 51, 99, 0.11);
}

.mobile-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;

  object-fit: cover;
  object-position: center 44%;
}

.mobile-features-card {
  width: min(85%, 800px);
  min-height: 174px;
  margin: 20px auto 0;
  padding: 14px 4px;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  background: rgba(255, 255, 255, 0.97);
  border:
    1px solid
    rgba(219, 229, 243, 0.9);

  border-radius: 21px;

  box-shadow:
    0 16px 42px rgba(18, 53, 102, 0.1);
}

.mobile-feature {
  position: relative;

  min-width: 0;
  padding: 6px 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  text-align: center;
}

.mobile-feature:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 10px;
  right: 0;

  width: 1px;
  height: calc(100% - 20px);

  background: #d5deea;
}

.mobile-feature-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  background: #edf5ff;

  border-radius: 50%;
}

.mobile-feature-icon svg {
  width: 43px;
  height: 43px;
}

.mobile-feature h2 {
  margin-top: 11px;

  color: #1c2848;

  font-size:
    clamp(13px, 2.8vw, 19px);

  line-height: 1.2;
  font-weight: 800;
}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.benefits-section {
  padding: 92px 0 96px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );
}

.section-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.75fr);

  align-items: end;
  gap: 60px;
}

.section-heading-main h2 {
  max-width: 760px;
  margin-top: 18px;

  color: var(--navy);

  font-size:
    clamp(38px, 3.5vw, 56px);

  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.section-heading-main h2 span {
  display: block;
  color: var(--primary);
}

.section-introduction {
  padding-bottom: 6px;

  color: var(--text);

  font-size: 18px;
  line-height: 1.65;
}

.benefits-grid {
  margin-top: 48px;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 20px;
}

.benefit-card {
  position: relative;

  min-height: 440px;
  padding: 32px;

  display: flex;
  flex-direction: column;

  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #dce7f5;
  border-radius: 18px;

  box-shadow: var(--shadow-card);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(8, 113, 249, 0.4);

  box-shadow:
    0 22px 50px rgba(19, 52, 101, 0.13);
}

.benefit-card-featured {
  background:
    linear-gradient(
      150deg,
      #ffffff 0%,
      #f4f8ff 100%
    );

  border-color:
    rgba(8, 113, 249, 0.25);
}

.benefit-tag {
  width: fit-content;
  min-height: 29px;
  padding: 0 11px;

  display: inline-flex;
  align-items: center;

  color: var(--primary);
  background: var(--primary-soft);

  border-radius: 999px;

  font-size: 11px;
  line-height: 1;
  font-weight: 800;
}

.benefit-icon {
  width: 74px;
  height: 74px;
  margin-top: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  background: #eef5ff;

  border-radius: 18px;
}

.benefit-icon svg {
  width: 49px;
  height: 49px;
}

.benefit-card h3 {
  margin-top: 23px;

  color: var(--navy);

  font-size: 22px;
  line-height: 1.22;
  font-weight: 800;
}

.benefit-card p {
  margin-top: 15px;

  color: var(--text);

  font-size: 15px;
  line-height: 1.65;
}

.benefit-action {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--primary);

  font-size: 14px;
  font-weight: 800;

  transition:
    gap var(--transition),
    color var(--transition);
}

.benefit-action:hover {
  gap: 14px;
  color: var(--primary-dark);
}

.benefit-action svg {
  width: 19px;
  height: 19px;
}


/* =========================================================
   COMO FUNCIONA
========================================================= */

.steps-section {
  padding: 90px 0 96px;

  background: var(--white);
}

.steps-heading {
  max-width: 760px;
  margin: 0 auto;

  text-align: center;
}

.steps-heading .section-label {
  margin: 0 auto;
}

.steps-heading h2 {
  margin-top: 18px;

  color: var(--navy);

  font-size:
    clamp(38px, 3.6vw, 56px);

  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.steps-heading h2 span {
  color: var(--primary);
}

.steps-heading p {
  max-width: 650px;
  margin: 18px auto 0;

  font-size: 17px;
  line-height: 1.65;
}

.steps-grid {
  position: relative;

  margin-top: 52px;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}

.step-card {
  position: relative;

  min-height: 340px;
  padding: 38px 34px;

  text-align: center;

  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 50%;

  font-size: 14px;
  font-weight: 800;
}

.step-icon {
  width: 106px;
  height: 106px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);
  background: var(--white);

  border: 8px solid #eaf2fd;
  border-radius: 50%;

  box-shadow: var(--shadow-small);
}

.step-icon svg {
  width: 60px;
  height: 60px;
}

.step-card h3 {
  margin-top: 24px;

  color: var(--navy);

  font-size: 21px;
  font-weight: 800;
}

.step-card p {
  margin-top: 13px;

  font-size: 15px;
  line-height: 1.65;
}


/* =========================================================
   FAIXA DE CONFIANÇA
========================================================= */

.trust-section {
  padding: 0 0 96px;

  background: var(--white);
}

.trust-card {
  min-height: 170px;
  padding: 30px 38px;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      #0876ff 0%,
      #005ce5 100%
    );

  border-radius: 20px;

  box-shadow:
    0 22px 50px rgba(0, 94, 227, 0.23);
}

.trust-item {
  position: relative;

  padding: 10px 34px;

  display: flex;
  align-items: center;
  gap: 22px;
}

.trust-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 6px;
  right: 0;

  width: 1px;
  height: calc(100% - 12px);

  background:
    rgba(255, 255, 255, 0.28);
}

.trust-icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(255, 255, 255, 0.11);

  border:
    1px solid
    rgba(255, 255, 255, 0.22);

  border-radius: 50%;
}

.trust-icon svg {
  width: 44px;
  height: 44px;
}

.trust-item h3 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.trust-item p {
  margin-top: 8px;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 14px;
  line-height: 1.5;
}


/* =========================================================
   ANÁLISE
========================================================= */

.analysis-section {
  padding: 96px 0;

  color: var(--white);

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(73, 155, 255, 0.4),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #071a49 0%,
      #0a2b67 100%
    );
}

.analysis-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(480px, 0.75fr);

  align-items: center;
  gap: 80px;
}

.analysis-copy h2 {
  max-width: 650px;
  margin-top: 20px;

  font-size:
    clamp(40px, 4vw, 62px);

  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.analysis-copy h2 span {
  display: block;
  color: #5aa4ff;
}

.analysis-copy > p {
  max-width: 610px;
  margin-top: 22px;

  color:
    rgba(255, 255, 255, 0.82);

  font-size: 18px;
  line-height: 1.65;
}

.analysis-list {
  margin-top: 30px;

  display: grid;
  gap: 13px;
}

.analysis-list li {
  position: relative;

  padding-left: 31px;

  color:
    rgba(255, 255, 255, 0.9);

  font-size: 15px;
  line-height: 1.5;
}

.analysis-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 0;

  width: 21px;
  height: 21px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--navy);
  background: #84c3ff;

  border-radius: 50%;

  font-size: 12px;
  font-weight: 900;
}

.analysis-form {
  padding: 34px;

  color: var(--text);
  background: var(--white);

  border-radius: 22px;

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24);
}

.form-field + .form-field {
  margin-top: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;

  color: var(--navy);

  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 15px;

  color: var(--navy);
  background: #f8faff;

  border: 1px solid #d8e4f3;
  border-radius: 10px;

  outline: none;

  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--primary);

  box-shadow:
    0 0 0 4px
    rgba(8, 113, 249, 0.11);
}

.form-field input::placeholder {
  color: #9aa6ba;
}

.consent-field {
  margin-top: 19px;

  display: grid;
  grid-template-columns:
    19px minmax(0, 1fr);

  align-items: start;
  gap: 10px;

  color: var(--text-light);

  font-size: 12px;
  line-height: 1.45;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin-top: 1px;

  accent-color: var(--primary);
}

.analysis-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 21px;
  padding: 0 20px;

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--primary),
      var(--primary-dark)
    );

  border-radius: 10px;

  font-size: 16px;
  font-weight: 800;

  box-shadow:
    0 12px 25px rgba(0, 99, 239, 0.23);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.analysis-submit:hover {
  transform: translateY(-2px);

  box-shadow:
    0 16px 32px
    rgba(0, 99, 239, 0.31);
}

.form-status {
  min-height: 20px;
  margin-top: 14px;

  color: var(--success);

  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #bf2f3c;
}

.form-disclaimer {
  margin-top: 8px;

  color: #7f8ba0;

  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}


/* =========================================================
   QUEM SOMOS
========================================================= */

.about-section {
  padding: 96px 0;

  background:
    linear-gradient(
      180deg,
      #ffffff,
      #f7faff
    );
}

.about-layout {
  display: grid;
  grid-template-columns:
    minmax(340px, 0.65fr)
    minmax(0, 1fr);

  align-items: center;
  gap: 80px;
}

.about-mark {
  min-height: 340px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  background:
    radial-gradient(
      circle at 50% 40%,
      #ffffff,
      #eaf3ff
    );

  border: 1px solid #dbe7f6;
  border-radius: 32px;

  box-shadow: var(--shadow-medium);

  font-size:
    clamp(54px, 6vw, 94px);

  letter-spacing: -0.07em;
}

.about-mark span {
  font-weight: 500;
}

.about-mark strong {
  color: var(--navy);
  font-weight: 800;
}

.about-content h2 {
  max-width: 730px;
  margin-top: 20px;

  color: var(--navy);

  font-size:
    clamp(40px, 3.8vw, 60px);

  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.about-content h2 span {
  display: block;
  color: var(--primary);
}

.about-content p {
  max-width: 720px;
  margin-top: 23px;

  font-size: 17px;
  line-height: 1.75;
}

.text-action {
  min-height: 52px;
  margin-top: 28px;
  padding: 0 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--white);
  background: var(--primary);

  border-radius: 10px;

  font-size: 14px;
  font-weight: 800;
}


/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
  color: var(--text);

  background: var(--white);
  border-top: 1px solid #e3ebf6;
}

.footer-grid {
  padding-top: 58px;
  padding-bottom: 48px;

  display: grid;
  grid-template-columns:
    1.25fr
    0.65fr
    0.75fr
    0.8fr;

  gap: 55px;
}

.footer-brand img {
  width: 178px;
  height: auto;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 17px;

  font-size: 14px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-column h2 {
  margin-bottom: 5px;

  color: var(--navy);

  font-size: 14px;
  font-weight: 800;
}

.footer-column a,
.footer-column p {
  color: var(--text);

  font-size: 13px;
  line-height: 1.5;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-contact a {
  color: var(--primary);
  font-weight: 700;
}

.footer-bottom {
  padding: 18px 0;

  background: #f6f9fd;
  border-top: 1px solid #e6edf6;
}

.footer-bottom .page-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom p {
  color: #7d899b;

  font-size: 11px;
  line-height: 1.5;
}


/* =========================================================
   NOTEBOOK
========================================================= */

@media (max-width: 1250px) {

  .header-container,
  .page-container {
    width: calc(100% - 38px);
  }

  .desktop-navigation {
    gap: 24px;
  }

  .hero-desktop-buttons {
    top: 53.3%;
    width: 42%;
    gap: 13px;
  }

  .desktop-art-primary,
  .desktop-art-secondary {
    padding-left: 13px;
    padding-right: 13px;

    font-size:
      clamp(11px, 1.05vw, 14px);
  }

  .benefit-card {
    min-height: 465px;
    padding: 28px;
  }

  .trust-item {
    padding-left: 23px;
    padding-right: 23px;
  }

  .analysis-layout {
    gap: 50px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1020px) {

  :root {
    --header-height: 74px;
  }

  .desktop-navigation,
  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    margin-left: auto;
    display: flex;
  }

  .brand {
    width: 160px;
    height: 52px;
    flex-basis: 160px;
  }

  .brand-logo {
    width: 158px;
    height: 50px;
  }

  .benefits-grid,
  .steps-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .benefit-card {
    min-height: 420px;
  }

  .trust-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-item {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .trust-item:not(:last-child)::after {
    top: auto;
    right: 20px;
    bottom: 0;
    left: 20px;

    width: auto;
    height: 1px;
  }

  .analysis-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .analysis-copy {
    max-width: 760px;
  }

  .analysis-form {
    max-width: 760px;
  }

  .about-mark {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns:
      1.2fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / 4;
  }

}


@media (max-width: 900px) {

  .hero-desktop-art {
    display: none;
  }

  .hero-mobile-section {
    display: block;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .section-introduction {
    max-width: 720px;
  }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 700px) {

  .page-container {
    width: calc(100% - 32px);
  }

  .benefits-section,
  .steps-section,
  .analysis-section,
  .about-section {
    padding-top: 70px;
    padding-bottom: 72px;
  }

  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .benefit-action {
    margin-top: 28px;
  }

  .step-card {
    min-height: 0;
  }

  .trust-section {
    padding-bottom: 72px;
  }

  .trust-card {
    padding: 22px 18px;
  }

  .trust-item {
    padding-left: 8px;
    padding-right: 8px;
  }

  .analysis-layout {
    gap: 42px;
  }

  .analysis-form {
    padding: 26px 20px;
  }

  .about-layout {
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom .page-container {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

}


@media (max-width: 600px) {

  :root {
    --header-height: 70px;
  }

  .header-container {
    width: calc(100% - 30px);
  }

  .brand {
    width: 150px;
    height: 49px;
    flex-basis: 150px;
  }

  .brand-logo {
    width: 148px;
    height: 47px;
  }

  .mobile-menu-button {
    width: 43px;
    height: 43px;
  }

  .hero-mobile-content,
  .mobile-photo-wrapper,
  .mobile-features-card {
    width: 85%;
  }

  .hero-mobile-content {
    padding-top: 38px;
  }

  .hero-mobile-title {
    font-size:
      clamp(34px, 9.1vw, 46px);
  }

  .hero-mobile-description {
    font-size: 17px;
  }

  .mobile-feature {
    padding-left: 6px;
    padding-right: 6px;
  }

  .mobile-feature-icon {
    width: 57px;
    height: 57px;
  }

  .mobile-feature-icon svg {
    width: 39px;
    height: 39px;
  }

  .mobile-feature h2 {
    font-size: 13px;
  }

  .section-heading-main h2,
  .steps-heading h2 {
    font-size: 38px;
  }

  .section-introduction,
  .steps-heading p {
    font-size: 16px;
  }

  .analysis-copy h2,
  .about-content h2 {
    font-size: 39px;
  }

}


@media (max-width: 430px) {

  .hero-mobile-content,
  .mobile-photo-wrapper,
  .mobile-features-card {
    width: 86%;
  }

  .hero-mobile-title {
    font-size: 34px;
  }

  .hero-mobile-description {
    font-size: 16px;
  }

  .mobile-primary-button,
  .mobile-secondary-button {
    min-height: 57px;
    font-size: 16px;
  }

  .mobile-features-card {
    min-height: 160px;
  }

  .mobile-feature {
    padding-left: 3px;
    padding-right: 3px;
  }

  .mobile-feature-icon {
    width: 51px;
    height: 51px;
  }

  .mobile-feature-icon svg {
    width: 35px;
    height: 35px;
  }

  .mobile-feature h2 {
    font-size: 11px;
  }

  .benefit-card {
    padding: 25px 22px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline:
    3px solid
    rgba(0, 107, 255, 0.35);

  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;
  }

}