@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: #611232 !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: #611232 !important;
  box-shadow: none !important;
  outline: none !important;
}
input[type=checkbox]:checked {
  background-color: transparent;
  border-color: #611232;
  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: #611232 !important;
  box-shadow: none !important;
  outline: none !important;
}
input[type=radio]:checked {
  border-color: #611232;
  background-color: #611232 !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: #611232;
  pointer-events: none;
}
@media (max-width: 767px) {
  body::before {
    height: 56px;
  }
}

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

.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 374px) {
  .container-fluid {
    max-width: 374px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .container-fluid {
    max-width: 767px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container-fluid {
    max-width: 1023px;
    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: 1440px) {
  .container-fluid {
    max-width: 1440px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.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;
}

.avatar {
  --size: 60px; /* tamaño default */
  min-width: var(--size) !important;
  min-height: var(--size) !important;
  width: var(--size) !important;
  height: var(--size) !important;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden; /* esto recorta la imagen dentro del círculo */
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #611232; /* solo para cuando no hay imagen */
  border: 1px solid #ffffff;
}
.avatar img {
  width: 60%; /* por default ocupa el ancho del contenedor */
  height: 60%;
  object-fit: contain; /* mantiene proporciones sin deformar */
  display: block;
}

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

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

.text-strong-primary {
  color: #4a0e27 !important;
}

.bg-strong-primary {
  background-color: #4a0e27 !important;
}

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

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

.text-strong-secondary {
  color: #13322e !important;
}

.bg-strong-secondary {
  background-color: #13322e !important;
}

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

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

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

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

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

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

.text-strong-gold {
  color: #8a6c23 !important;
}

.bg-strong-gold {
  background-color: #8a6c23 !important;
}

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

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

.text-black {
  color: #000000 !important;
}

.bg-black {
  background-color: #000000 !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;
  }
}
.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;
  gap: 6px;
  cursor: pointer !important;
  transition: all 300ms;
  background-color: transparent !important;
  color: #611232 !important;
  border: 1px solid #611232 !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #f0eced !important;
  border-color: rgb(62.5860869565, 11.6139130435, 32.2608695652) !important;
  color: rgb(62.5860869565, 11.6139130435, 32.2608695652) !important;
  transition: all 300ms;
}
.btn-primary.active {
  background: #611232 !important;
  color: #ffffff !important;
  border-color: #611232 !important;
  box-shadow: none !important;
}
.btn-primary.active:hover, .btn-primary.active:focus {
  background-color: rgb(62.5860869565, 11.6139130435, 32.2608695652) !important;
  border-color: rgb(62.5860869565, 11.6139130435, 32.2608695652) !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-secondary {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  gap: 6px;
  cursor: pointer;
  transition: all 300ms;
  background-color: transparent;
  color: #1e5b4f !important;
  border: 1px solid #1e5b4f !important;
  box-shadow: none !important;
}
.btn-secondary:focus {
  background-color: transparent;
}
.btn-secondary:hover {
  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-secondary:active {
  background-color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !important;
  color: #ffffff !important;
  transition: all 300ms;
}
.btn-secondary.active {
  background: #1e5b4f !important;
  color: #ffffff !important;
  border-color: #1e5b4f !important;
}
.btn-secondary.active:hover, .btn-secondary.active:focus, .btn-secondary.active:active {
  background-color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !important;
  border-color: rgb(19.8842975207, 60.3157024793, 52.3619834711) !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: #98989a !important;
  background: transparent;
  border: none !important;
  outline: none !important;
  border-style: none !important;
  box-shadow: none !important;
}
.btn-link.active,
.btn-link :active {
  color: #611232 !important;
}
.btn-link:visited {
  color: #611232 !important;
  text-decoration: none !important;
}
.btn-link:hover, .btn-link:focus {
  text-decoration: none;
  background-color: transparent !important;
  color: rgb(62.5860869565, 11.6139130435, 32.2608695652) !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;
}

.navbar {
  position: relative;
  z-index: 9999 !important;
  height: 80px;
  transition: height 0.3s ease;
  font-family: inherit;
  background-color: #611232 !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;
}

@media (max-width: 767px) {
  .navbar {
    height: 60px;
  }
  .navbar #GobnavbarPrincipal {
    display: none;
  }
  .navbar .navbar-brand {
    margin-top: -20px;
    margin-left: -15px;
  }
  .navbar .navbar-toggler {
    margin-top: -20px;
    margin-left: -15px;
  }
}
/* ======= SUB NAVBAR ======= */
.cs-subnavbar-gobmx {
  position: relative;
  z-index: 9997 !important;
}
.cs-subnavbar-gobmx .sub-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-top: 80px !important;
  transition: margin-top 0.3s ease;
  height: 51px;
  background-color: #434343 !important;
  text-align: center;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container {
  margin: 0 auto;
  max-width: 1170px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus::-webkit-scrollbar {
  display: none;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus .subnav-item {
  flex: 0 0 auto;
  margin-left: 1rem;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus .subnav-item .subnav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  height: 50px;
  padding: 0 1.25rem;
  color: #aaaaaa;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  text-decoration-line: none;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus .subnav-item .subnav-link.active {
  color: #ffffff !important;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus .subnav-item .subnav-link:hover {
  color: #ffffff;
  text-decoration-line: none;
}

@media (max-width: 767px) {
  .cs-subnavbar-gobmx .sub-navbar {
    margin-top: 56px !important;
    height: 50px;
  }
}
.main-footer {
  position: relative;
  z-index: 9996 !important;
}

.primary-tabs {
  --tab-color: #404041;
  --tab-bg: #f5f5f5;
  --tab-hover-bg: lighten($value, 20%);
  --tab-border: lighten($value, 35%);
  --tab-active-color: #fff;
  --tab-active-bg: #611232;
  --tab-active-border: #611232;
}

.strong-primary-tabs {
  --tab-color: #404041;
  --tab-bg: #f5f5f5;
  --tab-hover-bg: lighten($value, 20%);
  --tab-border: lighten($value, 35%);
  --tab-active-color: #fff;
  --tab-active-bg: #4a0e27;
  --tab-active-border: #4a0e27;
}

.secondary-tabs {
  --tab-color: #404041;
  --tab-bg: #f5f5f5;
  --tab-hover-bg: lighten($value, 20%);
  --tab-border: lighten($value, 35%);
  --tab-active-color: #fff;
  --tab-active-bg: #1e5b4f;
  --tab-active-border: #1e5b4f;
}

.strong-secondary-tabs {
  --tab-color: #404041;
  --tab-bg: #f5f5f5;
  --tab-hover-bg: lighten($value, 20%);
  --tab-border: lighten($value, 35%);
  --tab-active-color: #fff;
  --tab-active-bg: #13322e;
  --tab-active-border: #13322e;
}

/* 🎯 Base para todos los tabs */
.cs-nav-tabs {
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.cs-nav-tabs.full-tab {
  max-width: none;
}
.cs-nav-tabs.lg-tab {
  max-width: 1124px;
}
.cs-nav-tabs.md-tab {
  max-width: 768px;
}
.cs-nav-tabs.sm-tab {
  max-width: 640px;
}
.cs-nav-tabs .nav-tabs {
  display: flex;
  width: 100%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.cs-nav-tabs .nav-tabs .nav-item {
  flex: 1 1 0;
  display: flex;
}
.cs-nav-tabs .nav-tabs .nav-item:first-child .nav-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cs-nav-tabs .nav-tabs .nav-item:last-child .nav-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cs-nav-tabs .nav-tabs .nav-item:not(:first-child):not(:last-child) .nav-link {
  border-left: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
}
.cs-nav-tabs .nav-tabs .nav-link {
  flex: 1;
  display: block;
  text-align: center;
  min-height: 57px;
  padding: 0.5rem 8px;
  line-height: 1.1 !important;
  letter-spacing: 0;
  border: none;
  background-color: #d9d9d9;
  color: var(--tab-color, #434343);
  font-size: 16px;
  font-weight: 500;
  color: #161a1d;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  border-radius: 0;
  text-decoration: none;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cs-nav-tabs .nav-tabs .nav-link {
    padding: 0.5rem 16px;
  }
}
.cs-nav-tabs .nav-tabs .nav-link:hover {
  background-color: #c7c7c7;
  text-decoration: none;
}
.cs-nav-tabs .nav-tabs .nav-link.active {
  color: white;
  text-shadow: 0 0 0.6px currentColor, 0 0 0.6px currentColor;
  background-color: #145c52;
  cursor: default;
}

.mobile-nav-tab {
  width: 100%;
}
.mobile-nav-tab .mobile-dropdown {
  width: 100%;
  background-color: var(--tab-active-bg, #145c52);
  color: var(--tab-active-color, #fff);
  font-size: 20px;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  border: none;
  /* Oculta flecha nativa */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Flecha personalizada */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='25' viewBox='0 0 24 25' fill='none'><g clip-path='url(%23clip0_7080_4260)'><path d='M12 16.9992L4.5 9.49922L5.55 8.44922L12 14.8992L18.45 8.44922L19.5 9.49922L12 16.9992Z' fill='white'/></g><defs><clipPath id='clip0_7080_4260'><rect width='24' height='24' fill='white' transform='translate(0 0.5)'/></clipPath></defs></svg>");
  background-repeat: no-repeat;
  background-position: right 2rem center; /* mueve la flecha horizontalmente */
  background-size: 2rem auto;
}

.tab-content {
  border: 0px !important;
  border-top: none;
  padding: 2.5rem 0;
}

/* ESTILOS BASE PARA TODAS LAS CARDS EN WEB */
.service-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  min-height: 320px;
  border-radius: 20px;
  color: white;
  position: relative;
}
.service-card .service-card-content {
  padding: 2rem 4rem 0 4rem;
}
.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}
.service-card-title {
  text-align: left;
}
.service-card-body {
  margin-top: 1rem;
  margin-bottom: 5rem;
}
.service-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-img figure {
  margin: 0;
}
.service-card-img img {
  max-width: 100%;
  max-height: 300px;
  height: auto;
  object-fit: contain;
}
.service-card:hover {
  text-decoration: none;
}

/* TARJETA FULL-WIDTH EN WEB */
.full-width-card {
  background: linear-gradient(77deg, #2c413f 11.83%, #607775 89.92%);
  padding: 0;
  display: flex;
  align-items: stretch;
  /* Invertir orden en desktop: imagen primero, contenido después */
}
.full-width-card .service-card-img {
  max-width: 654px;
  flex-shrink: 0;
  height: auto;
}
.full-width-card .service-card-img figure {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.full-width-card .service-card-img figure img {
  width: 100%;
  max-height: 100%;
  object-position: center center;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .full-width-card.inverted {
    flex-direction: row-reverse;
  }
}

.small-width-card {
  background: linear-gradient(77deg, #3b3939 11.83%, #979696 89.92%);
  color: white;
}

.middle-width-card {
  background: linear-gradient(77deg, #396560 11.83%, #799491 89.92%);
  color: white;
}

/* MÓVIL */
@media (max-width: 767px) {
  .service-card {
    flex-direction: column;
    min-height: 230px;
  }
  .service-card .service-card-content {
    padding: 2.5rem;
  }
  .service-card-body {
    margin-bottom: 0;
  }
  .service-card-img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
  }
  .service-card-img img {
    max-height: 150px;
    width: auto;
  }
  .full-width-card {
    background: linear-gradient(77deg, #2c413f 11.83%, #607775 89.92%);
  }
  .full-width-card .service-card-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: auto;
    z-index: 0;
    display: none;
  }
  .full-width-card .service-card-img img {
    height: 100%;
  }
}
@media (max-width: 430px) {
  .service-card .service-card-content {
    padding: 2rem;
  }
}
/* CARD CLICKEABLE */
.card-link-wrapper {
  text-decoration: none !important;
  color: inherit;
  display: block;
  height: 100%;
}
.card-link-wrapper:hover {
  text-decoration: none !important;
  text-decoration-line: none !important;
}
.card-link-wrapper:hover .service-card {
  transform: translateY(-4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* CARDS DESHABILITADAS */
.card-disabled {
  opacity: 0.9;
  position: relative;
}
.card-disabled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  pointer-events: none;
}

nav[aria-label=breadcrumb] {
  --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M16.5 12L8.99995 19.5L7.94995 18.45L14.4 12L7.94995 5.55L8.99995 4.5L16.5 12Z' fill='%23767676'/%3E%3C/svg%3E");
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}
.breadcrumb-item svg {
  width: 24px;
  height: 24px;
  display: block;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  content: var(--bs-breadcrumb-divider, "/") !important;
  margin: 0 0.5rem;
  margin-top: 3px;
}
.breadcrumb-item a {
  color: #767676;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-item.active {
  display: flex;
  align-items: center;
  color: #161a1d;
}

.hero-infotec {
  width: 100%;
  display: block;
  position: relative;
  background: linear-gradient(77deg, #607775 11.83%, #607775 89.92%);
  color: #fff;
  overflow: hidden;
}
.hero-infotec .hero-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 40px;
  /* este padding da altura al hero */
  text-align: center;
}
.hero-infotec .hero-content .hero-logos {
  max-width: 757px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-infotec .hero-content .hero-logos img {
  margin: 0 auto;
}
.hero-infotec .hero-content .hero-logos .hero-divider {
  width: 1px;
  height: 44px;
  background-color: #ffffff;
}
.hero-infotec .hero-content h1 {
  font-family: "Noto Sans", sans-serif !important;
}
.hero-infotec .hero-wave {
  width: 100%;
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  bottom: -1px;
  /* para evitar línea blanca */
  left: 0;
  width: 100%;
  height: 80px;
  /* ajusta la altura de la ola */
  display: block;
}
@media (max-width: 767px) {
  .hero-infotec .hero-content .hero-logos .hero-divider {
    width: 100%;
    height: 1px;
  }
  .hero-infotec .hero-wave {
    display: none;
  }
}

.projects h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: "Noto Sans", sans-serif !important;
}
.projects h2::before, .projects h2::after {
  margin-top: 4px;
  content: "";
  flex: 1;
  height: 4px;
  background: #dddddd;
}

.cs-external-link-card {
  display: flex;
  max-width: 882px;
  padding: 16px;
  align-items: center;
  gap: 4px;
  border-radius: 16px;
  background: #e5eaea;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  margin: 0 auto;
  margin-top: 3.5rem;
  text-decoration: none;
  cursor: pointer;
}
.cs-external-link-card span:first-child {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: #002f2a;
}
.cs-external-link-card span:last-child {
  display: flex;
  align-items: center;
}
.cs-external-link-card:hover {
  text-decoration: none;
  cursor: pointer;
}

.cs-slider {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 60px;
}
@media (max-width: 991px) {
  .cs-slider {
    padding: 20px 8px 20px 8px;
  }
}

.cs-slider-viewport {
  overflow: hidden;
  padding: 36px 0;
  margin: 0 -20px;
  /* Mobile */
  /* Tablet */
}
@media (max-width: 767px) {
  .cs-slider-viewport {
    padding: 16px 0;
    margin: 0 -8px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cs-slider-viewport {
    padding: 20px 0;
    margin: 0 -12px;
  }
}

.cs-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* 🔹 Slides responsive: mobile 1, tablet 2, desktop 3 */
.cs-slide {
  /* Mobile: 1 slide por vista */
  flex: 0 0 100%;
  padding: 0 8px;
  /* Tablet: 2 slides por vista */
  /* Desktop: 3 slides por vista */
}
@media (min-width: 768px) and (max-width: 991px) {
  .cs-slide {
    flex: 0 0 50%;
    padding: 0 16px;
  }
}
@media (min-width: 992px) {
  .cs-slide {
    flex: 0 0 33.3333333333%;
    padding: 0 16px;
  }
}
@media (min-width: 1280px) {
  .cs-slide {
    flex: 0 0 33.3333333333%;
    padding: 0 32px;
  }
}

.cs-slide-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 32px;
  text-align: center;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  margin: 0 auto;
}
.cs-slide-card .cs-slide-card-title {
  line-height: 1.6;
}
.cs-slide-card .cs-slide-card-title h3 {
  margin: 0;
  color: #002f2a;
  line-height: 28px;
}
.cs-slide-card .cs-slide-card-title h4 {
  margin-top: 6px;
  margin-bottom: 0px;
  color: #006157;
}
.cs-slide-card .divider {
  margin-top: 16px;
  margin-bottom: 16px;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #dddddd !important;
}
.cs-slide-card .cs-slide-card-img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  padding: 1rem 0;
  margin: 1.5rem auto;
}
.cs-slide-card .cs-btn-slide {
  display: flex;
  width: 183px;
  height: 44px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid #002622;
  color: #002622;
  background: #fff;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .cs-slide-card {
    padding: 24px 16px;
  }
}
@media (max-width: 767px) {
  .cs-slide-card {
    max-width: clamp(313px, 90%, 426px);
  }
}

/* Escala para tarjeta central SOLO en desktop */
/* Mobile y Tablet: sin escala */
@media (max-width: 991px) {
  .cs-slide.cs-center .cs-slide-card {
    transform: none;
  }
}
/* Desktop: escala completa para el slide del medio */
@media (min-width: 992px) {
  .cs-slide.cs-center .cs-slide-card {
    transform: scale(1.12);
    position: relative;
    z-index: 2;
  }
}
.cs-slider-actions {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #113b37;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 5;
  /* Ocultar solo en mobile */
  /* Tablet y Desktop: mostrar */
}
.cs-slider-actions:hover {
  background: #0c2a27;
}
.cs-slider-actions.cs-slider-prev {
  left: -4px;
}
.cs-slider-actions.cs-slider-next {
  right: -4px;
}
@media (max-width: 767px) {
  .cs-slider-actions {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cs-slider-actions {
    width: 40px;
    height: 40px;
  }
}

.cs-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.cs-slider-dots .cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}
.cs-slider-dots .cs-dot.active {
  width: 20px;
  border-radius: 40px;
  background: #113b37;
  transform: scale(1.2);
}
.cs-slider-dots .cs-dot:hover {
  background: #0c2a27;
}

.primary-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.5;
}
.primary-pagination .pagination .page-item .page-link {
  background-color: transparent;
  color: #000000;
  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;
}
.primary-pagination .pagination .page-item.disabled {
  filter: grayscale(100%);
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.5;
}
.primary-pagination .pagination .page-item.active .page-link {
  background-color: #611232;
  color: #ffffff;
  font-weight: 600;
}
.primary-pagination .pagination .page-item:hover .page-link {
  background-color: rgba(97, 18, 50, 0.75);
  color: #ffffff;
}
.primary-pagination .pagination .page-item .page-link-previous,
.primary-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: #000000;
}
.primary-pagination .pagination .page-item .page-link-previous .page-link-text,
.primary-pagination .pagination .page-item .page-link-next .page-link-text {
  opacity: 0.9;
  color: primary;
  text-decoration: underline;
}
.primary-pagination .pagination .page-item .page-link-previous .page-link-icon,
.primary-pagination .pagination .page-item .page-link-next .page-link-icon {
  text-decoration: none;
  flex-shrink: 0;
}
.primary-pagination .pagination .page-item .page-link-previous:hover,
.primary-pagination .pagination .page-item .page-link-next:hover {
  color: rgba(97, 18, 50, 0.75);
}
@media (max-width: 576px) {
  .primary-pagination .pagination {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .primary-pagination .page-item .page-link {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}

.strong-primary-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.5;
}
.strong-primary-pagination .pagination .page-item .page-link {
  background-color: transparent;
  color: #000000;
  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;
}
.strong-primary-pagination .pagination .page-item.disabled {
  filter: grayscale(100%);
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.5;
}
.strong-primary-pagination .pagination .page-item.active .page-link {
  background-color: #4a0e27;
  color: #ffffff;
  font-weight: 600;
}
.strong-primary-pagination .pagination .page-item:hover .page-link {
  background-color: rgba(74, 14, 39, 0.75);
  color: #ffffff;
}
.strong-primary-pagination .pagination .page-item .page-link-previous,
.strong-primary-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: #000000;
}
.strong-primary-pagination .pagination .page-item .page-link-previous .page-link-text,
.strong-primary-pagination .pagination .page-item .page-link-next .page-link-text {
  opacity: 0.9;
  color: strong-primary;
  text-decoration: underline;
}
.strong-primary-pagination .pagination .page-item .page-link-previous .page-link-icon,
.strong-primary-pagination .pagination .page-item .page-link-next .page-link-icon {
  text-decoration: none;
  flex-shrink: 0;
}
.strong-primary-pagination .pagination .page-item .page-link-previous:hover,
.strong-primary-pagination .pagination .page-item .page-link-next:hover {
  color: rgba(74, 14, 39, 0.75);
}
@media (max-width: 576px) {
  .strong-primary-pagination .pagination {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .strong-primary-pagination .page-item .page-link {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}

.green-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.5;
}
.green-pagination .pagination .page-item .page-link {
  background-color: transparent;
  color: #000000;
  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;
}
.green-pagination .pagination .page-item.disabled {
  filter: grayscale(100%);
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.5;
}
.green-pagination .pagination .page-item.active .page-link {
  background-color: #1e5b4f;
  color: #ffffff;
  font-weight: 600;
}
.green-pagination .pagination .page-item:hover .page-link {
  background-color: rgba(30, 91, 79, 0.75);
  color: #ffffff;
}
.green-pagination .pagination .page-item .page-link-previous,
.green-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: #000000;
}
.green-pagination .pagination .page-item .page-link-previous .page-link-text,
.green-pagination .pagination .page-item .page-link-next .page-link-text {
  opacity: 0.9;
  color: green;
  text-decoration: underline;
}
.green-pagination .pagination .page-item .page-link-previous .page-link-icon,
.green-pagination .pagination .page-item .page-link-next .page-link-icon {
  text-decoration: none;
  flex-shrink: 0;
}
.green-pagination .pagination .page-item .page-link-previous:hover,
.green-pagination .pagination .page-item .page-link-next:hover {
  color: rgba(30, 91, 79, 0.75);
}
@media (max-width: 576px) {
  .green-pagination .pagination {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .green-pagination .page-item .page-link {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}

.strong-green-pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 0.5;
}
.strong-green-pagination .pagination .page-item .page-link {
  background-color: transparent;
  color: #000000;
  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;
}
.strong-green-pagination .pagination .page-item.disabled {
  filter: grayscale(100%);
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.5;
}
.strong-green-pagination .pagination .page-item.active .page-link {
  background-color: #13322e;
  color: #ffffff;
  font-weight: 600;
}
.strong-green-pagination .pagination .page-item:hover .page-link {
  background-color: rgba(19, 50, 46, 0.75);
  color: #ffffff;
}
.strong-green-pagination .pagination .page-item .page-link-previous,
.strong-green-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: #000000;
}
.strong-green-pagination .pagination .page-item .page-link-previous .page-link-text,
.strong-green-pagination .pagination .page-item .page-link-next .page-link-text {
  opacity: 0.9;
  color: strong-green;
  text-decoration: underline;
}
.strong-green-pagination .pagination .page-item .page-link-previous .page-link-icon,
.strong-green-pagination .pagination .page-item .page-link-next .page-link-icon {
  text-decoration: none;
  flex-shrink: 0;
}
.strong-green-pagination .pagination .page-item .page-link-previous:hover,
.strong-green-pagination .pagination .page-item .page-link-next:hover {
  color: rgba(19, 50, 46, 0.75);
}
@media (max-width: 576px) {
  .strong-green-pagination .pagination {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .strong-green-pagination .page-item .page-link {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
}

.share-options {
  position: relative;
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  justify-content: flex-start;
}

.share-action-btn {
  background: #fff;
  border: 1px solid #002622;
  border-radius: 6px;
  padding: 0.3rem 1.2rem;
  font-size: 1rem;
  color: #002622 !important;
  font-weight: 600;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.share-action-btn:hover {
  background: #e9ecef;
  color: #002622 !important;
  text-decoration: none;
}

.share-menu {
  position: absolute;
  top: -100px;
  left: 0%;
  min-width: 220px;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  z-index: 9999;
}
.share-menu .dropdown-item {
  color: #002622 !important;
}