/* =========================================================
   Sistema de Advocacia SaaS - Landing principal
   Azul tom sobre tom, responsivo e focado em conversão
   ========================================================= */

:root {
  --adv-light-bg: #eaf6ff;
  --adv-light-bg-2: #dceeff;
  --adv-light-card: #ffffff;
  --adv-dark-1: #03142a;
  --adv-dark-2: #082a55;
  --adv-dark-3: #0f3f7a;
  --adv-blue: #1464d2;
  --adv-blue-2: #2f8dff;
  --adv-cyan: #79d8ff;
  --adv-text-dark: #071a33;
  --adv-text-muted: #435b78;
  --adv-text-light: #eaf4ff;
  --adv-white: #ffffff;
  --adv-border-light: rgba(20, 100, 210, 0.16);
  --adv-border-dark: rgba(180, 220, 255, 0.24);
  --adv-shadow-soft: 0 18px 42px rgba(7, 26, 51, 0.12);
  --adv-shadow-dark: 0 24px 60px rgba(0, 7, 22, 0.34);
  --adv-radius-lg: 28px;
  --adv-radius-md: 20px;
  --adv-radius-sm: 14px;
  --adv-transition: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

.advogado-page {
  background: var(--adv-light-bg);
  color: var(--adv-text-dark);
  overflow-x: hidden;
  font-family: "Montserrat", "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.adv-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.adv-section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.adv-section-light {
  background: linear-gradient(180deg, var(--adv-light-bg), var(--adv-light-bg-2));
  color: var(--adv-text-dark);
}

.adv-section-dark {
  background:
    radial-gradient(circle at 10% 0%, rgba(121, 216, 255, 0.18), transparent 42%),
    radial-gradient(circle at 90% 100%, rgba(47, 141, 255, 0.24), transparent 46%),
    linear-gradient(135deg, var(--adv-dark-1), var(--adv-dark-2) 54%, var(--adv-dark-3));
  color: var(--adv-text-light);
}

.adv-section-head {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.adv-section-head h2 {
  margin: 0 0 14px;
  color: var(--adv-text-dark);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.adv-section-head p {
  margin: 0;
  color: var(--adv-text-muted);
  font-size: 16px;
  line-height: 1.75;
}

.adv-section-head-dark h2 {
  color: var(--adv-white);
}

.adv-section-head-dark p {
  color: rgba(234, 244, 255, 0.84);
}

.adv-kicker,
.adv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 141, 255, 0.22);
  background: rgba(47, 141, 255, 0.09);
  color: #0f4fa8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.adv-section-dark .adv-kicker,
.adv-section-dark .adv-badge {
  background: rgba(121, 216, 255, 0.12);
  border-color: rgba(121, 216, 255, 0.32);
  color: #b9ecff;
}

.adv-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
  transition: var(--adv-transition);
}

.adv-btn-primary {
  background: linear-gradient(135deg, var(--adv-blue), var(--adv-blue-2));
  color: var(--adv-white) !important;
  box-shadow: 0 16px 34px rgba(20, 100, 210, 0.32);
}

.adv-btn-primary:hover,
.adv-btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(20, 100, 210, 0.44);
  color: var(--adv-white) !important;
}

.adv-btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(20, 100, 210, 0.22);
  color: var(--adv-text-dark) !important;
}

.adv-btn-outline:hover,
.adv-btn-outline:focus {
  transform: translateY(-2px);
  border-color: rgba(20, 100, 210, 0.44);
  color: var(--adv-text-dark) !important;
}

.adv-btn-full {
  width: 100%;
}

/* HERO - 1ª seção clara */

.adv-hero-section {
  padding: 98px 0 96px;
}

.adv-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 15%, rgba(47, 141, 255, 0.16), transparent 34%),
    radial-gradient(circle at 100% 88%, rgba(121, 216, 255, 0.26), transparent 42%);
  pointer-events: none;
}

.adv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.adv-hero-title {
  margin: 0 0 20px;
  color: #031126;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.adv-hero-subtitle {
  max-width: 690px;
  margin: 0;
  color: var(--adv-text-muted);
  font-size: 17px;
  line-height: 1.82;
}

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

.adv-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.adv-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--adv-border-light);
  color: #17446f;
  font-size: 13px;
  font-weight: 800;
}

.adv-dashboard-card {
  width: 100%;
  min-height: 520px;
  padding: 22px;
  border-radius: var(--adv-radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 100, 210, 0.16);
  box-shadow: var(--adv-shadow-soft);
  backdrop-filter: blur(18px);
}

.adv-dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.adv-dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--adv-cyan);
}

.adv-dashboard-top strong {
  margin-left: auto;
  color: #41607f;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.adv-dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #063062, #145fbf);
  color: var(--adv-white);
}

.adv-dashboard-header small {
  display: block;
  margin-bottom: 5px;
  color: rgba(234, 244, 255, 0.75);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.adv-dashboard-header h3 {
  margin: 0;
  color: var(--adv-white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.adv-dashboard-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 24px;
}

.adv-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.adv-dashboard-metrics div {
  padding: 18px 12px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid var(--adv-border-light);
  text-align: center;
}

.adv-dashboard-metrics strong {
  display: block;
  color: #0b4ba3;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.adv-dashboard-metrics span {
  display: block;
  margin-top: 8px;
  color: #536d88;
  font-size: 12px;
  line-height: 1.35;
}

.adv-dashboard-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.adv-dashboard-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4f9ff;
  border: 1px solid var(--adv-border-light);
  color: #294765;
  font-weight: 800;
  font-size: 14px;
}

.adv-dashboard-list i {
  color: var(--adv-blue);
}

/* MÓDULOS - 2ª seção escura */

.adv-modules-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.adv-module-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 26px 22px;
  border-radius: var(--adv-radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  border: 1px solid var(--adv-border-dark);
  color: var(--adv-text-light);
  box-shadow: 0 18px 42px rgba(0, 7, 22, 0.18);
  cursor: pointer;
  transition: var(--adv-transition);
}

.adv-module-card:hover,
.adv-module-card:focus {
  transform: translateY(-6px);
  border-color: rgba(121, 216, 255, 0.7);
  box-shadow: var(--adv-shadow-dark);
  outline: none;
}

.adv-module-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #b9ecff, #79d8ff);
  color: #061a33;
  font-size: 24px;
  transition: var(--adv-transition);
}

.adv-module-card:hover .adv-module-icon {
  transform: scale(1.06) rotate(-2deg);
}

.adv-module-card strong {
  color: var(--adv-white);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
}

.adv-module-card p {
  margin: 0;
  color: rgba(234, 244, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

/* FLUXO - 3ª seção clara */

.adv-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.adv-flow-step {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
  border-radius: var(--adv-radius-md);
  background: var(--adv-white);
  border: 1px solid var(--adv-border-light);
  box-shadow: var(--adv-shadow-soft);
}

.adv-flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--adv-blue), var(--adv-blue-2));
  color: var(--adv-white);
  font-weight: 950;
  margin-bottom: 18px;
}

.adv-flow-step h3 {
  margin: 0 0 10px;
  color: var(--adv-text-dark);
  font-size: 18px;
  font-weight: 900;
}

.adv-flow-step p {
  margin: 0;
  color: var(--adv-text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* INTEGRAÇÕES - 4ª seção escura */

.adv-integration-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.adv-integration-card {
  min-height: 235px;
  padding: 26px 22px;
  border-radius: var(--adv-radius-md);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--adv-border-dark);
  box-shadow: 0 18px 42px rgba(0, 7, 22, 0.18);
}

.adv-integration-card i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(121, 216, 255, 0.14);
  color: #b9ecff;
  font-size: 23px;
}

.adv-integration-card h3 {
  margin: 0 0 10px;
  color: var(--adv-white);
  font-size: 18px;
  font-weight: 900;
}

.adv-integration-card p {
  margin: 0;
  color: rgba(234, 244, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

/* PERFIS - 5ª seção clara */

.adv-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.adv-profile-card {
  min-height: 355px;
  padding: 30px 26px;
  border-radius: var(--adv-radius-lg);
  background: var(--adv-white);
  border: 1px solid var(--adv-border-light);
  box-shadow: var(--adv-shadow-soft);
}

.adv-profile-card-featured {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border-color: rgba(20, 100, 210, 0.26);
}

.adv-profile-card > i {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--adv-blue), var(--adv-blue-2));
  color: var(--adv-white);
  font-size: 26px;
}

.adv-profile-card h3 {
  margin: 0 0 12px;
  color: var(--adv-text-dark);
  font-size: 21px;
  font-weight: 950;
}

.adv-profile-card p {
  margin: 0 0 16px;
  color: var(--adv-text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.adv-profile-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.adv-profile-card li {
  position: relative;
  padding-left: 22px;
  color: #24415f;
  font-size: 14px;
  font-weight: 800;
}

.adv-profile-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--adv-blue);
  font-weight: 950;
}

/* CONTATO - 6ª seção escura */

.adv-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.adv-contact-card {
  padding: 28px;
  border-radius: var(--adv-radius-lg);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid var(--adv-border-dark);
  box-shadow: var(--adv-shadow-dark);
}

.adv-contact-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.adv-contact-card-head span {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #b9ecff, #79d8ff);
  color: #061a33;
  font-size: 24px;
}

.adv-contact-card h3,
.adv-form-card h3 {
  margin: 0 0 8px;
  color: var(--adv-white);
  font-size: 23px;
  font-weight: 950;
  line-height: 1.25;
}

.adv-contact-card p,
.adv-form-card p {
  margin: 0;
  color: rgba(234, 244, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.adv-map-frame {
  width: 100%;
  min-height: 330px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(121, 216, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 7, 22, 0.22);
}

.adv-map-frame iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
}

.adv-location-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.adv-location-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(234, 244, 255, 0.86);
  font-size: 14px;
  line-height: 1.5;
}

.adv-location-list i {
  color: #b9ecff;
  margin-top: 3px;
}

.adv-form-card > p {
  margin-bottom: 22px;
}

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

.adv-form-group {
  margin-bottom: 14px;
}

.adv-contact-form .form-control {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 16px;
  border: 1px solid rgba(180, 220, 255, 0.34);
  background: rgba(4, 20, 42, 0.70);
  color: var(--adv-white);
  box-shadow: none;
  outline: none;
}

.adv-contact-form textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.adv-contact-form .form-control::placeholder {
  color: rgba(234, 244, 255, 0.62);
}

.adv-contact-form .form-control:focus {
  border-color: rgba(121, 216, 255, 0.88);
  background: rgba(4, 20, 42, 0.92);
  color: var(--adv-white);
  box-shadow: 0 0 0 3px rgba(121, 216, 255, 0.12);
}

.adv-contact-form select.form-control option {
  color: #071a33;
}

.adv-contact-form .validation {
  color: #ffd1d1;
  font-size: 12px;
  margin-top: 5px;
}

.adv-contact-form .jc-form-privacy {
  background: rgba(4, 20, 42, 0.62);
  border-color: rgba(180, 220, 255, 0.24);
  color: rgba(234, 244, 255, 0.82);
}

.adv-contact-form .jc-form-privacy a {
  color: #b9ecff;
}

/* MODAL */

.adv-module-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.adv-module-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.adv-module-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 7, 22, 0.72);
  backdrop-filter: blur(5px);
}

.adv-module-modal-dialog {
  position: relative;
  width: min(640px, 100%);
  padding: 34px;
  border-radius: var(--adv-radius-lg);
  background: #ffffff;
  border: 1px solid var(--adv-border-light);
  box-shadow: 0 26px 70px rgba(0, 7, 22, 0.45);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.22s ease;
}

.adv-module-modal.is-open .adv-module-modal-dialog {
  transform: translateY(0) scale(1);
}

.adv-module-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(20, 100, 210, 0.18);
  background: #f4f9ff;
  color: #071a33;
  cursor: pointer;
}

.adv-module-modal-dialog h3 {
  margin: 0 40px 12px 0;
  color: var(--adv-text-dark);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.2;
}

.adv-module-modal-dialog p {
  margin: 0 0 24px;
  color: var(--adv-text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.adv-module-modal-dialog .adv-kicker {
  margin-bottom: 14px;
}

body.adv-modal-open {
  overflow: hidden;
}

/* FOOTER E BOTTOM WIDGET NA SEQUÊNCIA ESCURA */

body:has(.advogado-page) #bottom-widget,
body:has(.advogado-page) footer {
  background:
    radial-gradient(circle at 10% 0%, rgba(121, 216, 255, 0.16), transparent 40%),
    linear-gradient(135deg, var(--adv-dark-1), var(--adv-dark-2)) !important;
  color: var(--adv-text-light) !important;
}

body:has(.advogado-page) footer a,
body:has(.advogado-page) #bottom-widget a,
body:has(.advogado-page) footer p,
body:has(.advogado-page) #bottom-widget p,
body:has(.advogado-page) footer h1,
body:has(.advogado-page) footer h2,
body:has(.advogado-page) footer h3,
body:has(.advogado-page) footer h4,
body:has(.advogado-page) footer h5,
body:has(.advogado-page) footer h6,
body:has(.advogado-page) #bottom-widget h1,
body:has(.advogado-page) #bottom-widget h2,
body:has(.advogado-page) #bottom-widget h3,
body:has(.advogado-page) #bottom-widget h4,
body:has(.advogado-page) #bottom-widget h5,
body:has(.advogado-page) #bottom-widget h6 {
  color: var(--adv-text-light) !important;
}

/* RESPONSIVO */

@media (max-width: 1180px) {
  .adv-modules-grid,
  .adv-flow-grid,
  .adv-integration-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adv-hero-grid {
    grid-template-columns: 1fr;
  }

  .adv-hero-visual {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .adv-section {
    padding: 74px 0;
  }

  .adv-contact-grid,
  .adv-profile-grid {
    grid-template-columns: 1fr;
  }

  .adv-contact-grid {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .adv-container {
    width: min(100% - 22px, 1180px);
  }

  .adv-section {
    padding: 62px 0;
  }

  .adv-hero-section {
    padding: 68px 0 62px;
  }

  .adv-hero-title {
    font-size: 34px;
  }

  .adv-hero-subtitle {
    font-size: 15px;
  }

  .adv-hero-actions,
  .adv-btn,
  .adv-btn-outline,
  .adv-btn-primary {
    width: 100%;
  }

  .adv-hero-points {
    display: none;
  }

  .adv-dashboard-card {
    min-height: auto;
    padding: 16px;
  }

  .adv-dashboard-header,
  .adv-contact-card-head {
    flex-direction: column;
  }

  .adv-dashboard-metrics,
  .adv-modules-grid,
  .adv-flow-grid,
  .adv-integration-layout,
  .adv-form-row {
    grid-template-columns: 1fr;
  }

  .adv-module-card,
  .adv-flow-step,
  .adv-integration-card,
  .adv-profile-card {
    min-height: auto;
  }

  .adv-contact-card {
    padding: 22px 18px;
  }

  .adv-map-frame,
  .adv-map-frame iframe {
    height: 280px;
    min-height: 280px;
  }

  .adv-module-modal-dialog {
    padding: 28px 22px;
  }

  .adv-module-modal-dialog h3 {
    font-size: 24px;
  }
}

/* =========================================================
   CORREÇÃO FINAL - TEXTOS DENTRO DOS CARDS DE MÓDULOS
   Mantém a estrutura PHP e impede textos de sair do card.
   ========================================================= */
.adv-modules-grid,
.adv-flow-grid,
.adv-integration-layout,
.adv-profile-grid {
  width: 100%;
  min-width: 0;
}

.adv-module-card,
.adv-flow-step,
.adv-integration-card,
.adv-profile-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.adv-module-card strong,
.adv-module-card p,
.adv-flow-step h3,
.adv-flow-step p,
.adv-integration-card h3,
.adv-integration-card p,
.adv-profile-card h3,
.adv-profile-card p,
.adv-profile-card li {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.adv-module-card p {
  flex: 1 1 auto;
}

.adv-module-card strong {
  margin-top: 0;
}

@media (min-width: 992px) {
  .adv-modules-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .adv-module-card {
    padding: 26px 22px 24px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .adv-modules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .adv-module-card {
    min-height: auto;
    padding: 24px 20px;
  }
}
