:root {
  --negro: #272727;
  --morado: #652D90;
  --morado-dark: #4e2270;
  --amarillo: #FFC600;
  --amarillo-dark: #e6b200;
  --naranja: #ff5700;
  --verde: #00914e;
}

body {
  padding-top: 114px;
}
@media (max-width: 1100px) {
  body {
    padding-top: 70px;
  }
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #652D90;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  top: 0;
  left: 0;
  display: none;
  transition: 0.3s;
  mix-blend-mode: difference;
}

#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
  padding: 0;
  transform: none !important;
}
#navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
#navbar {
  /* @media (max-width: $bp-xs) {
    padding: 10px 20px;

    &.scrolled {
      padding: 8px 20px;
    }
  } */
}

.header-logo {
  margin-left: 10px;
}

img.custom-logo,
.header-logo img {
  width: 95px;
  height: auto;
  display: block;
}

.header-emprende {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  height: 70px;
  width: 100%;
}

.menu-emprende {
  display: flex;
  align-items: center;
  width: fit-content;
}

.menu-emprende-lista {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 22px;
}
.menu-emprende-lista > li {
  position: relative;
  margin: 0;
  padding: 0;
}
.menu-emprende-lista > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  padding: 10px 0;
}
.menu-emprende-lista > li > a:hover {
  opacity: 0.8;
}
.menu-emprende-lista > li.menu-item-has-children > a::after {
  font-family: "Material Icons";
  content: "\e5cf";
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  transition: 0.3s;
}
.menu-emprende-lista > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.menu-emprende-lista > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-emprende-lista .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 999;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}
.menu-emprende-lista .sub-menu li {
  margin: 0;
  padding: 0;
}
.menu-emprende-lista .sub-menu li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.menu-emprende-lista .sub-menu li a:hover {
  background-color: #f8f9fa;
}

.header-emprende-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: #fff;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.header-emprende-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #272727;
  position: relative;
}
.header-emprende-toggle span::before, .header-emprende-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #272727;
}
.header-emprende-toggle span::before {
  top: -6px;
}
.header-emprende-toggle span::after {
  top: 6px;
}

.menu-emprende-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s;
  z-index: 9998;
}
.menu-emprende-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-emprende-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 380px);
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.16);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}
.menu-emprende-offcanvas.is-open {
  transform: translateX(0);
}

.menu-emprende-offcanvas-close {
  display: flex;
  justify-content: flex-end;
}
.menu-emprende-offcanvas-close button {
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #272727;
}

.menu-emprende-mobile-top {
  margin-bottom: 20px;
}
.menu-emprende-mobile-top ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-emprende-mobile-top li {
  border-bottom: 1px solid #eee;
}
.menu-emprende-mobile-top a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #272727 !important;
  font-size: 14px;
}

.menu-emprende-mobile-top-list > li:last-child .sub-menu li:last-child {
  border-bottom: none;
}

.menu-emprende-mobile-group {
  border-top: 1px solid #eaeaea;
  padding-top: 14px;
  margin-top: 14px;
}

.menu-emprende-mobile-group-title {
  font-size: 15px;
  font-weight: 600;
  color: #272727;
  margin-bottom: 12px;
}

.menu-emprende-mobile-section {
  margin-bottom: 16px;
}

.menu-emprende-mobile-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}

.menu-emprende-mobile-products {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-emprende-mobile-products li {
  border-bottom: 1px solid #f2f2f2;
}
.menu-emprende-mobile-products a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  color: #272727 !important;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .menu-emprende {
    display: none;
  }
  .header-emprende-toggle {
    display: inline-flex;
  }
}
.contSubmenu {
  background-color: #FFC600;
  width: 100%;
}

._submenu-contDropdowns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

._submenu-btnEmpresa {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}
._submenu-btnEmpresa ._submenu-dropdown-btn::after {
  display: none;
}

._submenu-btnEmpresa360 {
  display: none;
}

@media (max-width: 1100px) {
  ._submenu-btnEmpresa360 {
    display: flex;
  }
  ._submenu-btnEmpresa {
    display: none;
  }
}
._submenu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}
@media (max-width: 1100px) {
  ._submenu-dropdown {
    display: none;
  }
}
._submenu-dropdown:hover ._submenu-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
._submenu-dropdown:hover ._submenu-dropdown-btn::after {
  transform: rotate(180deg);
}

._submenu-dropdown-btn,
._submenu-btnEmpresa a {
  background-color: #FFC600;
  color: #333 !important;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  height: 44px;
  white-space: nowrap;
}
._submenu-dropdown-btn:hover,
._submenu-btnEmpresa a:hover {
  background-color: #e6b200;
}

._submenu-dropdown-btn::after {
  font-family: "Material Icons";
  content: "\e5cf";
  font-size: 20px;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  transition: 0.3s;
}

._submenu-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 650px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 14px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.2s ease;
  pointer-events: none;
}
@media (max-width: 1300px) {
  ._submenu-dropdown-menu {
    min-width: 450px;
  }
}

._submenu-tituloDropdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  margin-top: 12px;
}
._submenu-tituloDropdown:first-child {
  margin-top: 0;
}
._submenu-tituloDropdown hr {
  margin: 0;
  border: none;
  border-top: 1px solid #e5e5e5;
}

._submenu-contItemsSubMenu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 1300px) {
  ._submenu-contItemsSubMenu {
    grid-template-columns: 1fr 1fr;
  }
}

._submenu-itemSubMenu {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 5px;
  border: 0.5px solid rgba(51, 51, 51, 0.06);
  border-radius: 5px;
  text-decoration: none;
}
._submenu-itemSubMenu:hover {
  background-color: #f2f2f2;
  transition: 0.3s;
}
._submenu-itemSubMenu span {
  display: block;
  color: #212529;
  font-size: 14px;
  flex: 1;
}
._submenu-itemSubMenu:hover span {
  color: #000;
}

._submenu-contDropdowns ._submenu-dropdown:last-of-type ._submenu-dropdown-menu {
  left: auto;
  right: 0;
}

@media (max-width: 1670px) {
  ._submenu-contDropdowns ._submenu-dropdown:nth-last-of-type(2) ._submenu-dropdown-menu {
    left: auto;
    right: 0;
  }
}
.site-footer {
  font-family: "Roboto", sans-serif;
}

.footer-main {
  background: #272727;
}

.footer-logo img {
  width: 140px;
  height: auto;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-heading {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFC600;
  margin: 0;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav-list li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list li a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-social a:hover {
  background: #652D90;
  border-color: #652D90;
  color: #fff;
  transform: translateY(-2px);
}

.footer-newsletter__group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-newsletter__group input[type=email] {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 13px;
  color: #fff;
  font-family: "Roboto", sans-serif;
}
.footer-newsletter__group input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.footer-newsletter__group input[type=email]:focus {
  background: rgba(255, 255, 255, 0.11);
}
.footer-newsletter__group button {
  background: #652D90;
  border: none;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.footer-newsletter__group button:hover {
  background: #4e2270;
}
.footer-newsletter__group button svg {
  flex-shrink: 0;
}

.footer-premio {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-premio__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.footer-premio__link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-premio__link span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-premio__link:hover img {
  opacity: 1;
}
.footer-premio__link:hover span {
  color: rgba(255, 255, 255, 0.8);
}

.footer-addresses {
  background: #1f1f1f;
  padding: 14px 0;
}
.footer-addresses__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  text-align: center;
  line-height: 1.7;
}

.footer-bottom {
  background: #161616;
  padding: 14px 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.page-hero {
  background: linear-gradient(135deg, rgba(101, 45, 144, 0.22) 0%, rgba(101, 45, 144, 0.04) 100%), #272727;
  min-height: 240px;
  padding-top: calc(70px + 44px + 40px);
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #652D90 0%, #FFC600 100%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero h1 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
.page-hero .page-hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  margin: 12px 0 0;
  line-height: 1.6;
}
.page-hero .page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  justify-content: center;
}
.page-hero .page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero .page-hero__breadcrumb a:hover {
  color: #FFC600;
}
.page-hero .page-hero__breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.pagos-cards {
  background: #f7f5fb;
}

.pagos-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(101, 45, 144, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pagos-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(101, 45, 144, 0.12);
}
.pagos-card__img {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.pagos-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pagos-card__title {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #272727;
  line-height: 1.35;
  margin: 0 0 12px;
}
.pagos-card__desc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.65;
  flex-grow: 1;
  margin: 0 0 24px;
}
.pagos-card__desc strong {
  color: #652D90;
}
.pagos-card__btn {
  display: inline-block;
  padding: 11px 28px;
  background: #652D90;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  margin-top: auto;
}
.pagos-card__btn:hover {
  background: #4e2270;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.pagos-sucursales {
  background: #fff;
}

.pagos-ciudades {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pagos-ciudad {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: #f7f5fb;
  border: 1.5px solid rgba(101, 45, 144, 0.15);
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #272727;
}
.pagos-ciudad svg {
  color: #652D90;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .pagos-card {
    padding: 28px 20px 24px;
  }
  .pagos-card:hover {
    transform: none;
  }
}
