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

.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: 12px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: #f0faf0;
  color: #1a6b1a;
  border: 1px solid #c3e6c3;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: block;
}

.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;
  border: 1px solid #f5c6cb;
}

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

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

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

.pswp {
  display: none !important;
}

#altEmail_container,
.altEmail_container {
  position: absolute !important;
  overflow: hidden !important;
  display: inline !important;
  height: 1px !important;
  width: 1px !important;
  z-index: -1000 !important;
}

fieldset.hidden-fields-container {
  display: none !important;
}

@keyframes landingV3FadeLeft {
  from {
    opacity: 0;
    transform: translateX(-44px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes landingV3FadeRight {
  from {
    opacity: 0;
    transform: translateX(44px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
body.landing-v3-body {
  --c-green: #00914e;
  --c-orange: #ff5700;
  --c-purple: #652D90;
  --c-yellow: #FFC600;
  --c-green-tint: #e8f7ee;
  --c-orange-tint: #fff0e6;
  --c-purple-tint: #f3eaf9;
  --c-yellow-tint: #fff8e1;
  margin: 0;
  padding: 0;
  padding-top: 114px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.landing-v3-body .page {
  max-width: 100%;
  overflow: hidden;
}
body.landing-v3-body .page *, body.landing-v3-body .page *::before, body.landing-v3-body .page *::after {
  box-sizing: border-box;
}
body.landing-v3-body .page button {
  font: inherit;
  cursor: pointer;
}
body.landing-v3-body .page img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.landing-v3-body .page svg {
  overflow: hidden;
  vertical-align: middle;
}
body.landing-v3-body .page strong, body.landing-v3-body .page b {
  font-weight: 700;
}
body.landing-v3-body .hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
body.landing-v3-body .hero--gradient {
  background: linear-gradient(135deg, #f3eaf9 0%, #fff 55%, #e8f7ee 100%);
}
body.landing-v3-body .hero-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 58%;
  z-index: 0;
  overflow: hidden;
}
body.landing-v3-body .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.6) 12%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.7) 88%, #fff 100%);
}
body.landing-v3-body .hero-img.hero-img--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.landing-v3-body .hero .contenedor-emprende {
  position: relative;
  z-index: 1;
  padding-top: 16px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
body.landing-v3-body .hero-heading {
  display: flex;
  flex-direction: column;
}
body.landing-v3-body .hero-copy,
body.landing-v3-body .hero .cf7-card {
  position: relative;
  z-index: 1;
}
body.landing-v3-body .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 16px;
  animation: landingV3FadeLeft 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
body.landing-v3-body .hero-copy h1 {
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0;
  color: #111;
  text-wrap: balance;
}
body.landing-v3-body .h1-accent {
  color: var(--c-purple);
  display: block;
}
body.landing-v3-body .hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 12px 16px;
  background: var(--c-purple-tint);
  color: #652D90;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
body.landing-v3-body .hero-social-proof svg {
  flex-shrink: 0;
  color: #652D90;
}
body.landing-v3-body .hero-lede {
  font-size: 16.5px;
  line-height: 1.55;
  color: #444;
  margin: 0;
  max-width: 520px;
}
body.landing-v3-body .checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.landing-v3-body .checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #222;
  line-height: 1.4;
}
body.landing-v3-body .checks li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--c-green) 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;
}
body.landing-v3-body .checks li .chk, body.landing-v3-body .checks li .chk-sm {
  display: none;
}
body.landing-v3-body .checks--lg {
  height: 100%;
  justify-content: space-between;
  gap: 0;
}
body.landing-v3-body .checks--lg li {
  font-size: 16px;
  gap: 16px;
}
body.landing-v3-body .checks-sm {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.landing-v3-body .checks-sm li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #333;
  line-height: 1.4;
}
body.landing-v3-body .checks-sm li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--c-green) 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;
}
body.landing-v3-body .checks-sm li .chk, body.landing-v3-body .checks-sm li .chk-sm {
  display: none;
}
body.landing-v3-body .chk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}
body.landing-v3-body .chk--purple {
  background: var(--c-purple);
  color: #fff;
}
body.landing-v3-body .chk--sm {
  width: 20px;
  height: 20px;
}
body.landing-v3-body .chk-sm {
  color: var(--c-green);
  display: inline-flex;
  flex-shrink: 0;
}
body.landing-v3-body .checks__bonus {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
body.landing-v3-body .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}
body.landing-v3-body .hero-copy .cta-contacto {
  margin: 0;
  gap: 12px;
}
body.landing-v3-body .ph-hero {
  position: relative;
  padding: 16px 0;
  background-color: #f8f7fb;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
body.landing-v3-body .ph-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, #fff 38%, rgba(255, 255, 255, 0.3) 62%, rgba(255, 255, 255, 0) 78%);
  pointer-events: none;
}
@media (max-width: 991px) {
  body.landing-v3-body .ph-hero {
    background-image: none !important;
  }
  body.landing-v3-body .ph-hero::before {
    display: none;
  }
}
body.landing-v3-body .ph-hero .contenedor-emprende {
  position: relative;
  z-index: 1;
}
body.landing-v3-body .ph-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 991px) {
  body.landing-v3-body .ph-hero__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
body.landing-v3-body .ph-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
body.landing-v3-body .texto-icono {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}
body.landing-v3-body .texto-icono > div:not(.cont-svg) {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.landing-v3-body .texto-icono .cont-svg {
  flex: 0 0 auto;
  width: 160px;
}
body.landing-v3-body .texto-icono .cont-svg svg {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  body.landing-v3-body .texto-icono .cont-svg {
    display: none;
  }
}
body.landing-v3-body .ph-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #272727;
  line-height: 1.1;
  margin: 0;
}
body.landing-v3-body .ph-hero .cta-contacto {
  margin-top: 0;
}
body.landing-v3-body .hero-form-wrap {
  position: relative;
  animation: landingV3FadeRight 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.12s;
}
body.landing-v3-body .cf7-card {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 24px 48px -16px rgba(0, 0, 0, 0.18), 0 4px 12px -4px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
body.landing-v3-body .hr-purple {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: var(--c-purple);
  margin: -6px 0 4px;
}
body.landing-v3-body .hero-card-lede {
  margin: 0 0 6px;
  color: #555;
  font-size: 14.5px;
  line-height: 1.5;
}
body.landing-v3-body .or-row {
  display: flex;
  align-items: center;
  margin: 4px 0;
}
body.landing-v3-body .or-row span {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
body.landing-v3-body .alt-row {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: #333;
  line-height: 1.45;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.12s, box-shadow 0.15s;
}
body.landing-v3-body .alt-row:hover {
  border-color: var(--c-green);
  background: rgba(0, 145, 78, 0.05);
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.1);
  color: #333;
}
body.landing-v3-body .alt-row:active {
  transform: translateY(1px);
}
body.landing-v3-body .alt-row b {
  color: #111;
  font-weight: 600;
}
body.landing-v3-body .alt-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-green-tint);
  color: var(--c-green);
  flex-shrink: 0;
}
body.landing-v3-body .alt-text {
  line-height: 1.45;
}
body.landing-v3-body .band {
  margin: 16px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.landing-v3-body .band.anim-visible {
  opacity: 1;
  transform: translateY(0);
}
body.landing-v3-body .band-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
}
body.landing-v3-body .features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 12px;
}
body.landing-v3-body .feat {
  padding: 8px 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.landing-v3-body .feat:last-child {
  border-right: 0;
}
body.landing-v3-body .feat h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #111;
}
body.landing-v3-body .feat p {
  margin: 0;
  color: #555;
  font-size: 14.5px;
  line-height: 1.5;
}
body.landing-v3-body .feat-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
body.landing-v3-body .feat-green {
  background: var(--c-green-tint);
  color: var(--c-green);
}
body.landing-v3-body .feat-orange {
  background: var(--c-orange-tint);
  color: var(--c-orange);
}
body.landing-v3-body .feat-purple {
  background: var(--c-purple-tint);
  color: var(--c-purple);
}
body.landing-v3-body .feat-yellow {
  background: var(--c-yellow-tint);
  color: var(--c-yellow);
}
body.landing-v3-body .two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
body.landing-v3-body .incluye-copy .checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
@media (max-width: 991px) {
  body.landing-v3-body .incluye-copy .checks {
    grid-template-columns: 1fr;
  }
}
body.landing-v3-body .incluye-sub {
  font-size: 15px;
  color: #555;
  margin: -16px 0 16px;
  line-height: 1.5;
}
body.landing-v3-body .cont-logo-df {
  background-color: #fef7ef;
  align-self: stretch;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #fde0b8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
body.landing-v3-body .cont-logo-df img {
  max-width: 100%;
  height: auto;
}
body.landing-v3-body .cont-logo-df h3 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  color: #272727;
}
@media (max-width: 991px) {
  body.landing-v3-body .cont-logo-df {
    width: 100%;
  }
}
body.landing-v3-body .contabilidad-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--c-purple-tint);
  border: 1px solid rgba(101, 45, 144, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  width: 100%;
}
body.landing-v3-body .contabilidad-promo__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--c-purple);
  color: #fff;
}
body.landing-v3-body .contabilidad-promo__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}
body.landing-v3-body .contabilidad-promo__sub {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
body.landing-v3-body .final-cta {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
body.landing-v3-body .final-cta h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111;
}
body.landing-v3-body .final-cta p {
  margin: 0;
  color: #666;
  font-size: 14.5px;
}
body.landing-v3-body .final-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-purple-tint);
  color: var(--c-purple);
  flex-shrink: 0;
}
body.landing-v3-body .final-text {
  flex: 1;
  min-width: 200px;
}
body.landing-v3-body .final-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  body.landing-v3-body .final-cta-btns {
    flex-direction: column;
    width: 100%;
  }
}
body.landing-v3-body .incluye-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: stretch;
}
body.landing-v3-body .incluye-core {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body.landing-v3-body .incluye-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 24px;
  line-height: 1.2;
}
body.landing-v3-body .card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 20px -10px rgba(0, 0, 0, 0.08);
}
body.landing-v3-body .kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 14px;
}
body.landing-v3-body .kicker-green {
  color: var(--c-green);
}
body.landing-v3-body .kicker-purple {
  color: var(--c-purple);
}
body.landing-v3-body .card-plan {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}
body.landing-v3-body .hero-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--c-green);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 20px;
}
body.landing-v3-body .price-line {
  font-size: 30px;
  font-weight: 400;
  color: var(--c-green);
  margin: 0;
  letter-spacing: -0.01em;
}
body.landing-v3-body .price-line .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--c-green);
  letter-spacing: -0.02em;
  vertical-align: -2px;
}
body.landing-v3-body .price-line em {
  font-style: normal;
  color: var(--c-green);
  font-size: 22px;
}
body.landing-v3-body .plan-left {
  display: flex;
  flex-direction: column;
}
body.landing-v3-body .plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
}
body.landing-v3-body .plan-price strong {
  font-size: 52px;
  font-weight: 800;
  color: var(--c-green);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}
body.landing-v3-body .plan-cadence {
  color: #555;
  font-size: 15px;
  margin: 4px 0 24px;
  white-space: nowrap;
}
body.landing-v3-body .plan-cadence em {
  font-style: normal;
  color: #444;
  font-weight: 500;
  margin-right: 4px;
}
body.landing-v3-body .plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.landing-v3-body .plan-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #222;
}
body.landing-v3-body .plan-right {
  min-height: 160px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-green-tint) 0%, var(--c-purple-tint) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
body.landing-v3-body .plan-right svg {
  display: block;
  width: 100%;
  height: auto;
}
body.landing-v3-body .faq .kicker {
  margin-bottom: 8px;
}
body.landing-v3-body .faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
body.landing-v3-body .faq li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
body.landing-v3-body .faq li:last-child {
  border-bottom: 0;
}
body.landing-v3-body .faq button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 16px 4px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.005em;
}
body.landing-v3-body .faq button:hover {
  color: var(--c-purple);
}
body.landing-v3-body .faq-chev {
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
  display: inline-flex;
  flex-shrink: 0;
}
body.landing-v3-body .faq li.open .faq-chev {
  transform: rotate(180deg);
  color: var(--c-purple);
}
body.landing-v3-body .faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
body.landing-v3-body .faq-a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.55;
  color: #555;
}
body.landing-v3-body .faq li.open .faq-a {
  grid-template-rows: 1fr;
}
body.landing-v3-body .faq li.open .faq-a > p {
  padding: 0 4px 16px;
}
@media (max-width: 991px) {
  body.landing-v3-body .hero {
    min-height: auto;
  }
  body.landing-v3-body .hero-img {
    display: none;
  }
  body.landing-v3-body .hero .contenedor-emprende {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.landing-v3-body .hero-copy h1 {
    font-size: 40px;
  }
  body.landing-v3-body .features {
    grid-template-columns: repeat(2, 1fr);
  }
  body.landing-v3-body .two-col {
    grid-template-columns: 1fr;
  }
  body.landing-v3-body .incluye-grid {
    grid-template-columns: 1fr;
  }
  body.landing-v3-body .card-plan {
    grid-template-columns: 1fr;
  }
  body.landing-v3-body .plan-right {
    display: none;
  }
}
@media (max-width: 576px) {
  body.landing-v3-body .contenedor-emprende {
    padding-left: 16px;
    padding-right: 16px;
  }
  body.landing-v3-body .hero-copy h1 {
    font-size: 45px;
  }
  body.landing-v3-body .hero-cta {
    flex-direction: column;
  }
  body.landing-v3-body .features {
    gap: 16px;
  }
  body.landing-v3-body .price-line {
    font-size: 24px;
  }
  body.landing-v3-body .price-line .price {
    font-size: 36px;
  }
  body.landing-v3-body .card {
    padding: 24px 20px;
  }
  body.landing-v3-body .cf7-card {
    padding: 24px 20px;
  }
  body.landing-v3-body .final-cta {
    padding: 24px 20px;
  }
}

body.landing-empresa-en-un-dia-v3-body .incluye-extras {
  background: #f8f8f8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 32px;
}
body.landing-empresa-en-un-dia-v3-body .extras-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px;
  letter-spacing: -0.005em;
}
body.landing-empresa-en-un-dia-v3-body .extras-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
@media (max-width: 576px) {
  body.landing-empresa-en-un-dia-v3-body .extras-cols {
    grid-template-columns: 1fr;
  }
}

.registrar-section {
  padding: 48px 1.5rem;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.registrar-title {
  text-align: center;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #272727;
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

.registrar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .registrar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .registrar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.registrar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid #e8e8ea;
  border-radius: 10px;
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.registrar-item:hover {
  border-color: rgba(0, 145, 78, 0.4);
  box-shadow: 0 4px 16px rgba(0, 145, 78, 0.08);
}

.registrar-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 145, 78, 0.1);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #00914e;
  flex-shrink: 0;
}
.registrar-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.registrar-label {
  font-size: 13px;
  font-weight: 600;
  color: #272727;
  line-height: 1.35;
}

.hero-title-price {
  display: block;
  font-size: 0.72em;
  font-weight: 800;
  color: #00914e;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 0.15em;
}

.hero-footnote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 8px 0 0;
  font-style: italic;
}
