body {
  font-family: "Roboto", sans-serif;
}

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

body {
  padding-top: 114px;
}
@media (max-width: 1399px) {
  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;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  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;
}
#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: 14px 8px;
  min-height: 48px;
  color: #272727 !important;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1399px) {
  .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: 1399px) {
  ._submenu-btnEmpresa360 {
    display: flex;
  }
  ._submenu-btnEmpresa {
    display: none;
  }
}
._submenu-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
}
@media (max-width: 1399px) {
  ._submenu-dropdown {
    display: none;
  }
}
._submenu-dropdown:hover ._submenu-dropdown-menu {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
._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;
  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 {
  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: scale(0.96) translateY(-6px);
  transform-origin: top left;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  pointer-events: none;
  visibility: hidden;
}
@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 span {
  font-size: 14px;
  color: #666;
}
._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;
  justify-content: center;
  padding: 8px;
  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 {
  color: #212529;
  font-size: 14px;
}
._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;
  padding: 3rem 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
}

.footer-col {
  margin-bottom: 3rem;
}
.footer-col--1 {
  flex: 0 0 100%;
}
.footer-col--2 {
  flex: 0 0 50%;
}
.footer-col--3 {
  flex: 0 0 50%;
}
.footer-col--4 {
  flex: 0 0 100%;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .footer-col {
    margin-bottom: 0;
  }
  .footer-col--1 {
    flex: 0 0 25%;
    padding-right: 1.5rem;
  }
  .footer-col--2 {
    flex: 0 0 16.66667%;
    padding-right: 1rem;
  }
  .footer-col--3 {
    flex: 0 0 25%;
    padding-right: 1.5rem;
  }
  .footer-col--4 {
    flex: 0 0 33.33333%;
  }
}
.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.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-heading {
  margin-top: 1.5rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 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;
  margin-top: 1.5rem;
}
.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 {
  margin-top: 1rem;
}
.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;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.contenedor-emprende {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
@media (min-width: 576px) {
  .contenedor-emprende {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .contenedor-emprende {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .contenedor-emprende {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .contenedor-emprende {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .contenedor-emprende {
    max-width: 1320px;
  }
}

.hidden-fields-container {
  display: none;
}

.cifras-confianza {
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cifras-confianza {
    margin: 16px 0;
  }
}

.cifras-confianza__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.cifras-confianza__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}
.cifras-confianza__item + .cifras-confianza__item {
  border-left: 1px solid #e8e8e8;
}
@media (max-width: 991px) {
  .cifras-confianza__item {
    flex: 0 0 100%;
    border-left: none !important;
  }
  .cifras-confianza__item + .cifras-confianza__item {
    border-top: 1px solid #e8e8e8;
  }
}

.cifras-confianza__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cifras-confianza__icon--verde {
  background: rgba(0, 145, 78, 0.1);
  color: #00914e;
}
.cifras-confianza__icon--naranja {
  background: rgba(255, 87, 0, 0.1);
  color: #ff5700;
}
.cifras-confianza__icon--morado {
  background: rgba(101, 45, 144, 0.1);
  color: #652D90;
}
.cifras-confianza__icon--amarillo {
  background: rgba(255, 198, 0, 0.15);
  color: #e6b200;
}

.cifras-confianza__text {
  min-width: 0;
}

.cifras-confianza__title {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #272727;
  margin: 0;
  line-height: 1.2;
}

.cifras-confianza__desc {
  font-size: 12px;
  color: #666;
  margin: 3px 0 0;
  line-height: 1.45;
}

.home-sucursales {
  overflow-x: clip;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .home-sucursales {
    margin: 16px 0;
  }
}

.sucursales-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sucursal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid #652D90;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #652D90;
  background: #fff;
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.sucursal-pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.sucursal-pill:hover {
  background: #652D90;
  color: #fff;
}
.sucursal-pill__tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #272727;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  padding: 6px 12px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 10;
}
.sucursal-pill__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #272727;
}
@media (max-width: 991px) {
  .sucursal-pill__tooltip {
    display: none;
  }
}
.sucursal-pill:hover .sucursal-pill__tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.section-head {
  text-align: center;
  margin: 16px 0;
}
.section-head__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #272727;
}
.section-head__underline {
  width: 64px;
  height: 3px;
  background: #ff5700;
  border-radius: 2px;
  margin: 10px auto 0;
}
.section-head__subtitle {
  font-size: 15px;
  color: #666;
  margin-top: 12px;
  line-height: 1.5;
}

.pr-section {
  margin: 16px 0;
}
@media (max-width: 991px) {
  .pr-section {
    margin: 16px 0;
  }
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .pr-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .pr-grid::-webkit-scrollbar {
    display: none;
  }
}

.pr-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pr-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  text-decoration: none;
}
@media (max-width: 991px) {
  .pr-card {
    flex: 0 0 calc((100% - 24px) / 2);
    scroll-snap-align: start;
  }
}

.pr-card__img-wrap {
  width: 100%;
  aspect-ratio: 7/3;
  overflow: hidden;
  background: #f4f4f4;
}

.pr-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.pr-card:hover .pr-card__img {
  transform: scale(1.04);
}

.pr-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #272727;
  line-height: 1.35;
  margin: 0;
  padding: 20px;
}
.pr-card:hover .pr-card__title {
  color: #652D90;
}

.srel-section {
  margin: 16px 0;
}

.srel-grid {
  display: flex;
  align-items: stretch;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 991px) {
  .srel-grid {
    flex-direction: column;
  }
}

.srel-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
  color: #272727;
  transition: background 0.15s;
}
.srel-item + .srel-item {
  border-left: 1px solid #e8e8e8;
}
@media (max-width: 991px) {
  .srel-item + .srel-item {
    border-left: none;
    border-top: 1px solid #e8e8e8;
  }
}
.srel-item:hover {
  background: #f9f9f9;
  text-decoration: none;
  color: #272727;
}

.srel-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(101, 45, 144, 0.08);
  color: #652D90;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srel-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.srel-item__text strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.srel-item__text span {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.srel-item__arrow {
  flex-shrink: 0;
  color: #ccc;
}

.cf7-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.14);
  max-width: 430px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cf7-card {
    max-width: 100%;
    margin-left: 0;
    box-shadow: none;
    border: 1.5px solid #e0e0e0;
  }
}

.cf7-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #272727;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}

.cf7-card__subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 20px;
}

.cf7-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #999;
  margin: 16px 0 0;
}
.cf7-card__footer svg {
  flex-shrink: 0;
  color: #bbb;
}

.fc-form {
  --fc-accent: #652D90;
  width: 100%;
}

.fc-form .hidden-fields-container {
  display: none;
}

.fc-form .wpcf7 {
  width: 100%;
}

.fc-form .wpcf7-form p {
  margin: 0 0 12px;
}
.fc-form .wpcf7-form label {
  display: block;
  font-size: 0;
}
.fc-form .wpcf7-form p br {
  display: none;
}

.fc-form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.fc-form .wpcf7-form-control-wrap input[type=text],
.fc-form .wpcf7-form-control-wrap input[type=email],
.fc-form .wpcf7-form-control-wrap input[type=tel],
.fc-form .wpcf7-form-control-wrap textarea,
.fc-form .wpcf7-form-control-wrap select {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  font: inherit;
  font-size: 15.5px;
  background: #fafaf8;
  color: #111;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.fc-form .wpcf7-form-control-wrap input[type=text]::placeholder,
.fc-form .wpcf7-form-control-wrap input[type=email]::placeholder,
.fc-form .wpcf7-form-control-wrap input[type=tel]::placeholder,
.fc-form .wpcf7-form-control-wrap textarea::placeholder,
.fc-form .wpcf7-form-control-wrap select::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.fc-form .wpcf7-form-control-wrap input[type=text]:hover,
.fc-form .wpcf7-form-control-wrap input[type=email]:hover,
.fc-form .wpcf7-form-control-wrap input[type=tel]:hover,
.fc-form .wpcf7-form-control-wrap textarea:hover,
.fc-form .wpcf7-form-control-wrap select:hover {
  background: #fff;
}
.fc-form .wpcf7-form-control-wrap input[type=text]:focus,
.fc-form .wpcf7-form-control-wrap input[type=email]:focus,
.fc-form .wpcf7-form-control-wrap input[type=tel]:focus,
.fc-form .wpcf7-form-control-wrap textarea:focus,
.fc-form .wpcf7-form-control-wrap select:focus {
  outline: none;
  border-color: var(--fc-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(101, 45, 144, 0.15);
}
.fc-form .wpcf7-form-control-wrap textarea {
  resize: vertical;
  min-height: 110px;
}
.fc-form .wpcf7-form-control-wrap select {
  appearance: none;
  cursor: pointer;
}

.fc-form .wpcf7-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--fc-accent);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s, transform 0.12s;
}
.fc-form .wpcf7-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.fc-form .wpcf7-submit:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.fc-form .wpcf7-response-output {
  display: none !important;
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  border: none !important;
}

.fc-form .wpcf7-form.sent .wpcf7-response-output {
  display: block !important;
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 600;
}

.fc-form .wpcf7-form.invalid .wpcf7-response-output,
.fc-form .wpcf7-form.failed .wpcf7-response-output,
.fc-form .wpcf7-form.aborted .wpcf7-response-output,
.fc-form .wpcf7-form.spam .wpcf7-response-output {
  display: block !important;
  background: #fdecea;
  color: #c62828;
}

.mini-contacto {
  overflow: visible;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .mini-contacto {
    margin: 16px 0;
  }
}

.mini-contacto__wrap {
  position: relative;
  height: 185px;
}
@media (max-width: 991px) {
  .mini-contacto__wrap {
    height: auto;
    margin: 32px 0;
  }
}

.mini-contacto__img-wrap {
  position: absolute;
  left: 20px;
  bottom: 0;
  height: 185px;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 991px) {
  .mini-contacto__img-wrap {
    display: none;
  }
}

.mini-contacto__img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: bottom;
}

.mini-contacto__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00914e;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 32px 10px 190px;
  z-index: 1;
}
@media (max-width: 991px) {
  .mini-contacto__inner {
    position: static;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 16px;
  }
}

.mini-contacto__text {
  flex: 1;
  min-width: 0;
}

.mini-contacto__title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.9rem, 1.6vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.mini-contacto__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 4px 0 0;
  line-height: 1.5;
}

.mini-contacto__acciones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .mini-contacto__acciones {
    width: 100%;
  }
}

.mini-contacto__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  transition: filter 0.2s, transform 0.2s;
  min-width: 240px;
}
.mini-contacto__btn:hover {
  filter: brightness(0.93);
  transform: translateX(2px);
}
@media (max-width: 991px) {
  .mini-contacto__btn {
    min-width: unset;
    width: 100%;
  }
}
.mini-contacto__btn--wsp {
  background: #ff5700;
  color: #fff;
}
.mini-contacto__btn--wsp:hover {
  color: #fff;
}
.mini-contacto__btn--tel {
  background: #652D90;
  color: #fff;
}
.mini-contacto__btn--tel:hover {
  color: #fff;
}
.mini-contacto__btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-contacto__btn--wsp .mini-contacto__btn-icon {
  background: rgba(0, 0, 0, 0.12);
}
.mini-contacto__btn--tel .mini-contacto__btn-icon {
  background: rgba(0, 0, 0, 0.15);
}
.mini-contacto__btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.mini-contacto__btn-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.mini-contacto__btn-meta {
  font-size: 11px;
  opacity: 0.75;
  font-weight: 500;
}
.mini-contacto__btn-arrow {
  flex-shrink: 0;
  opacity: 0.6;
}

.cta-contacto {
  --cta-contacto-wsp-bg: #00914e;
  --cta-contacto-tel-bg: #ff5700;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 991px) {
  .cta-contacto {
    flex-direction: column;
    width: 100%;
  }
}

.cta-contacto .cta-contacto__btn {
  color: #fff;
  padding: 8px 16px;
}

.cta-contacto__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  transition: filter 0.2s, transform 0.2s;
}
.cta-contacto__btn:hover {
  filter: brightness(0.93);
  transform: translateX(2px);
  color: #fff;
  text-decoration: none;
}
.cta-contacto__btn--wsp {
  background: var(--cta-contacto-wsp-bg);
}
.cta-contacto__btn--tel {
  background: var(--cta-contacto-tel-bg);
}
@media (max-width: 991px) {
  .cta-contacto__btn {
    width: 100%;
    box-sizing: border-box;
  }
}

.cta-contacto__btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contacto__btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.cta-contacto__btn-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.cta-contacto__btn-meta {
  font-size: 11px;
  opacity: 0.75;
  font-weight: 500;
  line-height: 1.2;
}

.cta-contacto__btn-arrow {
  flex-shrink: 0;
  opacity: 0.6;
}

.fc-form {
  --fc-accent: #652D90;
  width: 100%;
}

.fc-form__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #272727;
  margin: 0 0 12px;
}

.fc-form__subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 20px;
}

.fc-form .hidden-fields-container {
  display: none;
}

.fc-form .wpcf7 {
  width: 100%;
}

.fc-form .wpcf7-form p {
  margin: 0 0 12px;
}
.fc-form .wpcf7-form label {
  display: block;
  font-size: 0;
}
.fc-form .wpcf7-form p br {
  display: none;
}

.fc-form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.fc-form .wpcf7-form-control-wrap input[type=text],
.fc-form .wpcf7-form-control-wrap input[type=email],
.fc-form .wpcf7-form-control-wrap input[type=tel],
.fc-form .wpcf7-form-control-wrap textarea,
.fc-form .wpcf7-form-control-wrap select {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  font: inherit;
  font-size: 15.5px;
  background: #fafaf8;
  color: #111;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.fc-form .wpcf7-form-control-wrap input[type=text]::placeholder,
.fc-form .wpcf7-form-control-wrap input[type=email]::placeholder,
.fc-form .wpcf7-form-control-wrap input[type=tel]::placeholder,
.fc-form .wpcf7-form-control-wrap textarea::placeholder,
.fc-form .wpcf7-form-control-wrap select::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.fc-form .wpcf7-form-control-wrap input[type=text]:hover,
.fc-form .wpcf7-form-control-wrap input[type=email]:hover,
.fc-form .wpcf7-form-control-wrap input[type=tel]:hover,
.fc-form .wpcf7-form-control-wrap textarea:hover,
.fc-form .wpcf7-form-control-wrap select:hover {
  background: #fff;
}
.fc-form .wpcf7-form-control-wrap input[type=text]:focus,
.fc-form .wpcf7-form-control-wrap input[type=email]:focus,
.fc-form .wpcf7-form-control-wrap input[type=tel]:focus,
.fc-form .wpcf7-form-control-wrap textarea:focus,
.fc-form .wpcf7-form-control-wrap select:focus {
  outline: none;
  border-color: var(--fc-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(101, 45, 144, 0.15);
}
.fc-form .wpcf7-form-control-wrap textarea {
  resize: vertical;
  min-height: 110px;
}
.fc-form .wpcf7-form-control-wrap select {
  appearance: none;
  cursor: pointer;
}

.fc-form .wpcf7-submit {
  display: block;
  width: 100%;
  padding: 16px;
  background: #277d02;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s, transform 0.12s;
}
.fc-form .wpcf7-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.fc-form .wpcf7-submit:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.pswp {
  display: none !important;
}

.ph-hero {
  position: relative;
  padding: 16px 0;
  background-color: #f4f4f4;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.ph-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, #fff 35%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 75%);
  pointer-events: none;
}
@media (max-width: 991px) {
  .ph-hero {
    background-image: none !important;
  }
  .ph-hero::before {
    display: none;
  }
}

.ph-hero .contenedor-emprende {
  position: relative;
  z-index: 1;
}

.ph-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  .ph-hero__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.ph-hero__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.ph-hero__content .cont-svg svg {
  width: 100%;
  height: auto;
}

.texto-icono {
  display: flex;
  align-items: center;
  gap: 48px;
}
.texto-icono > div:not(.cont-svg) {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.texto-icono .cont-svg {
  flex: 0 0 auto;
  width: 160px;
}
@media (max-width: 991px) {
  .texto-icono .cont-svg {
    display: none;
  }
}

.ph-hero__categoria {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #652D90;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.ph-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #272727;
  line-height: 1.1;
  margin: 0;
}

.ph-hero__bajada {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.ph-hero__desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}
.ph-hero__desc p {
  margin: 0 0 12px;
}
.ph-hero__desc p:last-child {
  margin-bottom: 0;
}
.ph-hero__desc strong {
  color: #272727;
}

.ph-hero__ideal {
  font-size: 0.9rem;
  font-weight: 600;
  color: #652D90;
  margin: 0;
}

.ph-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
}

.ph-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.3;
}

.ph-feature__icono {
  flex-shrink: 0;
  color: #00914e;
  display: flex;
  align-items: center;
}
.ph-feature__icono svg {
  width: 24px;
  height: 24px;
}

.ph-feature__texto strong {
  display: block;
  color: #272727;
}

.ph-hero .cta-contacto {
  margin-top: 0;
}

.cont-incluye-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cont-incluye-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: #272727;
}
.cont-incluye-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: #277d02 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}

.cont-atributos-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.cont-atributos-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #272727;
}
@media (max-width: 991px) {
  .cont-atributos-list {
    grid-template-columns: 1fr;
  }
}

.cont-atributos__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #277d02;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fila-seccion2 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  margin: 16px 0;
}
.fila-seccion2 > div {
  flex: 1;
}
.fila-seccion2 > div:first-child h3 {
  margin: 0;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .fila-seccion2 {
    flex-direction: column;
  }
}

.col-principales-atributos {
  background-color: #f7fcf7;
  border: 1px solid #d4edda;
  border-radius: 10px;
  padding: 10px;
}
.col-principales-atributos h3 {
  margin: 0;
}
@media (max-width: 991px) {
  .col-principales-atributos {
    width: 100%;
  }
}

.cont-logo-df {
  background-color: #fef7ef;
  align-self: stretch;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #fde0b8;
  width: 12%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.cont-logo-df img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .cont-logo-df {
    width: 100%;
  }
}

.section-head__underline {
  display: none;
}
