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

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

body.landing-body .main-header {
  width: 100%;
  position: relative;
  z-index: 1000;
  font-family: "Roboto", sans-serif;
}
body.landing-body .topbar {
  background: #00914e;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
body.landing-body .topbar p {
  margin-bottom: 0px !important;
}
body.landing-body .lp-nav {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  width: 100%;
}
body.landing-body .lp-nav .contenedor-emprende {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.landing-body .logo img {
  height: 48px;
  width: auto;
  display: block;
}

body.landing-body .site-footer {
  background: #222;
  color: #ddd;
  width: 100%;
}
body.landing-body .site-footer .contenedor-emprende {
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 576px) {
  body.landing-body .site-footer .contenedor-emprende {
    flex-direction: column;
    align-items: center;
  }
}
body.landing-body ._footer-logo {
  min-height: 100%;
  display: flex;
  align-items: center;
}
body.landing-body ._footer-logo img {
  width: 100px;
  height: auto;
}
body.landing-body ._footer-textFooter {
  font-size: 14px;
  text-align: center;
}
body.landing-body ._footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
body.landing-body ._footer-contRegiones {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
body.landing-body ._footer-contRegiones span {
  font-size: 14px;
  text-align: center;
}

body.modal-abierto {
  overflow: hidden;
}

body.landing-body ._lpeud-hero {
  background: linear-gradient(135deg, #f8f4fc 0%, #fff 100%);
  padding: 3.5rem 0 2.5rem;
}
body.landing-body ._lpeud-hero__h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #272727;
  margin-bottom: 1.5rem;
}
body.landing-body ._lpeud-hero__stat {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #444;
  margin-bottom: 0.4rem;
}
body.landing-body ._lpeud-hero__stat strong {
  color: #ff5700;
  font-weight: 700;
}
body.landing-body ._lpeud-hero__h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: #652D90;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0;
}
body.landing-body ._lpeud-card {
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
body.landing-body ._lpeud-card:hover {
  border-color: #ff5700;
  box-shadow: 0 6px 22px rgba(255, 87, 0, 0.1);
}
body.landing-body ._lpeud-card__option {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #999;
  margin-bottom: 0;
}
body.landing-body ._lpeud-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #272727;
  margin-bottom: 0;
  line-height: 1.4;
}
body.landing-body ._lpeud-card__imglink {
  display: block;
  margin-top: auto;
  transition: transform 0.2s;
}
body.landing-body ._lpeud-card__imglink img {
  max-width: 180px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
body.landing-body ._lpeud-card__imglink:hover {
  transform: scale(1.04);
}
body.landing-body ._lpeud-btn-llamada {
  display: inline-block;
  background: #ff5700;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 13px 36px;
  margin-top: auto;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
body.landing-body ._lpeud-btn-llamada:hover {
  background: #e24f00;
  box-shadow: 0 4px 14px rgba(255, 87, 0, 0.35);
}
body.landing-body ._lpeud-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
body.landing-body ._lpeud-modal__inner {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}
body.landing-body ._lpeud-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
body.landing-body ._lpeud-modal__close:hover {
  color: #ff5700;
}
body.landing-body ._lpeud-modal__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #652D90;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
body.landing-body .wpcf7 {
  width: 100%;
}
body.landing-body .wpcf7-form p {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
body.landing-body .wpcf7-form p label {
  color: #652D90;
  font-size: 0.9rem;
}
body.landing-body .wpcf7-form-control-wrap input {
  display: block;
  width: 100%;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0 10px;
  margin-top: 4px;
  background: #f9f9f9;
  transition: border-color 0.15s;
}
body.landing-body .wpcf7-form-control-wrap input:focus {
  outline: none;
  border-color: #ff5700;
}
body.landing-body .wpcf7-submit {
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  background: #ff5700;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 13px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
body.landing-body .wpcf7-submit:hover {
  background: #e24f00;
}
body.landing-body #altEmail_container,
body.landing-body .altEmail_container {
  position: absolute !important;
  overflow: hidden !important;
  display: inline !important;
  height: 1px !important;
  width: 1px !important;
  z-index: -1000 !important;
}
body.landing-body .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  border: none !important;
}
body.landing-body .wpcf7-form.sent .wpcf7-response-output {
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 600;
}
body.landing-body .wpcf7-form.invalid .wpcf7-response-output,
body.landing-body .wpcf7-form.failed .wpcf7-response-output,
body.landing-body .wpcf7-form.aborted .wpcf7-response-output,
body.landing-body .wpcf7-form.spam .wpcf7-response-output {
  background: #fdecea;
  color: #c62828;
}
