@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus,
textarea:focus {
  border-color: #1e5b4f !important;
  box-shadow: none !important;
  outline: none !important;
}

input[type=checkbox] {
  border-radius: 1px;
  background-color: transparent;
  border: 2px solid #808080;
  box-shadow: none;
}
input[type=checkbox]:focus {
  border-color: #1e5b4f !important;
  box-shadow: none !important;
  outline: none !important;
}
input[type=checkbox]:checked {
  background-color: transparent;
  border-color: #1e5b4f;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23611232' d='M13.485 1.929a1 1 0 0 1 1.415 1.414l-8.07 8.071a1 1 0 0 1-1.414 0L1.1 7.1a1 1 0 1 1 1.414-1.414l3.9 3.9 7.071-7.071z'/%3e%3c/svg%3e");
}

input[type=radio] {
  border: 2px solid #808080;
  background-color: transparent;
  box-shadow: none;
}
input[type=radio]:focus {
  border-color: #1e5b4f !important;
  box-shadow: none !important;
  outline: none !important;
}
input[type=radio]:checked {
  border-color: #1e5b4f;
  background-color: #1e5b4f !important;
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans", Arial, sans-serif;
  background-color: #f3f3f3;
  color: #242424;
  padding: 0;
  margin: 0;
}
body::before {
  content: "";
  position: fixed;
  z-index: 9998 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #1e5b4f;
  pointer-events: none;
}
@media (max-width: 767px) {
  body::before {
    height: 56px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans", Arial, sans-serif !important;
  margin: 0;
  padding: 0;
}

.main-content {
  width: 100%;
  min-height: 100vh;
  margin-top: 0;
  padding-top: 1.5rem;
}

.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1440px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .container-fluid {
    max-width: 1439px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container-fluid {
    max-width: 1023px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .container-fluid {
    max-width: 767px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 374px) {
  .container-fluid {
    max-width: 374px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.rounded {
  border-radius: 8px !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

.required::before {
  content: "*";
  color: #ae1c22;
  font-size: 16px;
  margin-right: 4px; /* espaciado entre el * y el texto */
}

.alert-info {
  padding: 8px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #edf2fe;
  color: #224497;
  text-align: left;
}

hr {
  border-top: 1px solid #767676 !important;
}

.divider {
  border-top: 1px solid #dddddd !important;
}

.card-box-shadow {
  border-radius: 16px;
  background: #fff;
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.2);
}

.card-no-shadow {
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
  outline: none;
}

.list-unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary--text {
  color: #1e5b4f !important;
}

.bg-primary {
  background-color: #1e5b4f !important;
}

.border-primary {
  border-color: #1e5b4f !important;
}

.primary-dark--text {
  color: #1e5b4f !important;
}

.bg-primary-dark {
  background-color: #1e5b4f !important;
}

.border-primary-dark {
  border-color: #1e5b4f !important;
}

.secondary--text {
  color: #a57f2c !important;
}

.bg-secondary {
  background-color: #a57f2c !important;
}

.border-secondary {
  border-color: #a57f2c !important;
}

.cherry--text {
  color: #7a1125 !important;
}

.bg-cherry {
  background-color: #7a1125 !important;
}

.border-cherry {
  border-color: #7a1125 !important;
}

.background--text {
  color: #f3f3f3 !important;
}

.bg-background {
  background-color: #f3f3f3 !important;
}

.border-background {
  border-color: #f3f3f3 !important;
}

.text--text {
  color: #161a1d !important;
}

.bg-text {
  background-color: #161a1d !important;
}

.border-text {
  border-color: #161a1d !important;
}

.white--text {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.border-white {
  border-color: #ffffff !important;
}

.gray--text {
  color: #f8f8f8 !important;
}

.bg-gray {
  background-color: #f8f8f8 !important;
}

.border-gray {
  border-color: #f8f8f8 !important;
}

.light-gray--text {
  color: #767676 !important;
}

.bg-light-gray {
  background-color: #767676 !important;
}

.border-light-gray {
  border-color: #767676 !important;
}

.neutro-700--text {
  color: #434343 !important;
}

.bg-neutro-700 {
  background-color: #434343 !important;
}

.border-neutro-700 {
  border-color: #434343 !important;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif !important;
}

.patria {
  font-family: "Patria", sans-serif !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

@media (min-width: 320px) {
  .fw-xs-100 {
    font-weight: 100 !important;
  }
  .fw-xs-200 {
    font-weight: 200 !important;
  }
  .fw-xs-300 {
    font-weight: 300 !important;
  }
  .fw-xs-400 {
    font-weight: 400 !important;
  }
  .fw-xs-500 {
    font-weight: 500 !important;
  }
  .fw-xs-600 {
    font-weight: 600 !important;
  }
  .fw-xs-700 {
    font-weight: 700 !important;
  }
  .fw-xs-800 {
    font-weight: 800 !important;
  }
  .fw-xs-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 375px) {
  .fw-sm-100 {
    font-weight: 100 !important;
  }
  .fw-sm-200 {
    font-weight: 200 !important;
  }
  .fw-sm-300 {
    font-weight: 300 !important;
  }
  .fw-sm-400 {
    font-weight: 400 !important;
  }
  .fw-sm-500 {
    font-weight: 500 !important;
  }
  .fw-sm-600 {
    font-weight: 600 !important;
  }
  .fw-sm-700 {
    font-weight: 700 !important;
  }
  .fw-sm-800 {
    font-weight: 800 !important;
  }
  .fw-sm-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 768px) {
  .fw-md-100 {
    font-weight: 100 !important;
  }
  .fw-md-200 {
    font-weight: 200 !important;
  }
  .fw-md-300 {
    font-weight: 300 !important;
  }
  .fw-md-400 {
    font-weight: 400 !important;
  }
  .fw-md-500 {
    font-weight: 500 !important;
  }
  .fw-md-600 {
    font-weight: 600 !important;
  }
  .fw-md-700 {
    font-weight: 700 !important;
  }
  .fw-md-800 {
    font-weight: 800 !important;
  }
  .fw-md-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1024px) {
  .fw-lg-100 {
    font-weight: 100 !important;
  }
  .fw-lg-200 {
    font-weight: 200 !important;
  }
  .fw-lg-300 {
    font-weight: 300 !important;
  }
  .fw-lg-400 {
    font-weight: 400 !important;
  }
  .fw-lg-500 {
    font-weight: 500 !important;
  }
  .fw-lg-600 {
    font-weight: 600 !important;
  }
  .fw-lg-700 {
    font-weight: 700 !important;
  }
  .fw-lg-800 {
    font-weight: 800 !important;
  }
  .fw-lg-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1440px) {
  .fw-xl-100 {
    font-weight: 100 !important;
  }
  .fw-xl-200 {
    font-weight: 200 !important;
  }
  .fw-xl-300 {
    font-weight: 300 !important;
  }
  .fw-xl-400 {
    font-weight: 400 !important;
  }
  .fw-xl-500 {
    font-weight: 500 !important;
  }
  .fw-xl-600 {
    font-weight: 600 !important;
  }
  .fw-xl-700 {
    font-weight: 700 !important;
  }
  .fw-xl-800 {
    font-weight: 800 !important;
  }
  .fw-xl-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1920px) {
  .fw-xxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxl-200 {
    font-weight: 200 !important;
  }
  .fw-xxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxl-800 {
    font-weight: 800 !important;
  }
  .fw-xxl-900 {
    font-weight: 900 !important;
  }
}
.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-52 {
  font-size: 52px !important;
}

.fs-54 {
  font-size: 54px !important;
}

.fs-56 {
  font-size: 56px !important;
}

.fs-58 {
  font-size: 58px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.fs-62 {
  font-size: 62px !important;
}

.fs-64 {
  font-size: 64px !important;
}

.fs-66 {
  font-size: 66px !important;
}

.fs-68 {
  font-size: 68px !important;
}

.fs-70 {
  font-size: 70px !important;
}

.fs-72 {
  font-size: 72px !important;
}

.fs-74 {
  font-size: 74px !important;
}

.fs-76 {
  font-size: 76px !important;
}

.fs-78 {
  font-size: 78px !important;
}

.fs-80 {
  font-size: 80px !important;
}

@media (min-width: 320px) {
  .fs-xs-12 {
    font-size: 12px !important;
  }
  .fs-xs-14 {
    font-size: 14px !important;
  }
  .fs-xs-16 {
    font-size: 16px !important;
  }
  .fs-xs-18 {
    font-size: 18px !important;
  }
  .fs-xs-20 {
    font-size: 20px !important;
  }
  .fs-xs-22 {
    font-size: 22px !important;
  }
  .fs-xs-24 {
    font-size: 24px !important;
  }
  .fs-xs-26 {
    font-size: 26px !important;
  }
  .fs-xs-28 {
    font-size: 28px !important;
  }
  .fs-xs-30 {
    font-size: 30px !important;
  }
  .fs-xs-32 {
    font-size: 32px !important;
  }
  .fs-xs-34 {
    font-size: 34px !important;
  }
  .fs-xs-36 {
    font-size: 36px !important;
  }
  .fs-xs-38 {
    font-size: 38px !important;
  }
  .fs-xs-40 {
    font-size: 40px !important;
  }
  .fs-xs-42 {
    font-size: 42px !important;
  }
  .fs-xs-44 {
    font-size: 44px !important;
  }
  .fs-xs-46 {
    font-size: 46px !important;
  }
  .fs-xs-48 {
    font-size: 48px !important;
  }
  .fs-xs-50 {
    font-size: 50px !important;
  }
  .fs-xs-52 {
    font-size: 52px !important;
  }
  .fs-xs-54 {
    font-size: 54px !important;
  }
  .fs-xs-56 {
    font-size: 56px !important;
  }
  .fs-xs-58 {
    font-size: 58px !important;
  }
  .fs-xs-60 {
    font-size: 60px !important;
  }
  .fs-xs-62 {
    font-size: 62px !important;
  }
  .fs-xs-64 {
    font-size: 64px !important;
  }
  .fs-xs-66 {
    font-size: 66px !important;
  }
  .fs-xs-68 {
    font-size: 68px !important;
  }
  .fs-xs-70 {
    font-size: 70px !important;
  }
  .fs-xs-72 {
    font-size: 72px !important;
  }
  .fs-xs-74 {
    font-size: 74px !important;
  }
  .fs-xs-76 {
    font-size: 76px !important;
  }
  .fs-xs-78 {
    font-size: 78px !important;
  }
  .fs-xs-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 375px) {
  .fs-sm-12 {
    font-size: 12px !important;
  }
  .fs-sm-14 {
    font-size: 14px !important;
  }
  .fs-sm-16 {
    font-size: 16px !important;
  }
  .fs-sm-18 {
    font-size: 18px !important;
  }
  .fs-sm-20 {
    font-size: 20px !important;
  }
  .fs-sm-22 {
    font-size: 22px !important;
  }
  .fs-sm-24 {
    font-size: 24px !important;
  }
  .fs-sm-26 {
    font-size: 26px !important;
  }
  .fs-sm-28 {
    font-size: 28px !important;
  }
  .fs-sm-30 {
    font-size: 30px !important;
  }
  .fs-sm-32 {
    font-size: 32px !important;
  }
  .fs-sm-34 {
    font-size: 34px !important;
  }
  .fs-sm-36 {
    font-size: 36px !important;
  }
  .fs-sm-38 {
    font-size: 38px !important;
  }
  .fs-sm-40 {
    font-size: 40px !important;
  }
  .fs-sm-42 {
    font-size: 42px !important;
  }
  .fs-sm-44 {
    font-size: 44px !important;
  }
  .fs-sm-46 {
    font-size: 46px !important;
  }
  .fs-sm-48 {
    font-size: 48px !important;
  }
  .fs-sm-50 {
    font-size: 50px !important;
  }
  .fs-sm-52 {
    font-size: 52px !important;
  }
  .fs-sm-54 {
    font-size: 54px !important;
  }
  .fs-sm-56 {
    font-size: 56px !important;
  }
  .fs-sm-58 {
    font-size: 58px !important;
  }
  .fs-sm-60 {
    font-size: 60px !important;
  }
  .fs-sm-62 {
    font-size: 62px !important;
  }
  .fs-sm-64 {
    font-size: 64px !important;
  }
  .fs-sm-66 {
    font-size: 66px !important;
  }
  .fs-sm-68 {
    font-size: 68px !important;
  }
  .fs-sm-70 {
    font-size: 70px !important;
  }
  .fs-sm-72 {
    font-size: 72px !important;
  }
  .fs-sm-74 {
    font-size: 74px !important;
  }
  .fs-sm-76 {
    font-size: 76px !important;
  }
  .fs-sm-78 {
    font-size: 78px !important;
  }
  .fs-sm-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 12px !important;
  }
  .fs-md-14 {
    font-size: 14px !important;
  }
  .fs-md-16 {
    font-size: 16px !important;
  }
  .fs-md-18 {
    font-size: 18px !important;
  }
  .fs-md-20 {
    font-size: 20px !important;
  }
  .fs-md-22 {
    font-size: 22px !important;
  }
  .fs-md-24 {
    font-size: 24px !important;
  }
  .fs-md-26 {
    font-size: 26px !important;
  }
  .fs-md-28 {
    font-size: 28px !important;
  }
  .fs-md-30 {
    font-size: 30px !important;
  }
  .fs-md-32 {
    font-size: 32px !important;
  }
  .fs-md-34 {
    font-size: 34px !important;
  }
  .fs-md-36 {
    font-size: 36px !important;
  }
  .fs-md-38 {
    font-size: 38px !important;
  }
  .fs-md-40 {
    font-size: 40px !important;
  }
  .fs-md-42 {
    font-size: 42px !important;
  }
  .fs-md-44 {
    font-size: 44px !important;
  }
  .fs-md-46 {
    font-size: 46px !important;
  }
  .fs-md-48 {
    font-size: 48px !important;
  }
  .fs-md-50 {
    font-size: 50px !important;
  }
  .fs-md-52 {
    font-size: 52px !important;
  }
  .fs-md-54 {
    font-size: 54px !important;
  }
  .fs-md-56 {
    font-size: 56px !important;
  }
  .fs-md-58 {
    font-size: 58px !important;
  }
  .fs-md-60 {
    font-size: 60px !important;
  }
  .fs-md-62 {
    font-size: 62px !important;
  }
  .fs-md-64 {
    font-size: 64px !important;
  }
  .fs-md-66 {
    font-size: 66px !important;
  }
  .fs-md-68 {
    font-size: 68px !important;
  }
  .fs-md-70 {
    font-size: 70px !important;
  }
  .fs-md-72 {
    font-size: 72px !important;
  }
  .fs-md-74 {
    font-size: 74px !important;
  }
  .fs-md-76 {
    font-size: 76px !important;
  }
  .fs-md-78 {
    font-size: 78px !important;
  }
  .fs-md-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1024px) {
  .fs-lg-12 {
    font-size: 12px !important;
  }
  .fs-lg-14 {
    font-size: 14px !important;
  }
  .fs-lg-16 {
    font-size: 16px !important;
  }
  .fs-lg-18 {
    font-size: 18px !important;
  }
  .fs-lg-20 {
    font-size: 20px !important;
  }
  .fs-lg-22 {
    font-size: 22px !important;
  }
  .fs-lg-24 {
    font-size: 24px !important;
  }
  .fs-lg-26 {
    font-size: 26px !important;
  }
  .fs-lg-28 {
    font-size: 28px !important;
  }
  .fs-lg-30 {
    font-size: 30px !important;
  }
  .fs-lg-32 {
    font-size: 32px !important;
  }
  .fs-lg-34 {
    font-size: 34px !important;
  }
  .fs-lg-36 {
    font-size: 36px !important;
  }
  .fs-lg-38 {
    font-size: 38px !important;
  }
  .fs-lg-40 {
    font-size: 40px !important;
  }
  .fs-lg-42 {
    font-size: 42px !important;
  }
  .fs-lg-44 {
    font-size: 44px !important;
  }
  .fs-lg-46 {
    font-size: 46px !important;
  }
  .fs-lg-48 {
    font-size: 48px !important;
  }
  .fs-lg-50 {
    font-size: 50px !important;
  }
  .fs-lg-52 {
    font-size: 52px !important;
  }
  .fs-lg-54 {
    font-size: 54px !important;
  }
  .fs-lg-56 {
    font-size: 56px !important;
  }
  .fs-lg-58 {
    font-size: 58px !important;
  }
  .fs-lg-60 {
    font-size: 60px !important;
  }
  .fs-lg-62 {
    font-size: 62px !important;
  }
  .fs-lg-64 {
    font-size: 64px !important;
  }
  .fs-lg-66 {
    font-size: 66px !important;
  }
  .fs-lg-68 {
    font-size: 68px !important;
  }
  .fs-lg-70 {
    font-size: 70px !important;
  }
  .fs-lg-72 {
    font-size: 72px !important;
  }
  .fs-lg-74 {
    font-size: 74px !important;
  }
  .fs-lg-76 {
    font-size: 76px !important;
  }
  .fs-lg-78 {
    font-size: 78px !important;
  }
  .fs-lg-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1440px) {
  .fs-xl-12 {
    font-size: 12px !important;
  }
  .fs-xl-14 {
    font-size: 14px !important;
  }
  .fs-xl-16 {
    font-size: 16px !important;
  }
  .fs-xl-18 {
    font-size: 18px !important;
  }
  .fs-xl-20 {
    font-size: 20px !important;
  }
  .fs-xl-22 {
    font-size: 22px !important;
  }
  .fs-xl-24 {
    font-size: 24px !important;
  }
  .fs-xl-26 {
    font-size: 26px !important;
  }
  .fs-xl-28 {
    font-size: 28px !important;
  }
  .fs-xl-30 {
    font-size: 30px !important;
  }
  .fs-xl-32 {
    font-size: 32px !important;
  }
  .fs-xl-34 {
    font-size: 34px !important;
  }
  .fs-xl-36 {
    font-size: 36px !important;
  }
  .fs-xl-38 {
    font-size: 38px !important;
  }
  .fs-xl-40 {
    font-size: 40px !important;
  }
  .fs-xl-42 {
    font-size: 42px !important;
  }
  .fs-xl-44 {
    font-size: 44px !important;
  }
  .fs-xl-46 {
    font-size: 46px !important;
  }
  .fs-xl-48 {
    font-size: 48px !important;
  }
  .fs-xl-50 {
    font-size: 50px !important;
  }
  .fs-xl-52 {
    font-size: 52px !important;
  }
  .fs-xl-54 {
    font-size: 54px !important;
  }
  .fs-xl-56 {
    font-size: 56px !important;
  }
  .fs-xl-58 {
    font-size: 58px !important;
  }
  .fs-xl-60 {
    font-size: 60px !important;
  }
  .fs-xl-62 {
    font-size: 62px !important;
  }
  .fs-xl-64 {
    font-size: 64px !important;
  }
  .fs-xl-66 {
    font-size: 66px !important;
  }
  .fs-xl-68 {
    font-size: 68px !important;
  }
  .fs-xl-70 {
    font-size: 70px !important;
  }
  .fs-xl-72 {
    font-size: 72px !important;
  }
  .fs-xl-74 {
    font-size: 74px !important;
  }
  .fs-xl-76 {
    font-size: 76px !important;
  }
  .fs-xl-78 {
    font-size: 78px !important;
  }
  .fs-xl-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1920px) {
  .fs-xxl-12 {
    font-size: 12px !important;
  }
  .fs-xxl-14 {
    font-size: 14px !important;
  }
  .fs-xxl-16 {
    font-size: 16px !important;
  }
  .fs-xxl-18 {
    font-size: 18px !important;
  }
  .fs-xxl-20 {
    font-size: 20px !important;
  }
  .fs-xxl-22 {
    font-size: 22px !important;
  }
  .fs-xxl-24 {
    font-size: 24px !important;
  }
  .fs-xxl-26 {
    font-size: 26px !important;
  }
  .fs-xxl-28 {
    font-size: 28px !important;
  }
  .fs-xxl-30 {
    font-size: 30px !important;
  }
  .fs-xxl-32 {
    font-size: 32px !important;
  }
  .fs-xxl-34 {
    font-size: 34px !important;
  }
  .fs-xxl-36 {
    font-size: 36px !important;
  }
  .fs-xxl-38 {
    font-size: 38px !important;
  }
  .fs-xxl-40 {
    font-size: 40px !important;
  }
  .fs-xxl-42 {
    font-size: 42px !important;
  }
  .fs-xxl-44 {
    font-size: 44px !important;
  }
  .fs-xxl-46 {
    font-size: 46px !important;
  }
  .fs-xxl-48 {
    font-size: 48px !important;
  }
  .fs-xxl-50 {
    font-size: 50px !important;
  }
  .fs-xxl-52 {
    font-size: 52px !important;
  }
  .fs-xxl-54 {
    font-size: 54px !important;
  }
  .fs-xxl-56 {
    font-size: 56px !important;
  }
  .fs-xxl-58 {
    font-size: 58px !important;
  }
  .fs-xxl-60 {
    font-size: 60px !important;
  }
  .fs-xxl-62 {
    font-size: 62px !important;
  }
  .fs-xxl-64 {
    font-size: 64px !important;
  }
  .fs-xxl-66 {
    font-size: 66px !important;
  }
  .fs-xxl-68 {
    font-size: 68px !important;
  }
  .fs-xxl-70 {
    font-size: 70px !important;
  }
  .fs-xxl-72 {
    font-size: 72px !important;
  }
  .fs-xxl-74 {
    font-size: 74px !important;
  }
  .fs-xxl-76 {
    font-size: 76px !important;
  }
  .fs-xxl-78 {
    font-size: 78px !important;
  }
  .fs-xxl-80 {
    font-size: 80px !important;
  }
}
@media (max-width: 767px) {
  .fs-80 {
    font-size: 54px !important;
  }
  .fs-72 {
    font-size: 48px !important;
  }
  .fs-64 {
    font-size: 44px !important;
  }
  .fs-56 {
    font-size: 40px !important;
  }
  .fs-48 {
    font-size: 36px !important;
  }
  .fs-40 {
    font-size: 32px !important;
  }
  .fs-32 {
    font-size: 28px !important;
  }
}
@media (max-width: 425px) {
  .fs-80 {
    font-size: 48px !important;
  }
  .fs-72 {
    font-size: 42px !important;
  }
  .fs-64 {
    font-size: 38px !important;
  }
  .fs-56 {
    font-size: 32px !important;
  }
  .fs-48 {
    font-size: 28px !important;
  }
  .fs-40 {
    font-size: 24px !important;
  }
  .fs-32 {
    font-size: 20px !important;
  }
  .fs-24 {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  .fs-30 {
    font-size: 21px !important;
  }
  .fs-32 {
    font-size: 22.4px !important;
  }
  .fs-34 {
    font-size: 23.8px !important;
  }
  .fs-36 {
    font-size: 25.2px !important;
  }
  .fs-38 {
    font-size: 26.6px !important;
  }
  .fs-40 {
    font-size: 28px !important;
  }
  .fs-42 {
    font-size: 29.4px !important;
  }
  .fs-44 {
    font-size: 30.8px !important;
  }
  .fs-46 {
    font-size: 32.2px !important;
  }
  .fs-48 {
    font-size: 33.6px !important;
  }
  .fs-50 {
    font-size: 35px !important;
  }
  .fs-52 {
    font-size: 36.4px !important;
  }
  .fs-54 {
    font-size: 37.8px !important;
  }
  .fs-56 {
    font-size: 39.2px !important;
  }
  .fs-58 {
    font-size: 40.6px !important;
  }
  .fs-60 {
    font-size: 42px !important;
  }
  .fs-62 {
    font-size: 43.4px !important;
  }
  .fs-64 {
    font-size: 44.8px !important;
  }
  .fs-66 {
    font-size: 46.2px !important;
  }
  .fs-68 {
    font-size: 47.6px !important;
  }
  .fs-70 {
    font-size: 49px !important;
  }
  .fs-72 {
    font-size: 50.4px !important;
  }
  .fs-74 {
    font-size: 51.8px !important;
  }
  .fs-76 {
    font-size: 53.2px !important;
  }
  .fs-78 {
    font-size: 54.6px !important;
  }
  .fs-80 {
    font-size: 56px !important;
  }
}
@media (max-width: 425px) {
  .fs-30 {
    font-size: 16.5px !important;
  }
  .fs-32 {
    font-size: 17.6px !important;
  }
  .fs-34 {
    font-size: 18.7px !important;
  }
  .fs-36 {
    font-size: 19.8px !important;
  }
  .fs-38 {
    font-size: 20.9px !important;
  }
  .fs-40 {
    font-size: 22px !important;
  }
  .fs-42 {
    font-size: 23.1px !important;
  }
  .fs-44 {
    font-size: 24.2px !important;
  }
  .fs-46 {
    font-size: 25.3px !important;
  }
  .fs-48 {
    font-size: 26.4px !important;
  }
  .fs-50 {
    font-size: 27.5px !important;
  }
  .fs-52 {
    font-size: 28.6px !important;
  }
  .fs-54 {
    font-size: 29.7px !important;
  }
  .fs-56 {
    font-size: 30.8px !important;
  }
  .fs-58 {
    font-size: 31.9px !important;
  }
  .fs-60 {
    font-size: 33px !important;
  }
  .fs-62 {
    font-size: 34.1px !important;
  }
  .fs-64 {
    font-size: 35.2px !important;
  }
  .fs-66 {
    font-size: 36.3px !important;
  }
  .fs-68 {
    font-size: 37.4px !important;
  }
  .fs-70 {
    font-size: 38.5px !important;
  }
  .fs-72 {
    font-size: 39.6px !important;
  }
  .fs-74 {
    font-size: 40.7px !important;
  }
  .fs-76 {
    font-size: 41.8px !important;
  }
  .fs-78 {
    font-size: 42.9px !important;
  }
  .fs-80 {
    font-size: 44px !important;
  }
}
.navbar {
  position: relative;
  z-index: 9999 !important;
  height: 80px;
  transition: height 0.3s ease;
  font-family: inherit;
  background-color: #1e5b4f !important;
  line-height: 85%;
  position: fixed;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 100;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}
.navbar .container {
  width: 1440px;
  max-width: 1440px;
}
.navbar .container .navbar-collapse {
  position: relative;
}
.navbar .container .navbar-collapse .nav-pills {
  position: absolute !important;
  right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .navbar .container {
    width: 100%;
    max-width: auto;
  }
  .navbar .container .navbar-collapse {
    position: relative;
  }
  .navbar .container .navbar-collapse .nav-pills {
    position: relative !important;
  }
}

@media (max-width: 767px) {
  .navbar {
    height: 56px;
  }
  .navbar #GobnavbarPrincipal {
    display: none;
  }
  .navbar .navbar-brand {
    margin-top: -20px;
    margin-left: -15px;
  }
  .navbar .navbar-toggler {
    margin-top: -20px;
    margin-left: -5px;
  }
}
.sub-navbar {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9997;
  background-color: #ffffff !important;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.04);
  height: 75px;
  display: flex;
  align-items: center;
  margin-top: 80px !important;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
  /* Ajuste móvil */
  /* ---------- ÁREAS DE GRID ---------- */
  /* ---------- CONTENEDOR PRINCIPAL ---------- */
}
@media (max-width: 1248px) {
  .sub-navbar {
    padding: 2.5rem 1rem 2rem 2.5rem;
    height: auto;
  }
}
@media (max-width: 767px) {
  .sub-navbar {
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    padding: 1.5rem 1rem 2rem 1.5rem;
    margin-top: 56px !important;
  }
}
@media (max-width: 430px) {
  .sub-navbar {
    padding: 1.25rem 0.75rem 1rem 1.25rem;
    margin-top: 56px !important;
  }
}
@media (max-width: 320px) {
  .sub-navbar {
    padding: 0.75rem 0.5rem 0.75rem 0.75rem;
    margin-top: 56px !important;
  }
}
.sub-navbar #section-navbar-1 {
  grid-area: nav1;
}
.sub-navbar #section-navbar-2 {
  grid-area: nav2;
}
.sub-navbar #section-navbar-3 {
  grid-area: nav3;
}
.sub-navbar #section-navbar-4 {
  grid-area: nav4;
}
.sub-navbar .sub-navbar-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: "nav1 nav2 nav3 nav4";
  align-items: center;
  gap: 1.5rem;
  /* ---------- TABLET ---------- */
  /* ---------- MÓVIL ---------- */
}
@media (max-width: 1248px) {
  .sub-navbar .sub-navbar-container {
    grid-template-columns: 1fr auto auto;
    grid-template-areas: "nav1 nav3 nav4" "nav2 nav2 nav2";
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  .sub-navbar .sub-navbar-container {
    grid-template-columns: 1fr auto;
    grid-template-areas: "nav1 nav4" "nav2 nav2" "nav3 nav3";
    gap: 1rem;
  }
}
@media (max-width: 767px) and (max-width: 430px) {
  .sub-navbar .sub-navbar-container {
    gap: 0.8rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo .logo-img {
  width: 78px;
  object-fit: contain;
}
.logo .logo-title {
  color: #161a1d;
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  text-wrap: nowrap;
}
@media (max-width: 540px) {
  .logo .logo-img {
    width: 56px;
  }
  .logo .logo-title {
    font-size: 16px;
    font-weight: 800;
    text-wrap: nowrap;
  }
}
@media (max-width: 300px) {
  .logo .logo-img {
    width: 48px;
  }
  .logo .logo-title {
    font-size: 14px;
    font-weight: 600;
    text-wrap: wrap;
  }
}

.search-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-buttons .home-search-box {
  flex: 1;
}
.search-buttons .code-buttons {
  max-width: 308px;
  gap: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-buttons .code-buttons .btn-primary {
  flex: 1;
  width: 150px;
  height: 40px;
}
@media (max-width: 430px) {
  .search-buttons .code-buttons {
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }
  .search-buttons .code-buttons .btn-primary {
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    height: 40px;
    font-size: 14px;
    text-wrap: pretty !important;
    line-height: 1 !important;
    font-size: clamp(14px, 2.5vw, 16px) !important;
  }
}
@media (max-width: 767px) {
  .search-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .search-buttons .home-search-box {
    width: 100%;
  }
}

.btn-shopping-cart {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 700 !important;
  letter-spacing: 0px !important;
}
.btn-shopping-cart svg {
  width: 26.021px;
  height: 22px;
  flex-shrink: 0;
  color: #1e5b4f;
}
.btn-shopping-cart .counter {
  display: inline-flex;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  width: auto;
  letter-spacing: 0 !important;
  white-space: nowrap;
  font-size: inherit;
  font-weight: 700;
}
.btn-shopping-cart .counter span {
  padding: 0px;
  font-weight: 700;
  font-size: inherit;
}

.main-footer {
  background-color: #1e5b4f !important;
}

.main-footer {
  position: relative;
  z-index: 9996 !important;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-box {
  width: 100%;
  padding: 9px 16px 9px 42px;
  border: 1px solid #ddd;
  border-radius: 100px;
  font-size: clamp(14px, 1vw, 18px);
  background: #f9f9f9;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'><path d='M20.718 19.217L15.0539 13.5529C16.4149 11.919 17.0936 9.82316 16.9488 7.70152C16.8039 5.57989 15.8467 3.59577 14.2763 2.16191C12.7058 0.728055 10.643 -0.0451394 8.51696 0.00317259C6.39093 0.0514846 4.36538 0.917583 2.86167 2.4213C1.35795 3.92501 0.491853 5.95056 0.443541 8.07659C0.395229 10.2026 1.16842 12.2654 2.60228 13.8359C4.03613 15.4064 6.02026 16.3636 8.14189 16.5084C10.2635 16.6532 12.3593 15.9745 13.9933 14.6135L19.6574 20.2776L20.718 19.217ZM1.96795 8.27758C1.96795 6.94256 2.36383 5.63752 3.10553 4.52748C3.84723 3.41745 4.90144 2.55229 6.13484 2.0414C7.36824 1.5305 8.72544 1.39683 10.0348 1.65728C11.3442 1.91773 12.5469 2.56061 13.4909 3.50461C14.4349 4.44862 15.0778 5.65135 15.3383 6.96072C15.5987 8.27009 15.465 9.62729 14.9541 10.8607C14.4432 12.0941 13.5781 13.1483 12.4681 13.89C11.358 14.6317 10.053 15.0276 8.71795 15.0276C6.92835 15.0256 5.21261 14.3138 3.94717 13.0484C2.68173 11.7829 1.96994 10.0672 1.96795 8.27758Z' fill='%23161A1D'/></svg>");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 16px center;
  transition: padding 0.2s ease;
}
.search-box.has-clear-btn {
  padding-right: 32px;
}

.search-clear-btn {
  background-color: red;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: clamp(18px, 1vw, 24px);
  line-height: 1;
  color: #666;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}
.search-clear-btn:hover {
  color: #333;
}
.search-clear-btn:focus {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
  border-radius: 4px;
}

.btn-primary {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer !important;
  transition: all 300ms;
  background-color: transparent !important;
  color: #1e5b4f !important;
  border: 1px solid #1e5b4f !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #f0eced !important;
  border-color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !important;
  color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !important;
  transition: all 300ms;
}
.btn-primary.active {
  background: #1e5b4f !important;
  color: #ffffff !important;
  border-color: #1e5b4f !important;
  box-shadow: none !important;
}
.btn-primary.active:hover, .btn-primary.active:focus {
  background-color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !important;
  border-color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !important;
  color: #ffffff !important;
  transition: all 300ms;
}
.btn-primary:disabled, .btn-primary.disabled {
  background-color: transparent;
  border-color: #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
}

.btn-cherry {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer !important;
  transition: all 300ms;
  background-color: transparent !important;
  color: #7a1125 !important;
  border: 1px solid #7a1125 !important;
}
.btn-cherry:hover, .btn-cherry:focus {
  background-color: #f0eced !important;
  border-color: rgb(86.1899280576, 12.0100719424, 26.1395683453) !important;
  color: rgb(86.1899280576, 12.0100719424, 26.1395683453) !important;
  transition: all 300ms;
}
.btn-cherry.active {
  background: #7a1125 !important;
  color: #ffffff !important;
  border-color: #7a1125 !important;
  box-shadow: none !important;
}
.btn-cherry.active:hover, .btn-cherry.active:focus {
  background-color: rgb(86.1899280576, 12.0100719424, 26.1395683453) !important;
  border-color: rgb(86.1899280576, 12.0100719424, 26.1395683453) !important;
  color: #ffffff !important;
  transition: all 300ms;
}
.btn-cherry:disabled, .btn-cherry.disabled {
  background-color: transparent;
  border-color: #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
}

.btn-secondary {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: all 300ms;
  background-color: transparent;
  color: #009982 !important;
  border: 1px solid #009982 !important;
  box-shadow: none !important;
}
.btn-secondary:focus {
  background-color: transparent;
}
.btn-secondary:hover {
  background-color: rgb(0, 112.2, 95.3333333333) !important;
  border-color: rgb(0, 112.2, 95.3333333333) !important;
  color: #ffffff !important;
  transition: all 300ms;
}
.btn-secondary:active {
  background-color: rgb(0, 112.2, 95.3333333333) !important;
  color: #ffffff !important;
  transition: all 300ms;
}
.btn-secondary.active {
  background: #009982 !important;
  color: #ffffff !important;
  border-color: #009982 !important;
}
.btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active:active {
  background-color: rgb(0, 112.2, 95.3333333333) !important;
  border-color: rgb(0, 112.2, 95.3333333333) !important;
  transition: all 300ms;
}
.btn-secondary:disabled, .btn-secondary.disabled {
  background-color: transparent;
  border-color: #e0e0e0;
  color: #9e9e9e;
  cursor: not-allowed;
}

.btn-link {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  cursor: pointer;
  gap: 6px;
  font-weight: 600;
  font-size: 16px;
  padding: 4px 6px;
  color: #aaaaaa !important;
  background: transparent;
  border: none !important;
  outline: none !important;
  border-style: none !important;
  box-shadow: none !important;
}
.btn-link.active,
.btn-link :active {
  color: #1e5b4f !important;
}
.btn-link:visited {
  color: #1e5b4f !important;
  text-decoration: none !important;
}
.btn-link:hover, .btn-link:focus {
  text-decoration: none;
  background-color: transparent !important;
  color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !important;
  border: none !important;
  outline-color: none !important;
  border-style: none !important;
  box-shadow: none !important;
}
.btn-link:disabled, .btn-link.disabled {
  color: #9e9e9e;
  cursor: not-allowed;
}
.btn-link:disabled svg, .btn-link.disabled svg {
  stroke: #9e9e9e;
}

/* Botón principal de filtros */
.filter-container {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0rem, 2vw, 4rem);
}

@media (max-width: 1020px) {
  .filter-container {
    overflow-x: none;
    display: block;
    gap: 0;
  }
}
.dropdown-container {
  width: 100%;
  height: auto;
  display: flex !important;
  gap: 1.5rem;
  padding: 0.5rem 0;
  overflow-x: scroll;
  overflow-y: visible !important;
  -webkit-overflow-scrolling: touch;
  /* Estilos personalizados para la scrollbar */
  /* Estilizado de cada dropdown */
}
.dropdown-container::-webkit-scrollbar {
  height: 6px;
}
.dropdown-container::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 10px;
  cursor: all-scroll;
}
.dropdown-container::-webkit-scrollbar-thumb {
  background: #d7d7d7;
  border-radius: 10px;
}
.dropdown-container::-webkit-scrollbar-thumb:hover {
  background: #adadad;
}
@media (max-width: 576px) {
  .dropdown-container {
    gap: 0.75rem;
  }
}
.dropdown-container .dropdown {
  position: static;
  /* Cuando Popper está activo, Bootstrap añade [data-bs-popper] al menú */
}
.dropdown-container .dropdown .dropdown-menu[data-bs-popper] {
  position: fixed !important;
  z-index: 2147483647 !important;
}
.dropdown-container .dropdown .dropdown-toggle {
  min-width: 136px !important;
  position: relative;
  border-radius: 2rem;
  background: #fff;
  border: 1px solid #ccc;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  padding: 8px 42px 8px 16px;
  white-space: nowrap;
}
.dropdown-container .dropdown .dropdown-toggle:hover, .dropdown-container .dropdown .dropdown-toggle:focus {
  background-color: #fff !important;
  border: 1px solid #161a1d !important;
  outline: none !important;
  box-shadow: none !important;
}
.dropdown-container .dropdown .dropdown-toggle:after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M12 16.5L4.5 9.00001L5.55 7.95001L12 14.4L18.45 7.95001L19.5 9.00001L12 16.5Z' fill='%23161A1D'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
}
.dropdown-container .dropdown .dropdown-menu {
  min-width: 200px;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  border: 1px solid #161a1d;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15) !important;
  line-height: 2;
}
.dropdown-container .dropdown .dropdown-menu .dropdown--title {
  list-style: none;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0.5rem;
}
.dropdown-container .dropdown .dropdown-menu .dropdown--title .dropdown--title-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.25rem 0;
}
.dropdown-container .dropdown .dropdown-menu .dropdown--title .dropdown--title-content b {
  font-size: 16px;
  color: #161a1d;
}
.dropdown-container .dropdown .dropdown-menu .dropdown--title .dropdown--title-content .dropdown-title-clear {
  font-size: 20px;
  color: #797979;
  font-weight: 400;
  line-height: 1;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
}
.dropdown-container .dropdown .dropdown-menu .dropdown--title .dropdown--title-content .dropdown-title-clear:hover {
  color: #161a1d;
  background-color: #f0f0f0;
}
.dropdown-container .dropdown .dropdown-menu li.selected {
  background-color: #ebebeb;
  border-radius: 0.5rem;
}
.dropdown-container .dropdown .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 400;
  color: #222 !important;
}
.dropdown-container .dropdown .dropdown-menu .dropdown-item:hover, .dropdown-container .dropdown .dropdown-menu .dropdown-item:focus {
  color: #909090 !important;
  background: transparent !important;
}

.cs-pagination {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cs-pagination .pagination .page-item .page-link {
  background-color: transparent;
  color: #222222;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 500;
  margin: 0 2px;
  transition: background-color 0.2s, color 0.2s;
}
.cs-pagination .pagination .page-item.disabled {
  filter: grayscale(100%);
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.5;
}
.cs-pagination .pagination .page-item.active .page-link {
  background-color: #1e5b4f;
  color: #ffffff;
  font-weight: 600;
}
.cs-pagination .pagination .page-item:hover .page-link {
  background-color: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
  color: #ffffff;
}
.cs-pagination .pagination .page-item .page-link-previous,
.cs-pagination .pagination .page-item .page-link-next {
  background: none;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e5b4f;
}
.cs-pagination .pagination .page-item .page-link-previous .page-link-text,
.cs-pagination .pagination .page-item .page-link-next .page-link-text {
  opacity: 0.9;
  text-decoration: underline;
}
.cs-pagination .pagination .page-item .page-link-previous .page-link-icon,
.cs-pagination .pagination .page-item .page-link-next .page-link-icon {
  text-decoration: none;
  flex-shrink: 0;
}
.cs-pagination .pagination .page-item .page-link-previous.disabled,
.cs-pagination .pagination .page-item .page-link-next.disabled {
  filter: grayscale(100%);
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.5;
}
.cs-pagination .pagination .page-item .page-link-previous:hover,
.cs-pagination .pagination .page-item .page-link-next:hover {
  color: rgb(23.6776859504, 71.8223140496, 62.3512396694) !important;
}
@media (max-width: 576px) {
  .cs-pagination .pagination {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .cs-pagination .page-item .page-link {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}

.catalog .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* <- fuerza altura pareja */
}
.catalog .row .col-12,
.catalog .row .col-md-6,
.catalog .row .col-lg-4 {
  display: flex;
}
.catalog .card {
  display: flex;
  flex: 1 1 auto; /* se estira */
  width: 100%;
  max-width: 427px;
  width: 100%;
  margin: 2rem auto;
  min-height: 370px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-radius: 16px;
  background: #fff;
  border: none;
  overflow: hidden;
}
.catalog .card .card-image {
  width: 100%;
  min-height: 182px;
  max-height: 231px;
  margin-bottom: clamp(8px, 1vw, 16px);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.catalog .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog .card .card-body {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
.catalog .card .card-body h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #161a1d;
  margin: 0px;
  padding: 0px;
}
.catalog .card .card-body p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: #767676;
  margin: 0px;
}
.catalog .card .v-card-buttons {
  text-align: right;
  width: 100%;
  padding: 0;
  margin: 0;
}
.catalog .card .v-card-actions {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}
.catalog .card-body,
.catalog .v-card-buttons,
.catalog .v-card-actions {
  width: 100%;
  padding: 0;
}
@media (max-width: 460px) {
  .catalog .card {
    max-width: 100%;
  }
  .catalog .card .card-image {
    width: 100%;
    min-height: 182px;
    max-height: 231px;
    margin-bottom: clamp(8px, 1vw, 16px);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }
  .catalog .card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .catalog .card .card-body {
    width: 100%;
    display: block !important;
  }
  .catalog .card .v-card-buttons {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 1rem 0 !important;
    margin: 0 !important;
    gap: 6px;
    width: 100%;
  }
  .catalog .card .v-card-buttons > * {
    margin: 0 !important;
  }
  .catalog .card .v-card-buttons > *:first-child {
    order: 2;
    width: 100%;
    text-wrap: wrap !important;
    font-size: 14px;
    line-height: 1.25;
  }
  .catalog .card .v-card-buttons > *:last-child {
    order: 1;
    font-size: 14px;
    line-height: 1.25;
  }
}
@media (max-width: 320px) {
  .catalog .v-card-buttons > *:last-child {
    text-wrap: wrap !important;
  }
}

.detail {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: none;
  outline: none;
  padding: 24px;
  gap: 24px;
}
.detail .card-outlined {
  width: 100%;
  padding: 16px;
  gap: 24px;
  border: 1px solid #dddddd;
  border-radius: 8px !important;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.detail .card-outlined .card-image {
  width: 351px;
  min-height: 182px;
  max-height: 231px;
  border-radius: 8px 0px 0px 8px !important;
  overflow: hidden;
}
.detail .card-outlined .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px !important;
  transform: scale(1.01) !important;
}
.detail .card-outlined .card-info {
  width: 547px;
}
.detail .card-outlined .card-info .card-info-title {
  margin: 0;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  color: #161a1d;
}
.detail .card-outlined .card-info .card-info-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #161a1d;
}
.detail .card-outlined .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.detail .card-outlined .card-body h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #161a1d;
  margin: 0px;
}
@media (max-width: 767px) {
  .detail {
    max-width: 488px;
    margin: 0 auto;
  }
  .detail .card-outlined {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    gap: 10px;
  }
  .detail .card-outlined .card-image {
    width: 100%;
    min-height: 182px;
    max-height: 231px;
    border-radius: 8px 8px 0px 0px !important;
    overflow: hidden;
  }
  .detail .card-outlined .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0px !important;
  }
  .detail .card-outlined .card-info {
    width: 100%;
  }
  .detail .card-outlined .card-info .card-info-title {
    margin: 0;
    font-family: "Noto Sans", sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: #161a1d;
  }
  .detail .card-outlined .card-info .card-info-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #161a1d;
  }
  .detail .card-outlined .card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .detail .card-outlined .card-body h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #161a1d;
    margin: 0px;
  }
}
@media (max-width: 430px) {
  .detail {
    gap: 0px;
    padding: 16px 12px !important;
  }
  .detail .card-outlined {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #dddddd;
    gap: 6px;
  }
}

.home-carousel {
  width: 100%;
  padding: 45px 0;
  overflow: hidden;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%), radial-gradient(309.81% 48.54% at 56.67% 50%, rgba(106, 137, 136, 0.89) 12%, var(--Terciarios-Green-500, rgba(30, 91, 79, 0.89)) 100%);
  color: white;
}
.home-carousel .carousel-info {
  width: 100%;
  padding-right: 2rem;
}
.home-carousel .carousel-info .description {
  position: relative;
  width: 100%;
}
.home-carousel .carousel-info .description p {
  max-width: 499px;
  padding: 24px 8px;
}
.home-carousel .carousel-info .description::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .home-carousel .carousel-info .description {
    margin-bottom: 2rem;
    border-bottom: 1px solid #fff !important;
  }
  .home-carousel .carousel-info .description::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .home-carousel .carousel-info {
    padding-right: 0;
  }
}
.home-carousel .my-carousel {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 488px;
}
.home-carousel .my-carousel .carousel-card {
  margin: 0 auto;
  width: 100%;
  max-width: 488px;
  user-select: none;
  background: white;
  border-radius: 4rem;
  overflow: hidden;
  box-shadow: none;
  outline: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.home-carousel .my-carousel .carousel-card .carousel-card-image {
  flex: 1;
  width: 100%;
  overflow: hidden;
}
.home-carousel .my-carousel .carousel-card .carousel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-carousel .my-carousel .carousel-card .carousel-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 8px;
}
.home-carousel .my-carousel .carousel-card .carousel-card-content .btn-link {
  text-decoration: underline !important;
}
.home-carousel .my-carousel .carousel-prev,
.home-carousel .my-carousel .carousel-next {
  position: absolute;
  z-index: 10 !important;
  color: rgba(255, 255, 255, 0.6901960784) !important;
  top: 50%;
  font-size: 36px !important;
  transform: translateY(-50%);
}
.home-carousel .my-carousel .carousel-prev:focus, .home-carousel .my-carousel .carousel-prev:hover,
.home-carousel .my-carousel .carousel-next:focus,
.home-carousel .my-carousel .carousel-next:hover {
  color: white !important;
}
@media (max-width: 767px) {
  .home-carousel .my-carousel .carousel-prev,
  .home-carousel .my-carousel .carousel-next {
    font-size: 20px !important;
  }
}
.home-carousel .my-carousel .carousel-prev {
  left: -40px;
}
@media (max-width: 767px) {
  .home-carousel .my-carousel .carousel-prev {
    left: -30px;
  }
}
.home-carousel .my-carousel .carousel-next {
  right: -50px;
}
@media (max-width: 767px) {
  .home-carousel .my-carousel .carousel-next {
    right: -35px;
  }
}

.badge {
  display: inline-flex;
  height: 24px;
  min-width: 72px;
  padding: 4px 12px 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 75px;
  font-size: 10.5px;
  font-weight: 600;
  border: 1px solid transparent;
}
.badge-web {
  background-color: #e6f0ff;
  color: #155bc4;
  border-color: #155bc4;
}
.badge-app {
  background-color: #f6eaff;
  color: #7d1dd8;
  border-color: #7d1dd8;
}
.badge-gob {
  background-color: #e9f6e9;
  color: #2a872a;
  border-color: #2a872a;
}
.badge-citizen {
  background-color: #fff5ec;
  color: #e67e16;
  border-color: #e67e16;
}
.badge-key {
  background-color: #fff8da;
  color: #002f2a;
  border-color: #002f2a;
  padding: 0 16px;
}

.user-dropdown {
  position: relative;
  display: inline-block;
}
.user-dropdown .user-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.user-dropdown .user-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
.user-dropdown .user-toggle .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1e5b4f 44.23%, #002f2a 100%);
  border: 2px solid #f1eced;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.user-dropdown .user-toggle .user-name {
  color: #161a1d;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  flex-shrink: 0;
  min-width: 0;
  text-align: left;
  text-wrap: pretty;
  max-width: clamp(80px, 20vw, 150px);
}
.user-dropdown .user-toggle .chevron {
  transition: transform 0.3s ease;
}
.user-dropdown .user-toggle .chevron path {
  fill: #1e5b4f;
}
.user-dropdown .user-toggle.active .chevron {
  transform: rotate(180deg);
}
.user-dropdown .user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.user-dropdown .user-menu li {
  margin: 0;
}
.user-dropdown .user-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.2s ease;
}
.user-dropdown .user-menu li a:hover {
  background-color: #f5f5f5;
}
.user-dropdown.open .user-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .user-dropdown .user-toggle {
    gap: 6px;
    padding: 6px 4px;
  }
  .user-dropdown .user-toggle .user-avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .user-dropdown .user-toggle .user-name {
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .llavemx-text {
    display: none;
  }
}