/* ============================================================
   LP1 - RD Mídia
   CSS reescrito do zero (sem Elementor). Estruturado por seção.
   ============================================================ */

/* ---------- Fontes ---------- */
@font-face {
  font-family: "Clash";
  src: url("../fonts/ClashDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/ClashDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/ClashDisplay-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash";
  src: url("../fonts/ClashDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --bg-dark: #060B30;
  --bg-card: #0E1342;
  --bg-card-2: #0B1035;
  --blue: #233DFF;
  --hl: #2D54E8;
  --glow: rgb(35, 61, 255);
  --glow-spread: rgba(35, 61, 255, 0.581);
  --light: #EBECF1;
  --white: #FFF;
  --ink: #060B30;
  --ink-soft: #121B25;
  --muted: #9CA3AF;
  --muted-2: #D2D2D2;
  --muted-3: #AAA;
  --muted-4: #737373;
  --border-card: rgba(202, 215, 250, 0.35);
  --border-card-soft: rgba(202, 215, 250, 0.30);
  --border-card-2: #E4E2F0;
  --border-faq: #8A98FF;
  --font-display: "Clash", "Inter", sans-serif;
  --font-text: "Inter", sans-serif;
  --font-btn: "Poppins", "Inter", sans-serif;
  --radius: 8px;
  --radius-lg: 20px;
  --wrap: 1140px;
  --gutter: 20px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--light);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, figure, ul {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Texto destacado (azul) ---------- */
.hl {
  color: var(--hl);
  font-weight: 700;
}
.semibold {
  font-weight: 600;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-btn);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  padding: 18px 30px;
  border: 1px solid var(--light);
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.5s ease, box-shadow 0.5s ease, background-image 0.5s ease;
}
.btn--primary {
  color: var(--white);
  background: linear-gradient(-45deg, #060B30, #233DFF, #060B30);
  background-size: 200% 100%;
  animation: gradient 10s infinite cubic-bezier(0.62, 0.28, 0.23, 0.99) both;
}
.btn--primary:hover {
  background-image: linear-gradient(to right, #013868 0%, #233DFF 100%);
  box-shadow: 0 0 2em 0.0001em var(--glow), 0 0 2em 0.2em var(--glow-spread), inset 0 0 0.5em 0.5em var(--glow);
}
.btn--light {
  background: var(--light);
  color: var(--ink);
  font-size: 14px;
  padding: 18px 20px;
}

@keyframes gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 796px;
  display: flex;
  align-items: center;
  background-image: url("../images/BG-1-1.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero__logo {
  width: 80px;
  height: auto;
}
.hero__badge {
  display: inline-block;
  background: var(--light);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 90px;
}
.hero__title {
  width: 58%;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--light);
}
.hero__desc {
  width: 58%;
  margin: 0 auto;
  font-size: 15px;
  color: var(--white);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* ============================================================
   ESTATÍSTICAS
   ============================================================ */
.stats {
  border-top: 0.5px solid var(--blue);
  border-bottom: 0.5px solid var(--blue);
  padding: 40px 0;
}
.stats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.stat-card {
  width: 350px;
  max-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card-2);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.stat-card__icon {
  width: 36px;
  height: 36px;
}
.stat-card__title {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

/* ============================================================
   PROBLEMAS
   ============================================================ */
.problems {
  padding: 80px 0;
}
.problems__grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.problems__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
}
.problem-card {
  position: relative;
  width: 97%;
  background: var(--bg-card-2);
  border-style: solid;
  border-width: 0.5px 0.1px 0 0.1px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 0 20px 20px;
  min-height: 230px;
  z-index: 1;
}
.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  background: linear-gradient(to top, transparent, var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 5px;
  pointer-events: none;
}
.problem-card__icon {
  width: 48px;
  height: 49px;
  margin: 0 0 15px 0;
}
.problem-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--light);
}
.problem-card__text {
  margin-top: 10px;
  font-size: 14px;
  color: var(--light);
}
.problems__copy {
  flex: 1;
  padding-left: 40px;
}
.problems__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--light);
}
.problems__text {
  margin-top: 16px;
  font-size: 15px;
  color: var(--white);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  padding: 20px 0;
}
.marquee__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 48px;
  white-space: nowrap;
  animation: rdMarquee 45s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}
.marquee__item img {
  width: 50px;
  height: auto;
  max-width: none;
}
.marquee__text {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-soft);
  text-shadow: 0 0 10px rgb(0 0 0 / 0.3);
}

@keyframes rdMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   MÉTODO
   ============================================================ */
.metodo {
  padding: 80px 0;
}
.metodo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.metodo__title,
.metodo__sub {
  width: 66%;
  max-width: 100%;
  align-self: center;
}
.metodo__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--light);
}
.metodo__sub {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 30px;
}
.step-card {
  position: relative;
  display: flex;
  gap: 40px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 40px;
  z-index: 1;
}
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  background: linear-gradient(to top, transparent, var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: var(--radius);
  pointer-events: none;
}
.step-card__img {
  width: 50%;
  align-self: center;
  object-fit: contain;
}
.step-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.step-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  max-width: 438px;
}
.step-card__icon {
  width: 53px;
  height: 52px;
}
.step-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--light);
}
.step-card__subtitle {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  color: var(--light);
}
.step-card__text {
  width: 92%;
  max-width: 100%;
  font-size: 15px;
  color: var(--light);
}
.metodo__cta {
  margin-top: 32px;
  padding: 18px 50px;
}

/* ============================================================
   SOBRE GABRIEL
   ============================================================ */
.about {
  padding: 80px 0;
}
.about__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about__copy {
  flex: 1;
}
.about__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--light);
}
.about__text {
  margin-top: 16px;
  font-size: 15px;
  color: var(--white);
}
.about__media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__img {
  max-width: 100%;
  margin: 0 auto;
}

/* ============================================================
   LISTA DE DIFERENCIAIS
   ============================================================ */
.about-list {
  padding: 80px 0;
}
.about-list__grid {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-list__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-list__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--light);
}
.about-list__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--light);
}
.about-list__icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}
.about-list__cta {
  align-self: flex-start;
  padding: 18px 50px;
}
.about-list__media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-list__img {
  max-width: 100%;
  margin: 0 auto;
}

/* ============================================================
   DEPOIMENTOS + RESULTADOS
   ============================================================ */
.depoimentos {
  min-height: 917px;
  display: flex;
  align-items: center;
  background-image: url("../images/BG-Papel.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.depoimentos__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.depoimentos__title {
  width: 51%;
  max-width: 100%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.depo-card {
  background: var(--bg-dark);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.depo-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #1f2937;
  border-right: 1px solid var(--blue);
  pointer-events: none;
  z-index: 0;
}
.depo-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #0ea5e9 0%, #FFFFFF 100%);
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  pointer-events: none;
  z-index: 1;
  transform-origin: bottom;
}
.depo-card:hover::before {
  height: 100%;
}
.depo-card__quote {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--muted);
}
.depo-card__meta {
  margin-top: 20px;
  display: block;
}
.depo-card__name {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #F3F4F6;
}
.depo-card__job {
  display: block;
  font-size: 14px;
  color: var(--muted);
}
.depoimentos__results {
  text-align: center;
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
.case-card {
  width: 90%;
  max-width: 100%;
  text-align: center;
}
.case-card__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}
.case-card__text {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

/* ============================================================
   RESULTADOS / PERFIL
   ============================================================ */
.results {
  min-height: 816px;
  display: flex;
  align-items: center;
  background-image: url("../images/BG-Azul.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.results__box {
  min-height: 642px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background-image: url("../images/BG-Conteiner.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px double var(--border-card-soft);
  border-radius: var(--radius-lg);
  padding: 80px 0;
}
.results__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--light);
}
.results__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.results__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--light);
}
.results__dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
.results__closing {
  width: 55%;
  max-width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--light);
}

/* ============================================================
   CRM
   ============================================================ */
.crm {
  min-height: 877px;
  background-image: url("../images/BG-CRM.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 80px;
}
.crm__inner {
  margin-top: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.crm__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 500;
  color: var(--light);
}
.crm__sub,
.crm__text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted-2);
}
.crm__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.crm__pill {
  background: #1E2344;
  color: #AEAEAE;
  font-size: 16px;
  padding: 12px 24px;
  border: 1px solid #1E2344;
  border-radius: 90px;
}
.crm__cta {
  padding: 18px 50px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background-image: url("../images/BG-Faq-1.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.faq__title {
  width: 55%;
  max-width: 100%;
  margin-top: 250px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--light);
}
.faq__list {
  width: 100%;
}
.faq__item {
  border-bottom: 1px solid var(--border-faq);
}
.faq__item + .faq__item {
  margin-top: 24px;
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  font-size: 22px;
  font-weight: 600;
  color: var(--light);
  cursor: pointer;
  list-style: none;
  transition: background 0.3s ease;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question:hover {
  background: var(--blue);
  color: var(--white);
}
.faq__plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.faq__plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.faq__plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
.faq__item[open] .faq__plus::after {
  transform: translateX(-50%) scaleY(0);
}
.faq__answer {
  padding: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted-3);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  min-height: 697px;
  background-image: url("../images/BG-Respondipp.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta__copy {
  flex: 1;
}
.cta__title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--light);
}
.cta__text {
  margin-top: 16px;
  font-size: 15px;
  color: var(--white);
}
.cta__form {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}

/* ---------- Formulário de leads (nativo) ---------- */
.lead-form {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
}
.lead-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.lead-form__label {
  font-family: var(--font-btn);
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
}
.lead-form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-card-soft);
  border-radius: var(--radius);
  background: var(--bg-dark);
  color: var(--light);
  font-family: var(--font-text);
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.lead-form__input::placeholder {
  color: var(--muted-4);
}
.lead-form__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(35, 61, 255, 0.25);
}
.lead-form__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--light);
  cursor: pointer;
}
.lead-form__check input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue);
}
.lead-form__submit {
  width: 100%;
  margin-top: 4px;
}
.lead-form__status {
  min-height: 20px;
  font-size: 14px;
  text-align: center;
  color: var(--muted-2);
}
.lead-form__status.is-error {
  color: #ff6b6b;
}
.lead-form__status.is-success {
  color: #4ade80;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  padding: 30px 0;
}
.site-footer__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-card-soft);
  border-radius: var(--radius);
  padding: 40px;
}
.site-footer__copyright {
  text-align: center;
  font-size: 16px;
  color: var(--muted-2);
}
.site-footer__social {
  display: flex;
  gap: 20px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  color: var(--ink);
}
.social-link svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.social-link img {
  width: 15px;
  height: 15px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem-card {
    min-height: auto;
  }
  .step-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    background-image: url("../images/LP-Mobile-01.webp");
    padding: 40px 20px;
  }
  .hero__logo {
    width: 65px;
  }
  .hero__badge {
    font-size: 13px;
    padding: 10px 20px;
  }
  .hero__title,
  .hero__desc {
    width: 100%;
  }
  .hero__cta .btn {
    font-size: 13px;
  }
  .hero__cta .btn--primary {
    padding: 18px 70px;
  }

  .stats {
    padding: 60px 20px;
  }
  .stat-card__title {
    font-size: 22px;
  }

  .problems {
    padding: 60px 20px;
  }
  .problems__grid {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .problems__copy {
    padding-left: 0;
  }

  .marquee__text {
    font-size: 1.5em;
  }

  .metodo {
    padding: 60px 20px;
  }
  .metodo__title,
  .metodo__sub {
    width: 100%;
  }
  .step-card {
    flex-direction: column;
    gap: 24px;
  }
  .step-card__img {
    width: 100%;
  }
  .step-card__title {
    font-size: 26px;
  }
  .step-card__subtitle {
    font-size: 20px;
  }
  .step-card__text {
    width: 100%;
    font-size: 14px;
  }
  .metodo__cta {
    font-size: 13px;
    padding: 18px 30px;
  }

  .about {
    padding: 60px 20px;
  }
  .about__grid {
    flex-direction: column;
  }

  .about-list {
    padding: 60px 20px;
  }
  .about-list__grid {
    flex-direction: column;
  }
  .about-list__cta {
    font-size: 13px;
  }

  .depoimentos {
    min-height: auto;
    padding: 90px 20px 60px;
  }
  .depoimentos__title {
    width: 100%;
  }
  .depoimentos__grid {
    grid-template-columns: 1fr;
  }
  .depo-card__quote {
    font-size: 16px;
  }
  .depo-card::before {
    height: 100%;
  }
  .depoimentos__results {
    font-size: 45px;
  }
  .case-card {
    width: 100%;
  }
  .case-card__title {
    font-size: 28px;
  }
  .case-card__text {
    font-size: 16px;
  }

  .results {
    min-height: 325px;
    padding: 60px 16px;
  }
  .results__box {
    min-height: 0;
    padding: 50px 16px;
  }
  .results__title {
    font-size: 35px;
  }
  .results__closing {
    width: 100%;
    font-size: 16px;
  }

  .crm {
    background-image: url("../images/LP-Mobile.webp");
    padding: 60px 20px;
  }
  .crm__inner {
    margin-top: 100px;
  }
  .crm__title {
    font-size: 28px;
    max-width: 363px;
  }
  .crm__pill {
    font-size: 12px;
  }
  .crm__cta {
    font-size: 13px;
  }

  .faq {
    background-image: url("../images/LP-Mobile-02.webp");
    padding: 60px 20px;
  }
  .faq__title {
    width: 100%;
    margin-top: 120px;
  }
  .faq__question {
    font-size: 18px;
  }
  .faq__answer {
    font-size: 16px;
  }

  .cta {
    background-image: url("../images/LP-Mobile-03.webp");
    padding: 60px 20px;
  }
  .cta__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__copy {
    width: 100%;
  }
  .cta__form {
    justify-content: center;
    align-self: stretch;
  }

  .site-footer {
    padding: 40px 20px;
  }
}
