/* === Imports and Fonts === */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Keep Calm";
  src: url("../font/keep_calm_font.ttf") format("truetype");
}

/* === Reset === */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: var(--lef_white);
}

a {
  text-decoration: none;
}

body {
  background-color: var(--lef_black);
}

/* === Variables === */
:root {
  --lef_white: #f0e9f5;
  --lef_purple: #6d46e2;
  --lef_black: #111218;
  --graphite: #141821;
}

/* === WhatsApp Floating === */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 18, 24, 0.75);
  border: 1px solid rgba(109, 70, 226, 0.32);
  backdrop-filter: blur(12px);
  z-index: 9999;
  transition: all ease 0.2s;
}

.whatsapp-float i {
  font-size: 1.65em;
  color: var(--lef_purple);
}

.whatsapp-float:hover {
  transform: scale(1.04);
  background-color: rgba(109, 70, 226, 0.16);
  box-shadow: 0 0 18px rgba(109, 70, 226, 0.35);
}

/* === Hero - Main Content === */
.initial-content {
  background-color: var(--lef_black);
  background-image: url("https://i.ibb.co/7NQfffdd/fundo-hero-2.jpg");
  background-position: center;
  background-size: cover;

  /* IMPORTANTE: deixa altura flexível pra não criar “buraco” */
  min-height: 100vh;
  padding-bottom: 5em;
}

.initial-content-organizer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7em 1.2em 0;
  position: relative;
}

/* === Hero === */
.hero-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2em;

  /* IMPORTANTE: espaço pra foto “descer” e ser sobreposta */
  padding-bottom: 4.5em;
}

.hero-content-area {
  margin-top: 5.5em;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  max-width: 560px;
}

.hero-headline {
  font-family: "Keep Calm", sans-serif;
  font-weight: 500;
  font-size: 2.8em;
  line-height: 1.08;
}

.hero-description {
  font-size: 1.2em;
  width: 100%;
  max-width: 520px;
}

.hero-image-container {
  width: min(600px, 78%);
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-image {
  width: 100%;
  max-width: 600px;

  /* AQUI: garante que a imagem “encoste” e desça */
  display: block;
  transform: translateY(30px);
}

/* CTA Default */
.cta-button-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lef_purple);
  border: none;
  outline: none;
  width: 400px;
  max-width: 100%;
  height: 60px;
  border-radius: 0.6em;
  font-size: 1em;
  padding: 0 1.3em;
  margin-top: 1.4em;
  box-shadow: 0px 0px 16px #6d46e285;
  cursor: pointer;
  transition: all ease 0.3s;
}

.hero-cta-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.cta-button-default:hover {
  box-shadow: 0px 0px 16px rgba(109, 70, 226, 0.699);
  background-color: #7c57ee;
  transform: scale(1.02);
}

.cta-button-default > i {
  font-size: 1.7em;
}

.button-reinforcement-text {
  margin-top: 0.7em;
}

/* === Pain explanation - Main === */
/* IMPORTANTE: agora é “relative” com margin-top negativo (overlap correto) */
.pain-value-container {
  background-color: var(--lef_black);
  padding: 4em;
  width: 100%;
  border: 1px solid var(--lef_purple);
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  gap: 2em;
  overflow: visible;

  position: relative;
  z-index: 3;

  /* overlap com a foto */
  margin-top: -300px;
}

.pain-value-points-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}

.down-cosmect {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.4em;

  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--lef_purple);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.15), 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(124, 58, 237, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
  }
}

.down-cosmect i {
  font-size: 1.5em;
}

.points-text-side-container {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.points-desc-xl {
  font-size: 1.4em;
}

.contradiction-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}

.points-contradiction-text {
  width: 140px;
  text-align: center;
}

.points-contradiction-icon {
  font-size: 2em;
  color: var(--lef_purple);
}

.subtitle-default {
  font-size: 1.9em;
  text-align: center;
}

.purple-emphasis {
  color: var(--lef_purple);
}

.points-explanation-side-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 48%;
}

.points-vertical-divider {
  background-color: var(--graphite);
  width: 2px;
  height: 500px;
}

.points-description {
  text-align: center;
}

.points-card {
  background-color: var(--graphite);
  padding: 0.7em;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
  gap: 1em;
}

.points-card-container {
  display: flex;
  flex-direction: column;
  gap: 1.4em;
}

.points-card-icon-box {
  background-color: var(--lef_white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5em;
}

.points-card-icon-box > i {
  color: var(--lef_purple);
  font-size: 2em;
}

.pain-value-cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6em;
}

.points-card-text {
  font-size: 0.9em;
}

.pain-result-text {
  text-align: center;
  width: 100%;
  max-width: 700px;
  font-size: 1.2em;
}

.pain-result-text-xl {
  font-size: 2em;
  font-weight: 600;
}

.pain-result-text-xl span {
  font-weight: 700;
}

/* === Text Slider === */
.text-slider-container {
  height: 80px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--lef_black);
  border-top: 1px solid var(--lef_purple);
  border-bottom: 1px solid var(--lef_purple);
  display: flex;
  align-items: center;
}

.slider-text {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 1em;
  animation: slide 200s linear infinite;
}

.bullet {
  color: var(--lef_purple);
}

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

/* === Core Solution === */
.core-solution-container {
  background-color: var(--graphite);
}

.core-solution-container-organizer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4em 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}

.description-default {
  text-align: center;
  font-size: 1.2em;
  width: 100%;
  max-width: 620px;
}

.cards-core-solution {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.core-card {
  width: 224px;
  background-color: var(--lef_black);
  padding: 1em;
  border-radius: 0.5em;
  border: 1px solid var(--lef_purple);
  background-image: linear-gradient(to top, #1a1b24, #1b1f2b);
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.core-card-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--lef_purple);
  border-radius: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 16px #6d46e285;
}

.core-card-icon-box > i {
  font-size: 1.6em;
}

.core-card-title {
  font-weight: 600;
  font-size: 0.9em;
}

.core-card-desc {
  font-size: 0.9em;
}

/* === Enumerable Core === */
.enumerable-core-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 1.2em;
  background-color: var(--lef_black);
  margin: 5em auto;
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
}

.enumerable-core-cards {
  display: flex;
  gap: 1em;
  justify-content: center;
}

.enumerable-core-card {
  width: 382px;
  max-width: 100%;
  background-color: var(--graphite);
  border-radius: 0.5em;
  display: flex;
  border: 1px solid #6d46e285;
  padding: 3em 2em 3em 0;
}

.ornament-core-card {
  width: 3em;
}

.enumerable-core-card-titles {
  display: flex;
  gap: 1em;
}

.ornament {
  background-color: var(--lef_purple);
  display: block;
  width: 5px;
  border-radius: 0 4px 4px 0;
  height: 30px;
  box-shadow: 2px 0px 12px 3px #6d46e285;
}

.number-core-card {
  background-color: var(--lef_purple);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-core-card {
  font-weight: 700;
  width: 280px;
  max-width: 100%;
}

.subtitle-core-card {
  font-size: 0.9em;
  color: #f0e9f565;
}

.enumerable-core-card-description-container {
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.enumerable-core-card-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.enumerable-core-card-list {
  margin-left: 2em;
  list-style-type: circle;
}

.enumerable-core-card-list li::marker {
  color: var(--lef_purple);
}

.enumerable-core-table-container {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
  width: 100%;
}

.table {
  background-color: var(--graphite);
  border-radius: 0.6em;
  border: 1px solid #6d46e285;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
  width: 500px;
  max-width: 100%;
}

.table-deleted {
  background-color: var(--lef_black);
  border: 1px solid #b9b9b985;
}

.table-vertial-divider {
  height: 2px;
  width: 100%;
  background-color: #20242e;
}

.table-marker {
  position: absolute;
  top: -0.9em;
  background-color: #7c57ee;
  padding: 0.2em 1em;
  border-radius: 1em;
  font-size: 0.8em;
}

.table-deleted p,
.table-deleted h3 {
  color: #575a63;
}
.table-deleted div {
  background-color: #20242e;
}

/* === About Us === */
.about-us-container {
  background-color: var(--graphite);
  padding: 6em 1.2em;
}

.about-us-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us-card {
  background: linear-gradient(to top, #141821, #111218);
  border: 1px solid rgba(109, 70, 226, 0.35);
  border-radius: 1.2em;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.about-us-media {
  position: relative;
  min-height: 520px;
  background-image: url("https://i.ibb.co/RG25Kc57/foto-maos-lefoco.webp");
  background-size: cover;
  background-position: center;
}

.about-us-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 10%,
      rgba(109, 70, 226, 0.22),
      transparent 45%
    ),
    linear-gradient(to right, rgba(17, 18, 24, 0.15), rgba(17, 18, 24, 0.92));
}

.about-us-body {
  padding: 3.6em 3.4em;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.about-eyebrow {
  letter-spacing: 0.35em;
  font-size: 0.75em;
  color: var(--lef_purple);
  font-weight: 600;
}

.about-title {
  font-size: 2.1em;
  font-weight: 600;
  line-height: 1.15;
}

.about-text {
  font-size: 1.05em;
  line-height: 1.75;
  color: rgba(240, 233, 245, 0.82);
  max-width: 560px;
}

.about-highlights {
  margin-top: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}

.about-highlight {
  background-color: rgba(20, 24, 33, 0.75);
  border: 1px solid rgba(109, 70, 226, 0.18);
  border-radius: 0.9em;
  padding: 1em 1.1em;
  display: flex;
  gap: 0.9em;
  align-items: flex-start;
}

.about-highlight p {
  font-size: 0.98em;
  line-height: 1.6;
  color: rgba(240, 233, 245, 0.82);
}

.about-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(109, 70, 226, 0.12);
  border: 1px solid rgba(109, 70, 226, 0.25);
  flex-shrink: 0;
}

.about-icon i {
  color: var(--lef_purple);
  font-size: 1.2em;
}

.about-mission {
  margin-top: 1.2em;
  background: linear-gradient(
    to top,
    rgba(109, 70, 226, 0.12),
    rgba(17, 18, 24, 0.2)
  );
  border: 1px solid rgba(109, 70, 226, 0.28);
  border-radius: 1em;
  padding: 1.2em 1.2em 1.1em;
  position: relative;
}

.about-mission-label {
  position: absolute;
  top: -0.8em;
  left: 1.1em;
  background-color: #7c57ee;
  padding: 0.2em 0.9em;
  border-radius: 999px;
  font-size: 0.75em;
  font-weight: 600;
}

.about-mission-text {
  font-size: 1.25em;
  font-weight: 700;
  color: var(--lef_white);
  line-height: 1.35;
  margin-top: 0.4em;
}

.about-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 1em;
}

.about-logo {
  width: 170px;
  opacity: 0.9;
}

/* === Social Proof === */
.social-proof {
  background-color: var(--graphite);
  border-top: 1px solid rgba(109, 70, 226, 0.25);
  border-bottom: 1px solid rgba(109, 70, 226, 0.25);
  padding: 6em 1.2em;
}

.social-proof-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6em;
  align-items: center;
}

.social-eyebrow {
  letter-spacing: 0.35em;
  font-size: 0.75em;
  color: var(--lef_purple);
  font-weight: 600;
}

/* Slider CLEAN */
.proof-slider {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 1.2em;
  align-items: center;
}

.proof-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.proof-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0;
}
.proof-track::-webkit-scrollbar {
  display: none;
}

.proof-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.proof-card img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.proof-nav {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(17, 18, 24, 0.6);
  border: 1px solid rgba(109, 70, 226, 0.25);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease 0.2s;
}

.proof-nav:hover {
  transform: scale(1.04);
  background-color: rgba(109, 70, 226, 0.16);
}

.proof-nav i {
  color: var(--lef_purple);
  font-size: 1.25em;
}

.proof-dots {
  display: flex;
  gap: 0.6em;
  align-items: center;
  justify-content: center;
  margin-top: 0.2em;
}

.proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(109, 70, 226, 0.45);
  background-color: rgba(240, 233, 245, 0.08);
  cursor: pointer;
  transition: all ease 0.2s;
}

.proof-dot.is-active {
  width: 26px;
  background-color: rgba(109, 70, 226, 0.75);
  border-color: rgba(109, 70, 226, 0.75);
}

/* === FAQ === */
.faq-section {
  width: 100%;
  background-color: var(--lef_black);
  padding: 6em 1.2em;
}

.faq-organizer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4em;
  align-items: start;
}

.faq-eyebrow {
  letter-spacing: 0.35em;
  font-size: 0.75em;
  color: var(--lef_purple);
  font-weight: 600;
}

.faq-title {
  font-size: 2.4em;
  font-weight: 600;
  margin-top: 0.35em;
}

.faq-line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 1.4em 0 2.4em;
  background-color: #20242e;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.faq-item {
  background: linear-gradient(to top, #141821, #111218);
  border: 1px solid #6d46e240;
  border-radius: 0.9em;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.35em 1.4em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05em;
  font-weight: 600;
  text-align: left;
}

.faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(109, 70, 226, 0.12);
  border: 1px solid rgba(109, 70, 226, 0.3);
}

.faq-icon i {
  font-size: 1.3em;
  color: var(--lef_purple);
  transition: transform 0.25s ease;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4em;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-a {
  max-height: 300px;
  padding-bottom: 1.2em;
}

.faq-item.is-open .faq-icon i {
  transform: rotate(45deg);
}

.faq-a p {
  font-size: 0.95em;
  line-height: 1.7;
}

/* Right card */
.faq-next-step-card {
  background: linear-gradient(to top, #141821, #111218);
  border: 1px solid #6d46e240;
  border-radius: 1em;
  padding: 2.8em;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.faq-next-eyebrow {
  letter-spacing: 0.35em;
  font-size: 0.7em;
  color: var(--lef_purple);
  font-weight: 600;
}

.faq-next-title {
  font-size: 1.9em;
  font-weight: 600;
  line-height: 1.3;
}

.faq-next-text {
  font-size: 1em;
  line-height: 1.6;
}

.faq-next-list {
  margin-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.faq-next-list li::marker {
  color: var(--lef_purple);
}

.faq-next-strong {
  font-weight: 700;
  font-size: 1em;
}

/* === Footer === */
.lef-footer {
  width: 100%;
  background-color: var(--lef_black);
  padding: 5em 1.2em 2.5em;
  border-top: 1px solid #6d46e240;
}

.lef-footer-organizer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5em;
  align-items: start;
}

.lef-footer-logo {
  width: 180px;
}

.lef-footer-desc {
  margin-top: 1.2em;
  font-size: 0.95em;
  line-height: 1.7;
  color: rgba(240, 233, 245, 0.78);
}

.lef-footer-social {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9em;
  margin-top: 1.1em;
}

.lef-footer-social li a {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.95em;
  color: rgba(240, 233, 245, 0.78);
  transition: all ease 0.25s;
}

.lef-footer-social li a:hover {
  color: var(--lef_white);
  transform: translateX(2px);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(109, 70, 226, 0.12);
  border: 1px solid rgba(109, 70, 226, 0.25);
  flex-shrink: 0;
  transition: all ease 0.25s;
}

.social-icon i {
  color: var(--lef_purple);
  font-size: 1.1em;
}

.lef-footer-social li a:hover .social-icon {
  background-color: rgba(109, 70, 226, 0.2);
  box-shadow: 0 0 12px rgba(109, 70, 226, 0.35);
}

.lef-footer-title {
  font-size: 1.05em;
  font-weight: 600;
  margin-bottom: 1.1em;
}

.lef-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9em;
}

.lef-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.95em;
}

.lef-footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(109, 70, 226, 0.12);
  border: 1px solid rgba(109, 70, 226, 0.25);
}

.lef-footer-icon i {
  color: var(--lef_purple);
  font-size: 1.1em;
}

.footer-link {
  color: rgba(240, 233, 245, 0.78);
}

.footer-link:hover {
  color: var(--lef_white);
}

.lef-footer-cta {
  margin-top: 1.4em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95em 1.2em;
  border-radius: 0.8em;
  background-color: var(--lef_purple);
  box-shadow: 0px 0px 16px #6d46e285;
  font-weight: 600;
  transition: all ease 0.25s;
  width: fit-content;
}

.lef-footer-cta:hover {
  background-color: #7c57ee;
  transform: scale(1.02);
}

.lef-footer-divider {
  display: block;
  max-width: 1200px;
  margin: 3em auto 2em;
  height: 1px;
  background-color: #20242e;
}

.lef-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.lef-footer-bottom-left p {
  font-size: 0.85em;
  color: rgba(240, 233, 245, 0.7);
  line-height: 1.6;
}

.span-fix {
  width: 320px;
  color: rgba(240, 233, 245, 0.78);
}

/* ===================== RESPONSIVO (GERAL) ===================== */

/* <= 1024px */
@media (max-width: 1024px) {
  .hero-container {
    align-items: center;
  }

  .hero-image-container {
    width: 46%;
  }

  .pain-value-container {
    padding: 3em;
    margin-top: -110px;
  }

  .points-vertical-divider {
    height: 460px;
  }

  .faq-organizer {
    grid-template-columns: 1fr;
  }

  .lef-footer-organizer {
    grid-template-columns: 1fr;
  }
}

/* <= 980px */
@media (max-width: 980px) {
  .hero-container {
    flex-direction: column;
    padding-bottom: 2.5em;
  }

  .hero-content-area {
    margin-top: 0;
    max-width: 680px;
    align-items: flex-start;
  }

  .hero-headline {
    font-size: 2.2em;
  }

  .hero-image-container {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    transform: translateY(10px);
    max-width: 520px;
  }

  .pain-value-container {
    margin-top: -270px;
    padding: 2.6em;
  }

  .pain-value-points-container {
    flex-direction: column;
  }

  .points-text-side-container,
  .points-explanation-side-container {
    width: 100%;
  }

  .points-vertical-divider {
    display: none;
  }

  .proof-slider {
    grid-template-columns: 46px 1fr 46px;
  }
  .proof-card {
    min-height: 440px;
  }
  .proof-card img {
    max-height: 440px;
  }

  .cards-core-solution,.enumerable-core-cards {
    flex-wrap: wrap;
  }

  .core-card {
    height: 264px;
  }

  .enumerable-core-card {
    height: 378px;
  }

}

/* <= 560px */
@media (max-width: 560px) {
  .hero-cta-btn {
    width: 100%;
  }

  .enumerable-core-cards,
  .cards-core-solution {
    flex-wrap: wrap;
  }

  .initial-content-organizer {
    padding-top: 5.5em;
  }

  .hero-headline {
    font-size: 1.6em;
  }

  .hero-description {
    font-size: 0.9em;
  }

  .subtitle-default {
    font-size: 1.5em;
  }

  .points-description {
    font-size: 0.9em;
  }

  .pain-value-container {
    margin-top: -200px;
    padding: 2.2em 1.4em;
  }

  .points-contradiction-text {
    width: 100%;
    font-size: 0.9em;
  }

  .points-desc-xl {
    font-size: 1.2em;
  }

  .points-card-text {
    font-size: 0.8em;
    width: 80%;
  }

  .points-card-icon-box {
    width: 40px;
    height: 40px;
  }

  .points-card-icon-box i {
    font-size: 1.5em;
  }

  .pain-result-text {
    font-size: 1em;
  }

  .pain-result-text-xl {
    font-size: 1.4em;
    text-align: center;
  }

  .cta-button-default {
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
  }

  .description-default {
    font-size: 1em;
  }

  .core-card {
    width: 90%;
  }

  .enumerable-core-card {
    width: 80%;
  }

  .enumerable-core-card-container {
    margin-left: 1em;
  }

  .enumerable-core-card-description-container {
    font-size: 0.8em;
    gap: 0.8em;
  }

  .enumerable-core-card-description-container p {
    width: 90%;
  }

  .proof-slider {
    grid-template-columns: 40px 1fr 40px;
    gap: 0.6em;
  }
  .proof-card {
    min-height: 360px;
  }
  .proof-card img {
    max-height: 360px;
  }

  .faq-title {
    font-size: 1.6em;
  }

  .faq-item {
    width: 320px;
  }

  .faq-q-text {
    font-size: 0.9em;
    width: 90%;
  }

  .faq-next-step-card {
    width: 320px;
    padding: 2em 1.4em;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .about-us-media {
    display: none;
  }

  .about-us-body {
    padding: 2em;
  }

  .span-fix {
    width: 260px;
  }

  .lef-footer {
    margin: 0 auto;
    width: 320px;
  }

  .lef-footer-desc {
    width: 90%;
  }

  .lef-footer-cta {
    width: 90%;
    text-align: center;
    font-size: 0.9em;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
}
