/* ======================================================
   CONNECTA ERP LANDING PAGE
   CSS exclusivo do domínio connectait.com.br
====================================================== */

:root {
  --brand-blue: #0b4f8a;
  --brand-blue-dark: #0a2f4f;
  --brand-green: #3fbf7f;
  --text: #071225;
  --muted: #64748b;
  --border: #dde6f1;
  --bg-soft: #f8fafc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family:
    "Ubuntu",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

  color: var(--text);

  background:
    radial-gradient(circle at top left, rgba(63, 191, 127, .16), transparent 32%),
    radial-gradient(circle at top right, rgba(11, 79, 138, .16), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);

  overflow-x: hidden;
}

a {
  color: inherit;
}

.landing-page {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.landing-header {
  width: min(1180px, calc(100% - 40px));
  height: 76px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: #0f172a;
  text-decoration: none;
}

.landing-brand-mark {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  color: #fff;

  background:
    linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-green) 100%);

  box-shadow: 0 14px 28px rgba(11, 79, 138, .20);
}

.landing-brand strong {
  display: block;

  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.landing-brand small {
  display: block;

  margin-top: 2px;

  font-size: 11px;
  font-weight: 700;

  color: var(--muted);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.landing-nav a {
  font-size: 13px;
  font-weight: 800;

  color: #475569;
  text-decoration: none;
}

.landing-nav a:hover {
  color: var(--brand-blue);
}

.landing-nav-cta {
  padding: 11px 16px;

  border-radius: 999px;

  color: #fff !important;
  background: var(--brand-blue);

  box-shadow: 0 14px 28px rgba(11, 79, 138, .22);
}

.landing-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);

  margin: 0 auto;
  padding: 64px 0 76px;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 48px;
  align-items: center;
}

.landing-pill,
.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border-radius: 999px;
  padding: 7px 12px;

  font-size: 12px;
  font-weight: 900;

  color: var(--brand-blue);
  background: #e0f2fe;
}

.landing-hero h1 {
  max-width: 720px;

  margin: 22px 0 18px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.06em;

  color: var(--text);
}

.landing-hero p {
  max-width: 620px;

  margin: 0;

  font-size: 18px;
  line-height: 1.7;

  color: #526176;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 30px;
}

.landing-btn {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  padding: 0 18px;

  font-size: 14px;
  font-weight: 900;

  text-decoration: none;

  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

.landing-btn:hover {
  transform: translateY(-1px);
}

.landing-btn-primary {
  color: #fff;
  background: var(--brand-blue);
  box-shadow: 0 16px 34px rgba(11, 79, 138, .24);
}

.landing-btn-primary:hover {
  background: var(--brand-blue-dark);
}

.landing-btn-secondary {
  color: #0f172a;
  background: #fff;
  border: 1px solid #dbe4ef;
}

.landing-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  margin-top: 34px;
}

.landing-hero-metrics div {
  padding: 14px;

  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;

  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(12px);
}

.landing-hero-metrics strong {
  display: block;

  font-size: 15px;
  color: #0f172a;
}

.landing-hero-metrics span {
  display: block;

  margin-top: 4px;

  font-size: 12px;
  line-height: 1.45;

  color: var(--muted);
}

.landing-hero-card {
  min-width: 0;

  padding: 18px;

  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 32px;

  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(18px);

  box-shadow:
    0 34px 80px rgba(15, 23, 42, .16),
    0 12px 34px rgba(15, 23, 42, .08);
}

.landing-dashboard-preview {
  position: relative;
  overflow: hidden;

  min-height: 430px;

  border-radius: 26px;

  background:
    linear-gradient(150deg, var(--brand-blue-dark) 0%, var(--brand-blue) 52%, #2563eb 100%);

  padding: 24px;
}

.landing-dashboard-preview::after {
  content: "";
  position: absolute;

  width: 260px;
  height: 260px;

  right: -96px;
  top: -88px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .12);
}

.landing-preview-top {
  position: relative;
  z-index: 1;

  display: flex;
  gap: 8px;

  margin-bottom: 28px;
}

.landing-preview-top span {
  width: 12px;
  height: 12px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .72);
}

.landing-preview-top span:nth-child(2) {
  background: #2dd4bf;
}

.landing-preview-top span:nth-child(3) {
  background: #4ade80;
}

.landing-preview-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.landing-preview-kpi,
.landing-preview-chart,
.landing-preview-list {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;

  background: rgba(255, 255, 255, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.landing-preview-kpi {
  padding: 18px;
}

.landing-preview-kpi i {
  width: 42px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  color: var(--brand-blue);
  background: #fff;
}

.landing-preview-kpi small {
  display: block;

  margin-top: 18px;

  font-size: 12px;
  color: rgba(255, 255, 255, .70);
}

.landing-preview-kpi strong {
  display: block;

  margin-top: 5px;

  font-size: 24px;
  color: #fff;
}

.landing-preview-chart {
  grid-column: 1 / -1;

  min-height: 150px;
  padding: 20px;
}

.landing-chart-bars {
  height: 112px;

  display: flex;
  align-items: end;
  gap: 12px;
}

.landing-chart-bars span {
  flex: 1;

  border-radius: 999px 999px 8px 8px;

  background: linear-gradient(180deg, #4ade80 0%, #14b8a6 100%);
}

.landing-chart-bars span:nth-child(1) {
  height: 38%;
}

.landing-chart-bars span:nth-child(2) {
  height: 58%;
}

.landing-chart-bars span:nth-child(3) {
  height: 46%;
}

.landing-chart-bars span:nth-child(4) {
  height: 78%;
}

.landing-chart-bars span:nth-child(5) {
  height: 96%;
}

.landing-preview-list {
  grid-column: 1 / -1;

  display: grid;
  gap: 10px;

  padding: 18px;
}

.landing-preview-list span {
  height: 12px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .22);
}

.landing-preview-list span:nth-child(2) {
  width: 72%;
}

.landing-preview-list span:nth-child(3) {
  width: 48%;
}

.landing-section {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;
  padding: 78px 0;
}

.landing-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.landing-section-head h2 {
  margin: 16px 0 10px;

  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -.045em;

  color: var(--text);
}

.landing-section-head p {
  margin: 0;

  font-size: 16px;
  line-height: 1.7;

  color: var(--muted);
}

.landing-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-resource-card,
.landing-plan-card,
.landing-addon-card,
.landing-segment-chip {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .06);
}

.landing-resource-card {
  padding: 22px;
  border-radius: 22px;
}

.landing-resource-icon {
  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 16px;

  color: var(--brand-blue);
  background: #e0f2fe;
}

.landing-resource-card h3 {
  margin: 0 0 8px;

  font-size: 18px;
  letter-spacing: -.02em;
}

.landing-resource-card p {
  margin: 0;

  font-size: 14px;
  line-height: 1.65;

  color: var(--muted);
}

.landing-plans-section {
  padding-top: 64px;
}

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

.landing-plan-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 520px;

  padding: 24px;

  border-radius: 26px;
}

.landing-plan-popular {
  border-color: rgba(11, 79, 138, .42);
  box-shadow:
    0 26px 70px rgba(11, 79, 138, .14),
    0 12px 28px rgba(15, 23, 42, .08);
}

.landing-plan-badge {
  align-self: flex-start;

  border-radius: 999px;
  padding: 7px 12px;

  font-size: 12px;
  font-weight: 900;

  color: var(--brand-blue);
  background: #e0f2fe;
}

.landing-plan-card h3 {
  margin: 18px 0 8px;

  font-size: 28px;
  letter-spacing: -.04em;
}

.landing-plan-card p {
  margin: 0;

  font-size: 14px;
  line-height: 1.6;

  color: var(--muted);
}

.landing-plan-price {
  margin: 24px 0 20px;
}

.landing-plan-price strong {
  font-size: 34px;
  line-height: 1;

  color: var(--text);
}

.landing-plan-price span {
  margin-left: 4px;

  font-size: 13px;
  font-weight: 800;

  color: var(--muted);
}

.landing-plan-card ul {
  display: grid;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.landing-plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  font-size: 14px;
  line-height: 1.45;

  color: #334155;
}

.landing-plan-card li i {
  margin-top: 2px;
  color: #16a34a;
}

.landing-btn-plan {
  width: 100%;

  margin-top: auto;

  color: #fff;
  background: var(--brand-blue);
}

.landing-segment-grid,
.landing-addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landing-segment-chip,
.landing-addon-card {
  min-height: 64px;

  display: flex;
  align-items: center;
  gap: 10px;

  border-radius: 18px;
  padding: 14px 16px;

  font-size: 14px;
  font-weight: 800;

  color: #0f172a;
}

.landing-segment-chip i {
  color: #16a34a;
}

.landing-addon-card i {
  width: 34px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 34px;

  border-radius: 12px;

  color: var(--brand-blue);
  background: #e0f2fe;
}

.landing-final-cta {
  width: min(1180px, calc(100% - 40px));

  margin: 40px auto 0;
  padding: 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  border-radius: 30px;

  color: #fff;

  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 34%),
    linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue) 55%, #2563eb 100%);

  box-shadow: 0 30px 80px rgba(11, 79, 138, .22);
}

.landing-final-cta .landing-eyebrow {
  color: var(--brand-blue);
  background: #fff;
}

.landing-final-cta h2 {
  max-width: 720px;

  margin: 16px 0 8px;

  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;

  color: #fff;
}

.landing-final-cta p {
  max-width: 680px;

  margin: 0;

  font-size: 15px;
  line-height: 1.7;

  color: rgba(255, 255, 255, .78);
}

.landing-final-cta .landing-btn-primary {
  flex: 0 0 auto;

  color: var(--brand-blue);
  background: #fff;
}

.landing-footer {
  width: min(1180px, calc(100% - 40px));

  margin: 0 auto;
  padding: 34px 0 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  color: var(--muted);
}

.landing-footer strong {
  color: #0f172a;
}

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

  .landing-hero {
    min-height: auto;

    grid-template-columns: 1fr;
    padding-top: 42px;
  }

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

  .landing-plan-card {
    min-height: auto;
  }

  .landing-segment-grid,
  .landing-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .landing-header,
  .landing-hero,
  .landing-section,
  .landing-final-cta,
  .landing-footer {
    width: min(100% - 28px, 1180px);
  }

  .landing-hero {
    padding: 32px 0 52px;
  }

  .landing-hero-metrics,
  .landing-preview-grid,
  .landing-segment-grid,
  .landing-addon-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-card {
    padding: 10px;
    border-radius: 24px;
  }

  .landing-dashboard-preview {
    min-height: 360px;
    padding: 18px;
    border-radius: 20px;
  }

  .landing-final-cta {
    padding: 28px;
  }

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


/* ======================================================
   LANDING / FIXED HEADER
   Mantém o menu fixo no topo durante a rolagem
====================================================== */

.landing-page {
  padding-top: 76px;
}

.landing-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  z-index: 1000;

  width: min(1180px, calc(100% - 40px));

  padding: 0 18px;

  border: 1px solid rgba(221, 230, 241, .85);
  border-top: none;
  border-radius: 0 0 22px 22px;

  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 18px 40px rgba(15, 23, 42, .08),
    0 6px 18px rgba(15, 23, 42, .04);
}

/* Ajusta a primeira dobra agora que o header saiu do fluxo normal */
.landing-hero {
  min-height: calc(100vh - 76px);
  padding-top: 48px;
}

/* Evita que âncoras fiquem escondidas atrás do menu fixo */
#recursos,
#planos,
#segmentos,
#addons {
  scroll-margin-top: 104px;
}

@media (max-width: 640px) {
  .landing-page {
    padding-top: 70px;
  }

  .landing-header {
    width: min(100% - 24px, 1180px);
    height: 66px;
    padding: 0 14px;
    border-radius: 0 0 18px 18px;
  }

  .landing-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .landing-brand strong {
    font-size: 16px;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 32px;
  }

  #recursos,
  #planos,
  #segmentos,
  #addons {
    scroll-margin-top: 90px;
  }
}


/* ======================================================
   LANDING / HERO BANNER IMAGE
   Usa banner1.png como imagem principal do topo
====================================================== */

.landing-hero {
  position: relative;

  width: min(1180px, calc(100% - 40px));
  min-height: 620px;

  margin: 24px auto 0;
  padding: 72px 56px;

  display: flex;
  align-items: center;

  border-radius: 34px;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(248, 250, 252, .96) 0%,
      rgba(248, 250, 252, .90) 32%,
      rgba(248, 250, 252, .38) 58%,
      rgba(248, 250, 252, .05) 100%
    ),
    url("/assets/img/banner1.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  box-shadow:
    0 34px 90px rgba(15, 23, 42, .14),
    0 12px 34px rgba(15, 23, 42, .08);
}

.landing-hero-content {
  position: relative;
  z-index: 2;

  max-width: 620px;
}

/* Remove o mockup antigo do dashboard, pois agora o banner já contém o sistema */
.landing-hero-card {
  display: none !important;
}

.landing-hero h1 {
  max-width: 620px;
}

.landing-hero p {
  max-width: 560px;
}

.landing-hero-metrics {
  max-width: 620px;
}

/* Ajuste para telas médias */
@media (max-width: 1050px) {
  .landing-hero {
    width: min(100% - 32px, 1180px);
    min-height: 660px;

    margin-top: 18px;
    padding: 48px 32px;

    align-items: flex-start;

    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, .98) 0%,
        rgba(248, 250, 252, .90) 38%,
        rgba(248, 250, 252, .28) 100%
      ),
      url("/assets/img/banner1.png");

    background-size: cover;
    background-position: center bottom;
  }

  .landing-hero-content {
    max-width: 760px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .landing-hero {
    width: min(100% - 24px, 1180px);
    min-height: 720px;

    padding: 34px 22px;

    border-radius: 24px;

    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, .98) 0%,
        rgba(248, 250, 252, .92) 44%,
        rgba(248, 250, 252, .18) 100%
      ),
      url("/assets/img/banner1.png");

    background-size: cover;
    background-position: 68% bottom;
  }

  .landing-hero h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .landing-hero p {
    font-size: 16px;
  }
}


/* ======================================================
   LANDING / HERO BANNER REFINEMENT
   Ajuste visual do topo com banner real
====================================================== */

.landing-hero {
  min-height: 600px !important;
  padding: 68px 54px !important;

  background:
    linear-gradient(
      90deg,
      rgba(248, 250, 252, .98) 0%,
      rgba(248, 250, 252, .96) 34%,
      rgba(248, 250, 252, .78) 49%,
      rgba(248, 250, 252, .24) 68%,
      rgba(248, 250, 252, .02) 100%
    ),
    url("/assets/img/banner1.png") !important;

  background-size: cover !important;
  background-position: center right !important;
}

.landing-hero-content {
  max-width: 560px !important;
}

.landing-hero h1 {
  max-width: 540px !important;

  font-size: clamp(38px, 4.2vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.055em !important;

  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

.landing-hero p {
  max-width: 520px !important;

  font-size: 17px !important;
  line-height: 1.68 !important;

  color: #334155 !important;
}

.landing-actions {
  margin-top: 26px !important;
}

.landing-btn {
  min-height: 44px !important;
  border-radius: 10px !important;
}

.landing-hero-metrics {
  max-width: 560px !important;

  gap: 10px !important;
  margin-top: 30px !important;
}

.landing-hero-metrics div {
  padding: 13px !important;

  border-color: rgba(203, 213, 225, .78) !important;
  background: rgba(255, 255, 255, .78) !important;

  box-shadow:
    0 10px 24px rgba(15, 23, 42, .05);
}

.landing-hero-metrics strong {
  font-size: 14px !important;
}

.landing-hero-metrics span {
  font-size: 11px !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .landing-hero {
    min-height: 640px !important;
    padding: 44px 30px !important;

    background:
      linear-gradient(
        180deg,
        rgba(248, 250, 252, .99) 0%,
        rgba(248, 250, 252, .94) 42%,
        rgba(248, 250, 252, .30) 100%
      ),
      url("/assets/img/banner1.png") !important;

    background-size: cover !important;
    background-position: 70% bottom !important;
  }

  .landing-hero-content {
    max-width: 680px !important;
  }

  .landing-hero h1 {
    max-width: 640px !important;
  }

  .landing-hero p {
    max-width: 610px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .landing-hero {
    min-height: 690px !important;
    padding: 30px 20px !important;

    background-position: 72% bottom !important;
  }

  .landing-hero h1 {
    font-size: 34px !important;
    line-height: 1.04 !important;
  }

  .landing-hero p {
    font-size: 15px !important;
    line-height: 1.6 !important;
  }

  .landing-hero-metrics {
    grid-template-columns: 1fr !important;
  }
}


/* ======================================================
   LANDING / LOGO CONNECTA SISTEMAS
====================================================== */

.landing-brand {
  flex: 0 0 auto;
}

.landing-brand-logo {
  display: block;

  width: auto;
  height: 46px;

  object-fit: contain;
}

@media (max-width: 640px) {
  .landing-brand-logo {
    height: 40px;
  }
}


/* ======================================================
   LANDING / RECURSOS / ICONES PERSONALIZADOS
====================================================== */

.landing-resource-icon {
  width: 64px;
  height: 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px;
  margin-bottom: 18px;

  border-radius: 18px;

  background: #e0f2fe;
}

.landing-resource-icon-img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}

@media (max-width: 640px) {
  .landing-resource-icon {
    width: 58px;
    height: 58px;
    padding: 9px;
    border-radius: 16px;
  }
}


/* ======================================================
   LANDING / RECURSOS / ICONES GRANDES LATERAIS
   Ícone à esquerda, título e texto à direita
====================================================== */

.landing-resource-card {
  display: grid !important;
  grid-template-columns: 118px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 22px !important;

  min-height: 190px !important;
  padding: 26px !important;
}

.landing-resource-icon {
  width: 118px !important;
  height: 118px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;

  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.landing-resource-icon-img {
  width: 118px !important;
  height: 118px !important;

  display: block !important;
  object-fit: contain !important;
}

.landing-resource-card h3 {
  grid-column: 2 !important;

  margin: 0 0 8px !important;

  font-size: 22px !important;
  line-height: 1.2 !important;
}

.landing-resource-card p {
  grid-column: 2 !important;

  margin: 0 !important;

  font-size: 15px !important;
  line-height: 1.65 !important;
}

/* Como o h3 e p vêm depois do ícone no HTML, mantém ambos na coluna direita */
.landing-resource-card .landing-resource-icon + h3 {
  align-self: end !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .landing-resource-card {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    min-height: 170px !important;
    gap: 20px !important;
  }

  .landing-resource-icon,
  .landing-resource-icon-img {
    width: 104px !important;
    height: 104px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .landing-resource-card {
    grid-template-columns: 86px minmax(0, 1fr) !important;
    min-height: auto !important;
    padding: 20px !important;
    gap: 16px !important;
  }

  .landing-resource-icon,
  .landing-resource-icon-img {
    width: 86px !important;
    height: 86px !important;
  }

  .landing-resource-card h3 {
    font-size: 19px !important;
  }

  .landing-resource-card p {
    font-size: 14px !important;
  }
}


/* ======================================================
   LANDING / RECURSOS / REFINO LAYOUT HORIZONTAL
   Corrige espaçamento entre título/texto e aumenta presença do ícone
====================================================== */

.landing-resource-card {
  display: grid !important;
  grid-template-columns: 126px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  grid-template-areas:
    "icon title"
    "icon text" !important;

  column-gap: 20px !important;
  row-gap: 8px !important;

  align-items: center !important;

  min-height: 210px !important;
  padding: 28px 24px !important;
}

.landing-resource-card .landing-resource-icon {
  grid-area: icon !important;

  width: 126px !important;
  height: 126px !important;

  align-self: center !important;
  justify-self: center !important;

  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.landing-resource-card .landing-resource-icon-img {
  width: 126px !important;
  height: 126px !important;

  object-fit: contain !important;
}

.landing-resource-card h3 {
  grid-area: title !important;

  align-self: end !important;

  margin: 0 !important;

  font-size: 22px !important;
  line-height: 1.15 !important;
}

.landing-resource-card p {
  grid-area: text !important;

  align-self: start !important;

  margin: 0 !important;

  font-size: 15px !important;
  line-height: 1.55 !important;
}

/* Tablet */
@media (max-width: 1050px) {
  .landing-resource-card {
    grid-template-columns: 116px minmax(0, 1fr) !important;
    min-height: 190px !important;
    padding: 24px !important;
  }

  .landing-resource-card .landing-resource-icon,
  .landing-resource-card .landing-resource-icon-img {
    width: 116px !important;
    height: 116px !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .landing-resource-card {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    min-height: auto !important;

    column-gap: 16px !important;
    row-gap: 6px !important;

    padding: 20px !important;
  }

  .landing-resource-card .landing-resource-icon,
  .landing-resource-card .landing-resource-icon-img {
    width: 96px !important;
    height: 96px !important;
  }

  .landing-resource-card h3 {
    font-size: 19px !important;
  }

  .landing-resource-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
}
