/* =========================================================
   CRONIZA - LANDING PAGE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #172033;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.landing-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;

  width: 100%;

  border-bottom: 1px solid rgba(226, 232, 240, 0.8);

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-content {
  display: flex;
  align-items: center;

  min-height: 74px;
}

.landing-logo {
  color: #0f172a;

  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;

  text-decoration: none;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 34px;

  margin-left: auto;
  margin-right: 42px;
}

.landing-nav a {
  color: #475569;

  font-size: 14px;
  font-weight: 550;

  text-decoration: none;

  transition: color 0.18s ease;
}

.landing-nav a:hover {
  color: #2563eb;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 14px;

  color: #334155;

  font-size: 14px;
  font-weight: 650;

  text-decoration: none;
}

.btn-login:hover {
  color: #2563eb;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 43px;
  padding: 0 19px;

  border-radius: 9px;

  background: #2563eb;
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.16);

  transition:
    background 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
}

.btn-header-cta:hover {
  background: #1d4ed8;

  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.22);
}

.btn-header-cta:active {
  transform: translateY(1px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  padding: 104px 0 114px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 30%,
      rgba(37, 99, 235, 0.08),
      transparent 31%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );
}

.hero::before {
  content: "";

  position: absolute;
  top: -280px;
  left: -250px;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 74px;
}

.hero-content {
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;

  margin-bottom: 24px;
  padding: 8px 18px;

  border: 1px solid #dbeafe;
  border-radius: 999px;

  background: #eff6ff;
  color: #2563eb;

  font-size: 18px;
  font-weight: 700;
}

.hero h1 {
  margin: 0;

  color: #0f172a;

  font-size: clamp(50px, 5.2vw, 72px);
  font-weight: 780;
  line-height: 0.99;
  letter-spacing: -3.4px;
}

.hero h1 span {
  color: #2563eb;
}

.hero-description {
  max-width: 610px;

  margin: 28px 0 0;

  color: #64748b;

  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;

  margin-top: 34px;
}

.btn-primary-landing,
.btn-secondary-landing {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 24px;

  border-radius: 10px;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.08s ease;
}

.btn-primary-landing {
  border: 1px solid #2563eb;

  background: #2563eb;
  color: #ffffff;

  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.15),
    0 8px 24px rgba(37, 99, 235, 0.08);
}

.btn-primary-landing:hover {
  border-color: #1d4ed8;
  background: #1d4ed8;

  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}

.btn-secondary-landing {
  border: 1px solid #dbe2ea;

  background: #ffffff;
  color: #334155;
}

.btn-secondary-landing:hover {
  border-color: #c5cfdb;
  background: #f8fafc;
}

.btn-primary-landing:active,
.btn-secondary-landing:active {
  transform: translateY(1px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;

  margin-top: 23px;

  color: #64748b;

  font-size: 14px;
  font-weight: 550;
}


/* =========================================================
   MOCKUP DO PRODUTO
   ========================================================= */

.hero-product {
  position: relative;

  min-width: 0;
}

.hero-product::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 92%;
  height: 88%;

  border-radius: 40px;

  background: #2563eb;

  opacity: 0.08;

  filter: blur(55px);

  transform: translate(-50%, -50%);
}

.product-window {
  position: relative;
  z-index: 2;

  overflow: hidden;

  border: 1px solid #dce3ec;
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.06);
}

.product-window-top {
  position: relative;

  display: flex;
  align-items: center;

  height: 43px;
  padding: 0 18px;

  border-bottom: 1px solid #edf0f4;

  background: #fbfcfe;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #d1d5db;
}

.window-title {
  position: absolute;
  left: 50%;

  color: #94a3b8;

  font-size: 10px;
  font-weight: 650;

  transform: translateX(-50%);
}

.product-body {
  padding: 24px;
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  margin-bottom: 20px;
}

.product-heading > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-eyebrow {
  color: #94a3b8;

  font-size: 9px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.product-heading strong {
  color: #0f172a;

  font-size: 18px;
  font-weight: 750;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 32px;
  padding: 0 18px;

  border-radius: 7px;

  background: #2563eb;
  color: #ffffff;

  font-size: 9px;
  font-weight: 700;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.product-stat {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 5px;

  padding: 18px;

  overflow: hidden;

  border: 1px solid #e7ebf0;
  border-radius: 9px;

  background: #ffffff;
}

.product-stat::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 3px;
  height: 100%;
}

.product-stat.danger::before {
  background: #ef4444;
}

.product-stat.warning::before {
  background: #f97316;
}

.product-stat.attention::before {
  background: #eab308;
}

.product-stat.success::before {
  background: #22c55e;
}

.product-stat span {
  color: #64748b;

  font-size: 8px;
  font-weight: 550;
}

.product-stat strong {
  color: #0f172a;

  font-size: 19px;
  font-weight: 750;
}

.product-list {
  margin-top: 18px;

  overflow: hidden;

  border: 1px solid #e7ebf0;
  border-radius: 10px;
}

.product-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 38px;
  padding: 0 14px;

  border-bottom: 1px solid #edf0f4;

  background: #f8fafc;
}

.product-list-header strong,
.product-list-header span {
  color: #64748b;

  font-size: 8px;
  font-weight: 650;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 14px;

  border-bottom: 1px solid #f0f2f5;
}

.product-row:last-child {
  border-bottom: 0;
}

.product-item-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 28px;

  width: 28px;
  height: 28px;

  border-radius: 7px;

  font-size: 9px;
  font-weight: 750;
}

.product-icon.blue {
  background: #eff6ff;
  color: #2563eb;
}

.product-icon.purple {
  background: #f5f3ff;
  color: #7c3aed;
}

.product-icon.green {
  background: #f0fdf4;
  color: #16a34a;
}

.product-item-name > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-item-name strong {
  color: #334155;

  font-size: 9px;
  font-weight: 650;
}

.product-item-name div span {
  color: #94a3b8;

  font-size: 8px;
}

.product-date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.product-date strong {
  color: #334155;

  font-size: 9px;
  font-weight: 650;
}

.product-date span {
  color: #94a3b8;

  font-size: 8px;
}

.product-date.urgent strong,
.product-date.urgent span {
  color: #ea580c;
}


/* =========================================================
   HEADINGS DAS SEÇÕES
   ========================================================= */

.section-heading {
  max-width: 690px;

  margin-bottom: 52px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: #2563eb;

  font-size: 18px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.section-heading h2,
.uses-copy h2 {
  margin: 0;

  color: #0f172a;

  font-size: clamp(34px, 3.7vw, 48px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -1.8px;
}

.section-heading p,
.uses-copy p {
  margin: 20px 0 0;

  color: #64748b;

  font-size: 17px;
  line-height: 1.7;
}


/* =========================================================
   PROBLEMA
   ========================================================= */

.problem-section {
  padding: 105px 0;

  background: #ffffff;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.problem-card {
  padding: 31px;

  border: 1px solid #e5eaf0;
  border-radius: 14px;

  background: #ffffff;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.problem-card:hover {
  border-color: #d4dce6;

  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);

  transform: translateY(-2px);
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  margin-bottom: 24px;

  border-radius: 9px;

  background: #eff6ff;
  color: #2563eb;

  font-size: 14px;
  font-weight: 750;
}

.problem-card h3 {
  margin: 0 0 10px;

  color: #0f172a;

  font-size: 19px;
  font-weight: 700;
}

.problem-card p {
  margin: 0;

  color: #64748b;

  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   RECURSOS
   ========================================================= */

.resources-section {
  padding: 110px 0;

  background: #f8fafc;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  min-height: 265px;
  padding: 29px;

  border: 1px solid #e3e8ef;
  border-radius: 14px;

  background: #ffffff;

  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.02);
}

.resource-featured {
  grid-row: span 2;

  min-height: 548px;

  background:
    linear-gradient(
      160deg,
      #ffffff 0%,
      #f7faff 100%
    );
}

.resource-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  margin-bottom: 25px;

  border-radius: 10px;

  background: #eff6ff;
  color: #2563eb;

  font-size: 14px;
  font-weight: 750;
}

.resource-card h3 {
  margin: 0 0 18px;

  color: #0f172a;

  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.resource-card > p {
  margin: 0;

  color: #64748b;

  font-size: 14px;
  line-height: 1.7;
}

.mini-status-list {
  display: flex;
  flex-direction: column;

  margin-top: 42px;

  overflow: hidden;

  border: 1px solid #e2e8f0;
  border-radius: 10px;

  background: #ffffff;
}

.mini-status-list > div {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;

  padding: 15px;

  border-bottom: 1px solid #edf0f4;
}

.mini-status-list > div:last-child {
  border-bottom: 0;
}

.mini-status-list span {
  color: #64748b;

  font-size: 14px;
}

.mini-status-list strong {
  color: #0f172a;

  font-size: 18px;
}

.mini-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;
}

.mini-dot.red {
  background: #ef4444;
}

.mini-dot.orange {
  background: #f97316;
}

.mini-dot.green {
  background: #22c55e;
}


/* =========================================================
   COMO FUNCIONA
   ========================================================= */

.how-section {
  padding: 110px 0;

  background: #ffffff;
}

.steps-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.steps-grid::before {
  content: "";

  position: absolute;
  top: 22px;
  left: 10%;

  width: 80%;
  height: 1px;

  background: #dbe4ef;
}

.step {
  position: relative;
  z-index: 2;

  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  margin-bottom: 22px;

  border: 1px solid #bfdbfe;
  border-radius: 50%;

  background: #ffffff;
  color: #2563eb;

  font-size: 14px;
  font-weight: 750;

  box-shadow: 0 0 0 7px #ffffff;
}

.step h3 {
  margin: 0 0 9px;

  color: #0f172a;

  font-size: 18px;
  font-weight: 700;
}

.step p {
  max-width: 245px;

  margin: 0 auto;

  color: #64748b;

  font-size: 18px;
  line-height: 1.7;
}


/* =========================================================
   CASOS DE USO
   ========================================================= */

.uses-section {
  padding: 105px 0;

  background: #0f172a;
}

.uses-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.uses-copy .section-eyebrow {
  color: #60a5fa;
}

.uses-copy h2 {
  color: #ffffff;
}

.uses-copy p {
  color: #94a3b8;
}

.uses-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.uses-tags span {
  display: inline-flex;
  align-items: center;

  min-height: 44px;
  padding: 0 17px;

  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 9px;

  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;

  font-size: 18px;
  font-weight: 550;
}


/* =========================================================
   PLANOS
   ========================================================= */

.pricing-section {
  padding: 115px 0 105px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;

  max-width: 1080px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 32px;

  border: 1px solid #dfe5ec;
  border-radius: 18px;

  background: #ffffff;

  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.pricing-card.featured {
  border: 2px solid #2563eb;

  box-shadow:
    0 18px 38px rgba(37, 99, 235, 0.10),
    0 4px 10px rgba(15, 23, 42, 0.04);

  transform: translateY(-8px);
}

.pricing-popular {
  position: absolute;
  top: -15px;
  left: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 30px;
  padding: 0 15px;

  border-radius: 999px;

  background: #2563eb;
  color: #ffffff;

  font-size: 18px;
  font-weight: 750;

  white-space: nowrap;

  transform: translateX(-50%);
}

.pricing-header {
  min-height: 88px;
}

.pricing-name {
  display: block;

  margin-bottom: 8px;

  color: #0f172a;

  font-size: 22px;
  font-weight: 750;
}

.pricing-header p {
  margin: 0;

  color: #64748b;

  font-size: 18px;
  line-height: 1.6;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;

  min-height: 67px;
  margin-top: 18px;
}

.pricing-price strong {
  color: #0f172a;

  font-size: 34px;
  font-weight: 780;
  letter-spacing: -1.2px;
}

.pricing-price span {
  color: #64748b;

  font-size: 14px;
  font-weight: 500;
}

.pricing-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 47px;

  margin: 17px 0 27px;

  border-radius: 9px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.pricing-button.secondary {
  border: 1px solid #d8dee7;

  background: #ffffff;
  color: #334155;
}

.pricing-button.secondary:hover {
  border-color: #bfc9d5;

  background: #f8fafc;
}

.pricing-button.primary {
  border: 1px solid #2563eb;

  background: #2563eb;
  color: #ffffff;

  box-shadow: 0 5px 14px rgba(37, 99, 235, 0.16);
}

.pricing-button.primary:hover {
  border-color: #1d4ed8;

  background: #1d4ed8;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.pricing-features li {
  position: relative;

  padding-left: 25px;

  color: #475569;

  font-size: 18px;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "✓";

  position: absolute;
  top: 0;
  left: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 17px;
  height: 17px;

  border-radius: 50%;

  background: #ecfdf3;
  color: #16a34a;

  font-size: 10px;
  font-weight: 800;
}

.pricing-features strong {
  color: #334155;

  font-weight: 700;
}

.pricing-note {
  margin: 34px 0 0;

  color: #64748b;

  font-size: 14px;
  text-align: center;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.final-cta {
  padding: 30px 0 100px;

  background: #f8fbff;
}

.final-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  padding: 58px 64px;

  overflow: hidden;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(59, 130, 246, 0.28),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #0f172a,
      #16243e
    );

  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.final-cta-eyebrow {
  display: block;

  margin-bottom: 18px;

  color: #60a5fa;

  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.final-cta h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -1.7px;
}

.final-cta p {
  max-width: 580px;

  margin: 17px 0 0;

  color: #94a3b8;

  font-size: 15px;
  line-height: 1.7;
}

.final-cta-action {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.btn-final-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 0 24px;

  border-radius: 10px;

  background: #ffffff;
  color: #0f172a;

  font-size: 14px;
  font-weight: 750;

  text-decoration: none;

  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.12);

  transition:
    background 0.18s ease,
    transform 0.08s ease;
}

.btn-final-cta:hover {
  background: #f8fafc;
}

.btn-final-cta:active {
  transform: translateY(1px);
}

.final-cta-action span {
  color: #94a3b8;

  font-size: 10px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.landing-footer {
  padding: 58px 0 26px;

  border-top: 1px solid #e5eaf0;

  background: #ffffff;
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  color: #0f172a;

  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;

  text-decoration: none;
}

.footer-brand p {
  margin: 9px 0 0;

  color: #94a3b8;

  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
}

.footer-links a {
  color: #64748b;

  font-size: 14px;
  font-weight: 550;

  text-decoration: none;
}

.footer-links a:hover {
  color: #2563eb;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;

  border-top: 1px solid #edf0f4;

  color: #94a3b8;

  font-size: 18px;
}


/* =========================================================
   RESPONSIVO - NOTEBOOK
   ========================================================= */

@media (max-width: 1100px) {

  .hero {
    padding: 85px 0 95px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: 55px;
  }

  .product-body {
    padding: 19px;
  }

  .uses-content {
    gap: 55px;
  }

}


/* =========================================================
   RESPONSIVO - TABLET
   ========================================================= */

@media (max-width: 900px) {

  .landing-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    padding: 76px 0 85px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-product {
    width: 100%;
    max-width: 680px;
  }

  .problem-grid,
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-featured {
    grid-row: auto;

    min-height: 265px;
  }

  .mini-status-list {
    margin-top: 30px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 30px;
  }

  .steps-grid::before {
    display: none;
  }

  .uses-content {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;

    max-width: 560px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-header {
    min-height: auto;
  }

  .final-cta-box {
    align-items: flex-start;
    flex-direction: column;

    padding: 50px;
  }

  .final-cta-action {
    align-items: flex-start;
  }

}


/* =========================================================
   RESPONSIVO - CELULAR
   ========================================================= */

@media (max-width: 600px) {

  .landing-container {
    width: min(100% - 36px, 1180px);
  }

  .header-content {
    min-height: 66px;
  }

  .landing-logo {
    font-size: 24px;
  }

  .btn-login {
    display: none;
  }

  .btn-header-cta {
    min-height: 39px;
    padding: 0 14px;

    font-size: 14px;
  }

  .hero {
    padding: 58px 0 70px;
  }

  .hero-badge {
    margin-bottom: 20px;

    font-size: 18px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .hero-description {
    margin-top: 22px;

    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary-landing,
  .btn-secondary-landing {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .product-body {
    padding: 14px;
  }

  .product-heading strong {
    font-size: 15px;
  }

  .product-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-row {
    gap: 10px;
  }

  .product-item-name strong {
    font-size: 8px;
  }

  .problem-section,
  .resources-section,
  .how-section,
  .uses-section {
    padding: 78px 0;
  }

  .pricing-section {
    padding: 85px 0 78px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .uses-copy h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .section-heading p,
  .uses-copy p {
    font-size: 15px;
  }

  .problem-grid,
  .resources-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .resource-card {
    padding: 25px;
  }

  .step {
    text-align: left;
  }

  .step-number {
    margin-bottom: 15px;

    box-shadow: none;
  }

  .step p {
    max-width: none;
    margin: 0;
  }

  .uses-tags {
    gap: 8px;
  }

  .uses-tags span {
    min-height: 40px;
    padding: 0 18px;

    font-size: 14px;
  }

  .pricing-card {
    padding: 27px 24px;
  }

  .pricing-price strong {
    font-size: 31px;
  }

  .final-cta {
    padding: 20px 0 70px;
  }

  .final-cta-box {
    gap: 35px;

    padding: 38px 27px;

    border-radius: 18px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .final-cta-action {
    width: 100%;
  }

  .btn-final-cta {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 18px 22px;
  }

}

/* =========================================================
   ESCALA TIPOGRÁFICA MAIOR
   ========================================================= */

/* BASE */
body {
  font-size: 18px;
}


/* HEADER */
.landing-nav a {
  font-size: 17px;
}

.btn-login,
.btn-header-cta {
  font-size: 18px;
}


/* HERO */
.hero-badge {
  font-size: 15px;
  padding: 10px 18px;
}

.hero h1 {
  font-size: clamp(58px, 6vw, 82px);
  line-height: 1.02;
}

.hero-description {
  max-width: 660px;
  font-size: 22px;
  line-height: 1.65;
}

.btn-primary-landing,
.btn-secondary-landing {
  min-height: 56px;
  padding: 0 28px;
  font-size: 17px;
}

.hero-trust {
  font-size: 15px;
}


/* TÍTULOS DAS SEÇÕES */
.section-eyebrow {
  font-size: 15px;
}

.section-heading h2,
.uses-copy h2 {
  font-size: clamp(42px, 4.5vw, 58px);
}

.section-heading p,
.uses-copy p {
  font-size: 20px;
  line-height: 1.7;
}


/* PROBLEMAS */
.problem-card {
  padding: 36px;
}

.problem-card h3 {
  font-size: 24px;
}

.problem-card p {
  font-size: 18px;
  line-height: 1.7;
}

.problem-icon {
  width: 44px;
  height: 44px;
  font-size: 14px;
}


/* RECURSOS */
.resource-card {
  padding: 34px;
}

.resource-card h3 {
  font-size: 24px;
}

.resource-card > p {
  font-size: 18px;
  line-height: 1.7;
}

.resource-icon {
  width: 46px;
  height: 46px;
  font-size: 14px;
}

.mini-status-list span {
  font-size: 18px;
}

.mini-status-list strong {
  font-size: 17px;
}


/* COMO FUNCIONA */
.step-number {
  width: 50px;
  height: 50px;
  font-size: 18px;
}

.step h3 {
  font-size: 23px;
}

.step p {
  max-width: 280px;
  font-size: 17px;
  line-height: 1.7;
}


/* TAGS */
.uses-tags span {
  min-height: 48px;
  padding: 0 20px;
  font-size: 18px;
}


/* PLANOS */
.pricing-card {
  padding: 38px;
}

.pricing-name {
  font-size: 27px;
}

.pricing-header p {
  font-size: 17px;
}

.pricing-price strong {
  font-size: 42px;
}

.pricing-price span {
  font-size: 18px;
}

.pricing-button {
  min-height: 52px;
  font-size: 17px;
}

.pricing-features li {
  font-size: 17px;
  line-height: 1.6;
}

.pricing-note {
  font-size: 15px;
}

.pricing-popular {
  font-size: 18px;
}


/* CTA FINAL */
.final-cta-eyebrow {
  font-size: 15px;
}

.final-cta h2 {
  font-size: clamp(40px, 4vw, 54px);
}

.final-cta p {
  font-size: 19px;
}

.btn-final-cta {
  min-height: 56px;
  font-size: 17px;
}

.final-cta-action span {
  font-size: 14px;
}


/* FOOTER */
.footer-logo {
  font-size: 27px;
}

.footer-brand p {
  font-size: 15px;
}

.footer-links a {
  font-size: 15px;
}

.footer-bottom {
  font-size: 14px;
}


/* MOCKUP - também estava pequeno */
.product-heading strong {
  font-size: 22px;
}

.product-eyebrow {
  font-size: 14px;
}

.product-button {
  font-size: 14px;
}

.product-stat span {
  font-size: 18px;
}

.product-stat strong {
  font-size: 24px;
}

.product-list-header strong,
.product-list-header span {
  font-size: 18px;
}

.product-item-name strong {
  font-size: 14px;
}

.product-item-name div span,
.product-date span {
  font-size: 18px;
}

.product-date strong {
  font-size: 14px;
}


/* =========================================================
   CONTRASTE DE TEXTOS
   ========================================================= */

/* Textos principais de apoio */
.hero-description,
.section-heading p,
.uses-copy p,
.problem-card p,
.resource-card > p,
.step p,
.pricing-header p,
.pricing-features li,
.pricing-note,
.footer-brand p,
.footer-links a {
  color: #475569;
}


/* Textos menores */
.hero-trust,
.product-stat span,
.product-list-header strong,
.product-list-header span,
.product-item-name div span,
.product-date span,
.pricing-price span,
.final-cta-action span {
  color: #526174;
}


/* Textos que precisam de ainda mais presença */
.problem-card h3,
.resource-card h3,
.step h3,
.pricing-name,
.pricing-features strong {
  color: #1e293b;
}


/* Header */
.landing-nav a,
.btn-login {
  color: #334155;
}


/* Tags */
.uses-tags span {
  color: #f1f5f9;
}


/* Seção escura - manter contraste adequado */
.uses-copy p,
.final-cta p {
  color: #cbd5e1;
}


/* Footer */
.footer-brand p,
.footer-links a,
.footer-bottom {
  color: #475569;
}