:root {
  --ms-py: 0.4rem;
  --ms-option-bg-selected-pointed: #47c37f;
  --ms-option-bg-selected: #178a4e;
  --ms-ring-color: #1daa61;
}

@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler/Butler_Bold.otf');
  font-weight: bold;
}

@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler/Butler_Regular.otf');
  font-weight: normal;
}

@font-face {
  font-family: 'Classica';
  src: url('../fonts/Classica/Classica-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: 'Classica';
  src: url('../fonts/Classica/Classica-Book.ttf');
  font-weight: normal;
}

.drag-area:first-child {
  padding-left: 0px;
}

.drag-area {
  margin-top: 8px;
  min-height: 10px;
  padding-left: 20px;
  padding-bottom: 8px;
}

.drag-area ul li {
  list-style: none;
  cursor: move;
}

.validation-errors {
  position: fixed;
  top: 2rem;
  right: 2rem;
  border: red solid 1px;
  padding: 1rem 2rem;
  background-color: white;
  z-index: 999999;
  border-radius: 4px;
}

.error-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.error-list p {
  color: red;
  margin-top: 2px;
  margin-bottom: 0;
}

.slide-bottom-enter-active,
.slide-bottom-leave-active {
  transition-duration: 200ms;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.slide-bottom-enter-from,
.slide-bottom-leave-to {
  transform: translateY(10%);
  opacity: 0;
}

.slide-right-enter-active,
.slide-right-leave-active {
  transition-duration: 0.4s;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.slide-right-enter-from,
.slide-right-leave-to {
  transform: translateX(100%);
  opacity: 0;
}

.c-input-label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #254035;
  margin-bottom: 10px;
}

.fade-enter-active,
.fade-leave-active {
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: linear;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.scale-up-enter-active,
.scale-up-leave-active {
  transition-duration: 0.2s;
  transition-property: transform;
  transition-timing-function: ease-out;
}

.scale-up-enter-from,
.scale-up-leave-to {
  transform: scale(0.8);
}

.right-enter-active,
.right-leave-active {
  transition-duration: 0.3s;
  transition-property: opacity, transform;
  transition-timing-function: ease-in;
}

.right-enter-from,
.right-leave-to {
  transform: translateX(100%);
  opacity: 0;
}

.c-modal-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100000;
  background-color: rgba(0, 0, 0, 0.4);
}

.c-modal-container.as-modal {
  display: grid;
  place-items: center;
}

.c-modal-container.as-sidebar {
  display: flex;
  justify-content: end;
}

.c-modal-container.bg-blur {
  backdrop-filter: blur(4px);
}

.c-modal-content {
  width: 25%;
  position: relative;
}

.c-main-content {
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.c-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.c-modal-content .c-modal-header {
  font-size: 1.2rem;
  font-weight: 600;
}

.c-modal-content h6 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* .c-modal-content p {
  font-size: 1.1rem;
  font-weight: 400;
} */

.c-modal-content .exclamation {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 5px solid rgb(248, 191, 142);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.c-modal-content .exclamation span {
  font-size: 3rem;
  color: rgb(248, 191, 142);
}

.c-model-btn-container {
  display: flex;
  justify-content: center;
  column-gap: 0.5rem;
}

.c-model-btn-container-end {
  margin-top: 0.5rem;
  display: flex;
  justify-content: end;
  column-gap: 0.5rem;
}

@media (max-width: 868px) {
  .c-modal-content {
    width: 90%;
  }
}

.spinner_btn_img {
  height: 25px;
}

.no-data-found-img {
  max-height: 100px;
}

.category-section-img {
  max-height: 100px;
}

.paginate-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
}

.paginate-link {
  padding: 5px 12px 7px 12px;
  font-size: 14px;
  border-radius: 5px;
}

.paginate-link-null {
  color: #8e8e8e;
}

.paginate-link-active {
  color: inherit;
  text-decoration: none;
}

.paginate-link-active:hover {
  background-color: #8b5cf6;
  color: white;
}

.paginate-link-active:focus {
  border-color: #6b44c7;
}

.paginate-link-active-bg {
  background-color: #8b5cf6;
  color: white;
}

.multiselect-option {
  text-transform: capitalize;
}

.multiselect-tag {
  text-transform: capitalize;
  --ms-tag-bg: rgb(71 85 105);
}

.dark .multiselect-tag {
  text-transform: capitalize;
  --ms-tag-bg: rgb(30, 41, 59);
}

.dark .multiselect-dark {
  --ms-border-color: #374457;
  --ms-bg: rgba(23, 22, 22, 0.1);
  --ms-tag-bg: rgba(15, 23, 42, 0.6);
  --ms-dropdown-bg: rgb(30, 41, 59);
  background-color: rgb(15, 23, 42);
}

.dark .multiselect-option {
  color: #fdfdfd;
}

.dark .multiselect-tags-search {
  background-color: rgb(15, 23, 42);
}

.dark .multiselect-tag.is-user {
  background: rgb(30, 41, 59);
}

.dark .multiselect-dark [type='text']:focus {
  --tw-ring-color: rgba(23, 22, 22, 0);
  outline: 0px solid var(--tw-ring-color);
}

.dark .multiselect-wrapper [type='text'],
.dark .multiselect-wrapper input:where(:not([type])),
.dark .multiselect-wrapper [type='search'] {
  background-color: rgb(15, 23, 42);
  color: #fdfdfd;
}

.loader-img {
  height: 25px;
}

.styled-scrollbar::-webkit-scrollbar {
  height: 12px;
  width: 8px;
}

.dark .styled-scrollbar::-webkit-scrollbar-track {
  background: #1e293b;
}

.dark .styled-scrollbar::-webkit-scrollbar-thumb {
  background: #0f172a7e;
  border-radius: 3px;
}

.dark .styled-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #0f172a;
}

.styled-scrollbar::-webkit-scrollbar-track {
  background: #e9e9e9;
}

.styled-scrollbar::-webkit-scrollbar-thumb {
  background: #9d9d9d7e;
  border-radius: 3px;
}

.styled-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #d4d4d4;
}

.hollow-dots-spinner,
.hollow-dots-spinner * {
  box-sizing: border-box;
}

.hollow-dots-spinner {
  height: 15px;
  width: calc(25px * 3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hollow-dots-spinner .dot {
  width: 10px;
  height: 10px;
  margin: 0 calc(10px / 2);
  border: calc(10px / 5) solid rgb(139, 92, 246);
  border-radius: 50%;
  float: left;
  transform: scale(0);
  animation: hollow-dots-spinner-animation 1000ms ease infinite 0ms;
}

.hollow-dots-spinner .dot:nth-child(1) {
  animation-delay: calc(300ms * 1);
}

.hollow-dots-spinner .dot:nth-child(2) {
  animation-delay: calc(300ms * 2);
}

.hollow-dots-spinner .dot:nth-child(3) {
  animation-delay: calc(300ms * 3);
}

@keyframes hollow-dots-spinner-animation {
  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.half-circle-spinner,
.half-circle-spinner * {
  box-sizing: border-box;
}

.half-circle-spinner {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  position: relative;
}

.half-circle-spinner .circle {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: calc(60px / 10) solid transparent;
}

.half-circle-spinner .circle.circle-1 {
  border-top-color: rgb(139, 92, 246);
  animation: half-circle-spinner-animation 1s infinite;
}

.half-circle-spinner .circle.circle-2 {
  border-bottom-color: rgb(139, 92, 246);
  animation: half-circle-spinner-animation 1s infinite alternate;
}

@keyframes half-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.looping-rhombuses-spinner {
  height: 8px;
  position: relative;
}

.looping-rhombuses-spinner .rhombus {
  height: 8px;
  width: 8px;
  left: 12px;
  position: absolute;
  border-radius: 5px;
  transform: translateY(0) scale(0);
  animation: looping-rhombuses-spinner-animation 2500ms linear infinite;
}

.looping-rhombuses-spinner .rhombus:nth-child(1) {
  animation-delay: calc(2500ms * 1 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(2) {
  animation-delay: calc(2500ms * 2 / -1.5);
}

.looping-rhombuses-spinner .rhombus:nth-child(3) {
  animation-delay: calc(2500ms * 3 / -1.5);
}

@keyframes looping-rhombuses-spinner-animation {
  0% {
    transform: translateX(0) scale(0);
  }

  50% {
    transform: translateX(-233%) scale(1);
  }

  100% {
    transform: translateX(-466%) scale(0);
  }
}

@keyframes loading {
  0% {
    background-color: #dcdcdc;
  }

  50% {
    background-color: #f1f1f1;
  }

  100% {
    background-color: #dcdcdc;
  }
}

@keyframes loadingDark {
  0% {
    background-color: #0e1339;
  }

  50% {
    background-color: #363636;
  }

  100% {
    background-color: #0e1339;
  }
}

.dark img[lazy='loading'] {
  border-radius: 2px;
  animation: loadingDark 1.5s infinite ease-in-out;
}

img[lazy='loading'] {
  border-radius: 5px;
  animation: loading 1.5s infinite ease-in-out;
}

.whatsapp-chat-body {
  background-image: url(/assets/images/wa_bg_white.png);
  background-size: 100% 100%;
  background-repeat: repeat;
}

.dark .whatsapp-chat-body {
  background-image: url(/assets/images/wa_bg.png);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}

@media (max-width: 576px) {
  .hero-banner-email .hero-banner-email-input {
    margin-bottom: 1rem;
    width: 100%;
  }

  .hero-banner-email .hero-banner-email-btn {
    width: 100%;
  }
}

.feedback-section-one-slider-active {
  background: black;
}

.feedback-section-one-slider-inactive {
  background: transparent;
}

.feedback-section-one-slider {
  width: 10px;
  height: 10px;
  border: 1px solid black
}

/* ===== LANDING PREMIUM (WhatsApp / CRM) — overrides sobre tema ===== */

:root {
  --landing-green: #25d366;
  --landing-green-deep: #128c7e;
  --landing-green-dark: #075e54;
  --landing-green-soft: #e8f5ef;
  --landing-green-mist: #f2faf6;
  --landing-ink: #0c2e26;
  --landing-ink-muted: rgba(12, 46, 38, 0.62);
  --landing-radius-xl: 24px;
  --landing-radius-lg: 18px;
  --landing-max: 1120px;
  --landing-shadow: 0 22px 55px rgba(7, 94, 84, 0.09);
}

body,
.main-page-wrapper {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

body:has(.main-page-wrapper) {
  background: var(--landing-green-mist);
}

/* Contenedor principal: sin sensación “full bleed” */
.main-page-wrapper {
  max-width: var(--landing-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(16px, 4vw, 28px) !important;
  padding-right: clamp(16px, 4vw, 28px) !important;
  overflow-x: hidden;
}

.main-page-wrapper .container {
  max-width: 100% !important;
}

/* Pie alineado al mismo ancho que <main> (DefaultLayout envuelve Footer en .main-page-wrapper) */
.main-page-wrapper .footer-one .footer-intro h3 {
  font-size: clamp(1.5rem, 1vw + 1.1rem, 2rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
}

.main-page-wrapper .footer-one .footer-nav-link a:hover,
.main-page-wrapper .footer-one .footer-contact .tel:hover {
  color: var(--landing-green-deep) !important;
}

/* ——— Hero: tu HeroBanner.vue usa hero-banner-three (no hero-banner-eight) ——— */
.main-page-wrapper .hero-banner-three,
.main-page-wrapper .hero-banner-eight {
  margin: 0 auto 28px !important;
  max-width: 100%;
  background: linear-gradient(
    145deg,
    #e5f7ed 0%,
    #f6fffa 42%,
    #dff3ea 100%
  ) !important;
  border-radius: var(--landing-radius-xl) !important;
  border: 1px solid rgba(37, 211, 102, 0.14) !important;
  box-shadow: var(--landing-shadow) !important;
  border-bottom: none !important;
}

/* Quitar borde gris del tema en hero tres */
.main-page-wrapper .hero-banner-three {
  padding-top: clamp(4.5rem, 12vw, 7.5rem) !important;
  padding-bottom: clamp(3rem, 8vw, 5rem) !important;
}

.main-page-wrapper .hero-banner-three .hero-heading,
.main-page-wrapper .hero-banner-eight .hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.85rem, 1.1vw + 1.45rem, 2.65rem) !important;
  font-weight: 700 !important;
  line-height: 1.14 !important;
  letter-spacing: -0.03em !important;
  color: var(--landing-ink) !important;
}

.main-page-wrapper .hero-banner-three .fs-28,
.main-page-wrapper .hero-banner-three .fs-36,
.main-page-wrapper .hero-banner-three p,
.main-page-wrapper .hero-banner-eight .fs-28,
.main-page-wrapper .hero-banner-eight .fs-36,
.main-page-wrapper .hero-banner-eight p {
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.125rem) !important;
  line-height: 1.65 !important;
  color: var(--landing-ink-muted) !important;
  font-weight: 500 !important;
}

.main-page-wrapper .hero-banner-three form button,
.main-page-wrapper .hero-banner-three .hero-banner-email-btn {
  background: linear-gradient(92deg, var(--landing-green) 0%, var(--landing-green-deep) 100%) !important;
  border: none !important;
  color: #fff !important;
}

.main-page-wrapper .hero-banner-three form button:hover,
.main-page-wrapper .hero-banner-three .hero-banner-email-btn:hover {
  background: var(--landing-green-dark) !important;
  color: #fff !important;
}

.main-page-wrapper .hero-banner-three form input,
.main-page-wrapper .hero-banner-three .hero-banner-email-input {
  border-color: rgba(18, 140, 126, 0.35) !important;
  background: rgba(255, 255, 255, 0.85) !important;
}

.main-page-wrapper .hero-banner-three li {
  color: var(--landing-ink-muted) !important;
}

.main-page-wrapper .hero-banner-three li .bi-check2 {
  color: var(--landing-green-deep) !important;
}

.main-page-wrapper .hero-banner-eight .pb-200 {
  padding-bottom: clamp(3rem, 8vw, 5rem) !important;
}

.main-page-wrapper .hero-banner-eight .illustration_01 {
  max-width: min(52%, 480px) !important;
}

.main-page-wrapper .block-feature-nine .fs-24 {
  font-size: clamp(1rem, 0.4vw + 0.9rem, 1.125rem) !important;
  line-height: 1.65 !important;
  color: var(--landing-ink-muted) !important;
}

.main-page-wrapper .block-feature-eight .fs-28 {
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.125rem) !important;
  line-height: 1.65 !important;
  color: var(--landing-ink-muted) !important;
}

.main-page-wrapper .app-integration-two .fs-24 {
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.05rem) !important;
  color: var(--landing-ink-muted) !important;
}

/* ——— Títulos de sección (plantilla usa title-two / title-three) ——— */
.main-page-wrapper .title-two h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.5rem, 1vw + 1.2rem, 2.15rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.025em !important;
  font-weight: 700 !important;
  color: var(--landing-ink) !important;
}

/* title-three: testimonios usa h2.fw-500 — peso medio */
.main-page-wrapper .title-three h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.5rem, 1vw + 1.2rem, 2.05rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
  font-weight: 600 !important;
  color: var(--landing-ink) !important;
}

.main-page-wrapper .title-two .upper-title {
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  color: var(--landing-green-deep) !important;
  font-weight: 700 !important;
}

.main-page-wrapper .title-three .upper-title {
  color: var(--landing-green-deep) !important;
}

.main-page-wrapper .block-feature-seven .block h4 {
  font-size: 1.15rem !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
  color: var(--landing-ink) !important;
}

/* ——— Bloques de características ——— */
.main-page-wrapper .block-feature-seven {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.main-page-wrapper .block-feature-eight {
  background: rgba(232, 245, 239, 0.65) !important;
  border-radius: var(--landing-radius-xl) !important;
  margin-bottom: 28px !important;
  border: 1px solid rgba(18, 140, 126, 0.08) !important;
}

.main-page-wrapper .block-feature-nine .feature-block .img-box {
  background: #fff !important;
  border: 1px solid rgba(18, 140, 126, 0.1) !important;
  box-shadow: 0 16px 40px rgba(7, 94, 84, 0.06) !important;
}

/* ——— Integraciones ——— */
.main-page-wrapper .app-integration-two .icon-box .icon {
  border-color: rgba(37, 211, 102, 0.45) !important;
  background: #fff !important;
  box-shadow: 0 12px 32px rgba(7, 94, 84, 0.07) !important;
}

.main-page-wrapper .app-integration-two .icon-box h6 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 1.2rem !important;
  color: var(--landing-ink) !important;
}

.main-page-wrapper .app-integration-two .main-wrapper:before {
  border-top-color: rgba(18, 140, 126, 0.18) !important;
}

.main-page-wrapper .app-integration-two .logo-box:before {
  border-left-color: rgba(18, 140, 126, 0.18) !important;
}

/* ——— Testimonios: quitar carril ultra ancho ——— */
.main-page-wrapper .feedback-section-four {
  background: linear-gradient(180deg, #dff5ea 0%, #e8f5ef 100%) !important;
  border-radius: var(--landing-radius-xl) !important;
  margin-bottom: 28px !important;
  border: 1px solid rgba(18, 140, 126, 0.1) !important;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.main-page-wrapper .feedback-section-four::before {
  opacity: 0.35;
}

.main-page-wrapper .feedback-section-four .main-title h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.5rem, 1vw + 1.2rem, 2.1rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  color: var(--landing-ink) !important;
}

.main-page-wrapper .feedback-section-four .wrapper {
  width: 100% !important;
  max-width: 960px !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.main-page-wrapper .feedback-section-four .slick-dots li.slick-active button {
  background: var(--landing-green) !important;
}

.main-page-wrapper .feedback-card-two {
  border-radius: var(--landing-radius-lg) !important;
  border: 1px solid rgba(18, 140, 126, 0.1) !important;
  box-shadow: 0 14px 36px rgba(7, 94, 84, 0.06) !important;
}

.main-page-wrapper .feedback-card-two .text h3 span {
  color: var(--landing-green-deep) !important;
}

/* ——— Testimonios: FeedbackSectionFour.vue usa feedback-section-five + Swiper ——— */
.main-page-wrapper .feedback-section-five .slider-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}

.main-page-wrapper .feedback-section-five.version-two .feedback-card-three {
  background: #fff !important;
  border: 1px solid rgba(18, 140, 126, 0.12) !important;
  box-shadow: 0 14px 36px rgba(7, 94, 84, 0.06) !important;
}

.main-page-wrapper .feedback-card-three blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.05rem, 0.45vw + 0.92rem, 1.2rem) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  margin: 1.75rem 0 2rem !important;
  color: var(--landing-ink-muted) !important;
}

.main-page-wrapper .feedback-card-three h6 {
  font-size: 1.05rem !important;
  color: var(--landing-ink) !important;
}

.main-page-wrapper .feedback-section-five .slider-arrows li:hover {
  background: var(--landing-green) !important;
}

.main-page-wrapper .feedback-section-five.version-two .slider-arrows li {
  border-color: rgba(18, 140, 126, 0.35) !important;
}

.main-page-wrapper .feedback-section-five.version-two .slider-arrows li:hover {
  border-color: var(--landing-green) !important;
}

/* ——— Logos partners: PartnerLogo.vue ——— */
.main-page-wrapper .partner-logo {
  border-bottom: 1px solid rgba(18, 140, 126, 0.12) !important;
  background: rgba(255, 255, 255, 0.55) !important;
  border-radius: var(--landing-radius-lg) !important;
  margin-bottom: 1.5rem !important;
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.main-page-wrapper .partner-logo-one .item img {
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.main-page-wrapper .partner-logo-one .item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ——— CTA final ——— */
.main-page-wrapper .fancy-banner-three {
  background: linear-gradient(165deg, #0d4a42 0%, #128c7e 55%, #25d366 130%) !important;
  border-radius: var(--landing-radius-xl) !important;
  margin-bottom: 28px !important;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
  box-shadow: var(--landing-shadow) !important;
  overflow: hidden;
}

.main-page-wrapper .fancy-banner-three:before {
  opacity: 0.25;
}

.main-page-wrapper .fancy-banner-three h2 {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(1.55rem, 1.1vw + 1.15rem, 2.2rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
}

.main-page-wrapper .fancy-banner-three h2 span {
  color: #b9ffe0 !important;
}

/* ——— FAQ ——— */
.main-page-wrapper .faq-section-one .faq-tag {
  background: var(--landing-green-deep) !important;
  letter-spacing: 0.12em !important;
  border-radius: 999px !important;
}

.main-page-wrapper .accordion-style-one .accordion-item .accordion-button:not(.collapsed) {
  color: var(--landing-green-deep) !important;
}

.main-page-wrapper .accordion-style-one .accordion-item .accordion-button:not(.collapsed):after {
  background: var(--landing-green) !important;
  color: #fff !important;
}

.main-page-wrapper .accordion-style-one.version-two.border-style {
  border-color: rgba(18, 140, 126, 0.18) !important;
  background: rgba(255, 255, 255, 0.85) !important;
}

.main-page-wrapper .accordion-style-one.version-two .accordion-button:after {
  color: var(--landing-green-deep) !important;
}

.main-page-wrapper .faq-section-one .accordion-body .fs-22 {
  font-size: clamp(1rem, 0.35vw + 0.92rem, 1.0625rem) !important;
  line-height: 1.65 !important;
  color: var(--landing-ink-muted) !important;
}

/* ——— Botones dentro de la landing ——— */
.main-page-wrapper .btn-seven {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  background: linear-gradient(92deg, var(--landing-green) 0%, var(--landing-green-deep) 100%) !important;
  border: none !important;
  color: #fff !important;
  font-size: 1rem !important;
  line-height: 56px !important;
}

.main-page-wrapper .btn-seven:hover {
  background: var(--landing-green-dark) !important;
  color: #fff !important;
}

.main-page-wrapper .btn-eleven {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  border-color: var(--landing-green-deep) !important;
  color: var(--landing-green-dark) !important;
  font-size: 1rem !important;
  line-height: 52px !important;
}

.main-page-wrapper .btn-eleven:hover {
  background: var(--landing-green) !important;
  border-color: var(--landing-green) !important;
  color: #fff !important;
}

.main-page-wrapper .btn-twelve {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  background: linear-gradient(92deg, var(--landing-green) 0%, var(--landing-green-deep) 100%) !important;
  border: none !important;
}

.main-page-wrapper .btn-twelve:before {
  background: var(--landing-green-dark) !important;
}

/* Fallback: cualquier hero-heading en landing (por si cambia variante de banner) */
.main-page-wrapper .hero-heading {
  font-size: clamp(1.85rem, 1.1vw + 1.45rem, 2.65rem) !important;
  line-height: 1.14 !important;
}

/* Dark: superficies coherentes con la marca */
html[data-bs-theme='dark'] body:has(.main-page-wrapper) {
  background: #0f1412;
}

html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-three,
html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-eight {
  background: linear-gradient(145deg, #152a22 0%, #1a2e28 100%) !important;
  border-color: rgba(37, 211, 102, 0.2) !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-three .hero-heading,
html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-eight .hero-heading,
html[data-bs-theme='dark'] .main-page-wrapper .title-two h2,
html[data-bs-theme='dark'] .main-page-wrapper .title-three h2,
html[data-bs-theme='dark'] .main-page-wrapper .feedback-section-four .main-title h2,
html[data-bs-theme='dark'] .main-page-wrapper .fancy-banner-three h2 {
  color: #f4fbf8 !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-three .fs-28,
html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-three p,
html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-three li {
  color: rgba(244, 251, 248, 0.78) !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-three form input,
html[data-bs-theme='dark'] .main-page-wrapper .hero-banner-three .hero-banner-email-input {
  background: rgba(15, 20, 18, 0.6) !important;
  border-color: rgba(37, 211, 102, 0.35) !important;
  color: #f4fbf8 !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .block-feature-eight {
  background: rgba(21, 42, 34, 0.85) !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .feedback-section-four {
  background: linear-gradient(180deg, #152a22 0%, #1a3028 100%) !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .feedback-section-five.version-two .feedback-card-three {
  background: rgba(21, 42, 34, 0.92) !important;
  border-color: rgba(37, 211, 102, 0.2) !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .feedback-card-three blockquote,
html[data-bs-theme='dark'] .main-page-wrapper .feedback-card-three h6 {
  color: #f4fbf8 !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .feedback-card-three span {
  color: rgba(244, 251, 248, 0.55) !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .partner-logo {
  background: rgba(21, 42, 34, 0.85) !important;
  border-bottom-color: rgba(37, 211, 102, 0.15) !important;
}

html[data-bs-theme='dark'] .main-page-wrapper .partner-logo-one .item img {
  filter: grayscale(1) brightness(1.2);
  opacity: 0.65;
}

html[data-bs-theme='dark'] .main-page-wrapper .accordion-style-one.version-two.border-style {
  background: rgba(21, 42, 34, 0.75) !important;
  border-color: rgba(37, 211, 102, 0.2) !important;
}

/* ===== TEXTOS PANEL MÁS OSCUROS ===== */
body:not(.dark) * {
  --tw-text-opacity: 1 !important;
}

body:not(.dark) .text-slate-700,
body:not(.dark) [class*="text-slate-7"] {
  color: rgb(15 23 42 / var(--tw-text-opacity)) !important;
}

body:not(.dark) .text-slate-600,
body:not(.dark) [class*="text-slate-6"] {
  color: rgb(15 23 42 / var(--tw-text-opacity)) !important;
}

body:not(.dark) .text-slate-500,
body:not(.dark) [class*="text-slate-5"] {
  color: rgb(51 65 85 / var(--tw-text-opacity)) !important;
}

body:not(.dark) .text-slate-400,
body:not(.dark) [class*="text-slate-4"] {
  color: rgb(71 85 105 / var(--tw-text-opacity)) !important;
}

body:not(.dark) p,
body:not(.dark) span:not([class*="text-"]),
body:not(.dark) label,
body:not(.dark) td,
body:not(.dark) th,
body:not(.dark) li {
  color: rgb(15 23 42) !important;
}