@charset "UTF-8";
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 {
  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;
  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 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: 12px 10px;
  min-height: 48px;
  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;
  line-height: 1.35;
  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;
  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;
  }
}

.wpcf7 {
  width: 100%;
}

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

.wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.wpcf7-form-control-wrap input[type=text],
.wpcf7-form-control-wrap input[type=email],
.wpcf7-form-control-wrap input[type=tel],
.wpcf7-form-control-wrap textarea,
.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;
}
.wpcf7-form-control-wrap input[type=text]::placeholder,
.wpcf7-form-control-wrap input[type=email]::placeholder,
.wpcf7-form-control-wrap input[type=tel]::placeholder,
.wpcf7-form-control-wrap textarea::placeholder,
.wpcf7-form-control-wrap select::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.wpcf7-form-control-wrap input[type=text]:hover,
.wpcf7-form-control-wrap input[type=email]:hover,
.wpcf7-form-control-wrap input[type=tel]:hover,
.wpcf7-form-control-wrap textarea:hover,
.wpcf7-form-control-wrap select:hover {
  background: #fff;
}
.wpcf7-form-control-wrap input[type=text]:focus,
.wpcf7-form-control-wrap input[type=email]:focus,
.wpcf7-form-control-wrap input[type=tel]:focus,
.wpcf7-form-control-wrap textarea:focus,
.wpcf7-form-control-wrap select:focus {
  outline: none;
  border-color: var(--c-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(101, 45, 144, 0.15);
}
.wpcf7-form-control-wrap textarea {
  resize: vertical;
  min-height: 110px;
}
.wpcf7-form-control-wrap select {
  appearance: none;
  cursor: pointer;
}

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

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

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

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

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

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

.cf7-card .hero-card-lede {
  margin: 0 0 12px;
}

.cf7-card .wpcf7 {
  margin: 0 0 8px;
}

.cf7-card .alt-row {
  margin-top: 12px;
}

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

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

.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: 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 {
  margin: 4px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  border: none !important;
}

.fc-form .wpcf7-form.sent .wpcf7-response-output {
  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 {
  background: #fdecea;
  color: #c62828;
}

.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: 20px 24px;
}
.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;
}

.section-head {
  text-align: center;
  margin-bottom: 32px;
}
.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;
}

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

.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 {
    padding: 48px 0;
    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.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  .ph-hero__inner {
    grid-template-columns: 1fr;
  }
}

.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 0 8px;
}

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

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

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

.ph-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.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__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 576px) {
  .ph-hero__btns {
    flex-direction: column;
  }
}

.ph-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;
}
.ph-btn:hover {
  filter: brightness(0.93);
  transform: translateX(2px);
  text-decoration: none;
}
.ph-btn--wsp {
  background: #ff5700;
  color: #fff;
}
.ph-btn--wsp:hover {
  color: #fff;
}
.ph-btn--tel {
  background: #652D90;
  color: #fff;
}
.ph-btn--tel:hover {
  color: #fff;
}
.ph-btn__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.12);
}
.ph-btn__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ph-btn__label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.ph-btn__meta {
  font-size: 11px;
  opacity: 0.75;
  font-weight: 500;
}
.ph-btn__arrow {
  flex-shrink: 0;
  opacity: 0.6;
}

.ph-hero__form-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.14);
  position: sticky;
  top: 24px;
}
@media (max-width: 991px) {
  .ph-hero__form-card {
    box-shadow: none;
    border: 1.5px solid #e0e0e0;
    position: static;
  }
}

.ph-hero__form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #272727;
  margin: 0 0 12px;
}

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

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

.pswp {
  display: none !important;
}

.dx-beneficios {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .dx-beneficios {
    margin: 48px 0;
  }
}

.dx-beneficios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .dx-beneficios__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .dx-beneficios__grid {
    grid-template-columns: 1fr;
  }
}

.dx-beneficio {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 16px;
  padding: 32px 32px;
  text-align: center;
}

.dx-beneficio__icono {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.dx-beneficio__titulo {
  font-size: 1rem;
  font-weight: 700;
  color: #272727;
  margin: 0 0 8px;
}

.dx-beneficio__texto {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.dx-logros {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .dx-logros {
    margin: 48px 0;
  }
}

.dx-logros__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 991px) {
  .dx-logros__grid {
    grid-template-columns: 1fr;
  }
}

.dx-logros__card {
  border-radius: 16px;
  padding: 32px 32px;
}
.dx-logros__card--verde {
  background: #edf7f1;
}
.dx-logros__card--amarillo {
  background: #fdf9ed;
}

.dx-logros__title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #272727;
  margin: 0 0 20px;
  line-height: 1.3;
}

.dx-logros__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.dx-logros__card--verde .dx-logros__icon {
  color: #00914e;
}
.dx-logros__card--amarillo .dx-logros__icon {
  color: #ff5700;
}

.dx-logros__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dx-logros__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.5;
}
.dx-logros__list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00914e;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.dx-logros__list--naranja li::before {
  background: #ff5700;
}

.dx-proceso {
  background: #f8f7fb;
  margin: 80px 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .dx-proceso {
    margin: 48px 0;
    padding: 48px 0;
  }
}

.dx-proceso__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.dx-proceso__grid::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed #c8c8c8;
  z-index: 0;
}
@media (max-width: 991px) {
  .dx-proceso__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dx-proceso__grid::before {
    display: none;
  }
}

.dx-proceso__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dx-proceso__num {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00914e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.dx-proceso__icono {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: #e8f5ee;
  color: #00914e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.dx-proceso__titulo {
  font-size: 0.95rem;
  font-weight: 700;
  color: #272727;
  margin: 0 0 8px;
}

.dx-proceso__desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.dx-piezas {
  margin: 80px 0;
}
@media (max-width: 991px) {
  .dx-piezas {
    margin: 48px 0;
  }
}

.dx-piezas__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px 16px;
}
@media (max-width: 1024px) {
  .dx-piezas__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 576px) {
  .dx-piezas__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 12px;
  }
}

.dx-pieza {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.dx-pieza__icono {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #f0eaf7;
  color: #652D90;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .dx-pieza__icono {
    width: 44px;
    height: 44px;
  }
}

.dx-pieza__nombre {
  font-size: 0.8rem;
  font-weight: 600;
  color: #272727;
  line-height: 1.3;
}

.dx-descripcion {
  background: #f8f7fb;
  margin: 80px 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .dx-descripcion {
    margin: 48px 0;
    padding: 48px 0;
  }
}

.dx-descripcion__inner {
  max-width: 780px;
  margin: 0 auto;
}
.dx-descripcion__inner h2, .dx-descripcion__inner h3 {
  color: #272727;
}
.dx-descripcion__inner p {
  line-height: 1.7;
  color: #444;
}
.dx-descripcion__inner ul {
  padding-left: 20px;
}
.dx-descripcion__inner li {
  margin-bottom: 8px;
  color: #444;
}
