@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Prata&display=swap");
/* CSS BASE - RESET - GRID COL FLEX  */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  font-size: 22px;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: system-ui, sans-serif;
  background-color: #fff;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* RESET TIPOGRÁFICO */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
blockquote,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* Asegurar listas sin estilo por defecto */
ul,
ol {
  list-style: none;
}

/* Estilo base coherente */
body {
  line-height: 1.6;
  font-family: "Geist", sans-serif;
  color: #000;
  background-color: #fff;
}

/* Puedes añadir luego tamaños base para headings si lo deseas */
h1 {
  font-size: 2rem;
  line-height: 2.2rem;
}

h2 {
  font-size: 1.75rem;
  line-height: 2rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.8rem;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h5 {
  font-size: 1rem;
  line-height: 1.25rem;
}

h6 {
  font-size: 0.875rem;
  line-height: 1rem;
}

/* Espaciado para párrafos */
p + p {
  margin-top: 1em;
}

.text-center {
  text-align: center;
}

header {
  position: absolute;
  position: fixed;
  top: 0;
  z-index: 99;
  padding: 1.25rem 0 1.9rem;
  width: 100%;
}

header div {
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* === GRID CSS === */
/* Contenedor centralizado */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
}

/* Fila flex */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Columnas base */
[class^=col] {
  padding: 15px;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

/* Columnas fijas (12 columnas base) */
.col-1 {
  flex: 0 0 8.33%;
  max-width: 8.33%;
}

.col-2 {
  flex: 0 0 16.66%;
  max-width: 16.66%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.col-5 {
  flex: 0 0 41.66%;
  max-width: 41.66%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33%;
  max-width: 58.33%;
}

.col-8 {
  flex: 0 0 66.66%;
  max-width: 66.66%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33%;
  max-width: 83.33%;
}

.col-11 {
  flex: 0 0 91.66%;
  max-width: 91.66%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* >=576px (SM) */
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
  }
  .col-sm-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-sm-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
  .col-sm-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
  .col-sm-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* >=768px (MD) */
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
  }
  .col-md-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-md-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
  .col-md-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
  .col-md-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* >=992px (LG) */
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.33%;
    max-width: 8.33%;
  }
  .col-lg-2 {
    flex: 0 0 16.66%;
    max-width: 16.66%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .col-lg-5 {
    flex: 0 0 41.66%;
    max-width: 41.66%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33%;
    max-width: 58.33%;
  }
  .col-lg-8 {
    flex: 0 0 66.66%;
    max-width: 66.66%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33%;
    max-width: 83.33%;
  }
  .col-lg-11 {
    flex: 0 0 91.66%;
    max-width: 91.66%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.prata-regular {
  font-family: "Prata", serif;
  font-weight: 400;
  font-style: normal;
}

.geist-500 {
  font-family: "Geist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.hero {
  background-color: burlywood;
  height: 100svh;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.hero .container {
  z-index: 2;
  position: relative;
  padding-top: 26vh;
}

.hero h1 {
  font-family: "Geist", sans-serif;
  margin-left: 42.5%;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.3rem;
}

.block-line {
  display: flex;
  align-items: center;
  border-top: 1px solid;
  padding: 0.6rem;
}

.block-line:last-child {
  border-bottom: 1px solid;
}

.block-line h2 {
  width: 42.5%;
  font-size: 1.2rem;
  line-height: 1.7rem;
}

.block-line p {
  width: 57.5%;
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 300;
}

.lines {
  margin-top: 4rem;
}

.services {
  background-color: #D9D9D9;
  padding: 6rem 0;
  position: relative;
}
.services.services-home {
  padding-bottom: 6rem;
}
.services.inversiones {
  padding-bottom: calc(6rem + 19vh);
  z-index: 1;
}

.services h2 {
  margin-top: 52%;
  font-weight: 500;
  line-height: 2rem;
}

.services h3 {
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.service-block {
  display: flex;
  border-top: 1px solid #000;
  padding: 1.5rem 1.1rem;
  background-color: #D9D9D9;
}

.service-block:last-child {
  /* border-bottom: 1px solid #000; */
}
.service-block:last-child figure {
  background-color: transparent;
}

.service-block div:first-child {
  max-width: 57%;
  padding-right: 2rem;
  width: 100%;
}

.service-block figure {
  background-color: #A8C1D8;
  padding: 1.5rem;
  display: flex;
  height: 14rem;
  max-width: 16rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1/1;
}

.inversiones .service-block figure {
  /* background-color: #C79FFF; */
}

.service-block p {
  font-size: 0.8rem;
  line-height: 1rem;
}

.asesoramiento,
.carrusel {
  background-color: #D9D9D9;
  padding: 6rem 0;
  position: relative;
}

.list .list-item {
  display: flex;
  align-items: center;
  border-top: 1px solid #000;
  padding: 0.8rem 0.7rem;
}

.list .list-item span img {
  margin-right: 0.8rem;
  margin-right: 1rem;
  height: 2.3rem;
}

.list .list-item:last-child {
  border-bottom: 1px solid #000;
}

.asesoramiento h2.titflo {
  position: sticky;
  top: 5.5rem;
}

.block-carrusel {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  padding: 2rem 1rem;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  /* height: 331px; */
  height: 15rem;
}

.block-carrusel .text {
  max-width: 62%;
}

.block-carrusel figure {
  padding: 1rem;
  text-align: center;
  width: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-carrusel figure img {
  height: 5.9rem;
}

.block-carrusel h3 {
  font-size: 1.5rem;
  line-height: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.block-carrusel p {
  font-size: 0.8rem;
  line-height: 1rem;
}

.suscribete {
  background-color: #00175B;
  padding: 10rem 0;
  color: #F5F5F5;
  position: relative;
}

.suscribete h2 {
  font-family: "Geist", sans-serif;
  margin-left: 42.5%;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.3rem;
  margin-bottom: 3.5rem;
  text-indent: 1rem;
}

.suscribete h4 {
  font-size: 1.2rem;
}

.suscribete p {
  width: auto;
  font-size: 0.9rem;
}

.suscribete .block-line {
  justify-content: space-between;
  border-bottom: 1px solid;
}

.suscribete input {
  background-color: transparent;
  border: 1px solid #F5F5F5;
  border-radius: 40px;
  padding: 0.2rem 1rem;
}

.suscribete input::-moz-placeholder {
  color: #F5F5F5;
  opacity: 1;
}

.suscribete input::placeholder {
  color: #F5F5F5;
  opacity: 1;
}

.suscribete input:focus,
.suscribete input:focus-visible {
  outline: none;
}

footer .container {
  display: flex;
  gap: 0.682rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid;
  justify-content: space-between;
}

footer {
  padding: 5rem 0;
  background-color: #D9D9D9;
  color: #000;
  position: relative;
}

footer p,
footer ul li,
footer h5,
.sidebar p,
.sidebar ul li,
.sidebar h5 {
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 300;
}

footer p + p {
  margin: 0;
}

footer h5 {
  margin-bottom: 0.7rem;
}

footer.blue {
  background-color: #00175B;
  color: #F5F5F5;
}

.menu {
  cursor: pointer;
  height: 2.73rem;
  width: auto;
  display: none;
}

.menu2 {
  cursor: pointer;
  /* display: none; */
  transition: all 0.2s ease;
}
.menu2:hover {
  scale: 1.2 1;
}

.close {
  position: absolute;
  right: 46px;
  top: 33px;
  cursor: pointer;
  right: 3rem;
  top: 2rem;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #333;
  color: white;
  transition: right 0.3s ease-in-out;
  z-index: 1003;
  background-color: #00175B;
  padding: 8rem 3rem 3rem 3rem;
  overflow: auto;
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#sidebar-contacto {
  background-color: #A8C1D8;
  z-index: 1004;
  color: #000;
}

.sidebar h3 {
  font-weight: 500;
}

#sidebar-contacto input[type=text],
#sidebar-contacto input[type=email],
#sidebar-contacto textarea {
  background-color: transparent;
  border: none;
  width: 100%;
  font-size: 1rem;
  border-bottom: 1px solid;
  padding: 0.7rem;
  font-family: "Geist", sans-serif;
}

#sidebar-contacto .col-12:first-child input {
  border-top: 1px solid;
}

#sidebar-contacto input[type=submit] {
  background: transparent;
  border: none;
  margin-top: 0.5rem;
  margin-left: 0.6rem;
  cursor: pointer;
  font-weight: 500;
  font-family: "Geist", sans-serif;
  font-size: 1rem;
}

#sidebar-contacto input::-moz-placeholder, #sidebar-contacto textarea::-moz-placeholder {
  color: #000;
  font-weight: 500;
}

#sidebar-contacto input::placeholder,
#sidebar-contacto textarea::placeholder {
  color: #000;
  font-weight: 500;
}

#sidebar-contacto input:focus-visible,
#sidebar-contacto textarea:focus-visible {
  border: none;
  outline: none;
  border-bottom: 1px solid;
}

#sidebar-contacto .row {
  margin: 2.5rem 0;
}
#sidebar-contacto .row .wpcf7 {
  width: 100%;
  border-top: 1px solid #000;
}
#sidebar-contacto .row .wpcf7 .col-12 {
  padding: 0;
}
#sidebar-contacto .row .wpcf7 .col-12 .wpcf7-submit {
  border-bottom: 0 none !important;
  margin-bottom: 0.5rem;
}

.sidebar.open {
  right: 0;
}

.sidebar h3 {
  line-height: 2rem;
}

.sidebar .list {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.sidebar .list .list-item {
  padding: 1rem 0.7rem;
}

.sidebar .list .list-item a {
  width: 100%;
  display: block;
  font-size: 1.2rem;
  line-height: 1.3rem;
  font-weight: 500;
  color: #F5F5F5;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar .datos {
  display: flex;
  justify-content: space-between;
}

.sidebar .datos:first-child {
  margin-bottom: 2rem;
}

.sidebar .datos div {
  width: 30%;
}

.sidebar .datos div:first-child {
  width: 70%;
}

.sidebar .list .list-item {
  border-color: #F5F5F5;
}

.hero-inversion {
  background-color: #00175B;
  height: auto;
  padding-bottom: 6rem;
}

.hero-inversion img {
  padding: 3rem;
  margin: 4rem auto;
}

.hero-financiamiento {
  color: #000;
  background-size: cover;
  background-position: center center;
  background-color: #00175B;
}

.hero-financiamiento .list-item {
  padding: 1.1rem 0.7rem;
}

.hero-financiamiento .list-item h3 {
  font-size: 1.2rem;
  line-height: 1.3rem;
  font-weight: 500;
}

.hero-financiamiento .row {
  margin-top: 3rem;
}

.hero-financiamiento .col-lg-5 .list {
  padding-right: 2rem;
}

.financiamiento {
  background-color: #00175B;
  color: #F5F5F5;
  padding-bottom: calc(6rem + 23vh);
}

.financiamiento .service-block div:first-child {
  max-width: 70%;
}

.financiamiento .service-block {
  border-color: #F5F5F5;
  background-color: #00175B;
}

.financiamiento .service-block figure {
  background-color: #10069F;
  width: 9.82rem;
  height: 9.82rem;
}

.financiamiento .service-block:last-child figure {
  opacity: 0;
}

.hero-nosotros {
  background-color: #00175B;
}

.hero-nosotros p {
  line-height: 1.3rem;
  text-indent: 1.3rem;
}

.hero-nosotros .col-lg-7 {
  margin-top: 2rem;
}

.principios h3 {
  font-weight: 300;
  text-indent: 1rem;
  font-size: 1.3rem;
  line-height: 1.5rem;
}

.principios .service-block {
  position: inherit;
}

.equipo {
  background-color: #D9D9D9;
  padding-bottom: 4rem;
  position: relative;
  height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.equipo h2 {
  margin-bottom: 9rem;
  font-weight: 500;
  margin-top: 2rem;
}

.equipo .service-block {
  flex-direction: column;
  background: transparent;
  position: static;
  margin-top: 1.1rem;
  padding: 1.2rem 1.1rem;
}

.equipo .service-block h3 {
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.1rem;
}

.equipo .service-block h3 + h3 {
  font-weight: 300;
}

.block-equipo {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  overflow-x: auto;
}

.menu-secondary {
  position: relative;
  top: 0;
  z-index: 99;
  padding: 2rem 0;
  width: 100%;
}

.menu-secondary > div {
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
}

/* .logo-black {
  display: none;
} */
header .logo-black {
  display: none;
}

header .logo-white {
  display: block;
}

header.azul .logo-white {
  display: none;
}

header.azul .logo-black {
  display: block;
}

header.azul svg path,
header.azul svg line {
  stroke: #000;
}

.mobile {
  display: none;
}

/* .azul {
background-color: rgba(0, 72, 255, 0.705) !important;
}

.verde {
  background-color: rgba(8, 176, 95, 0.403) !important;
   stroke: #f5f5f5;
} */
.hero-home {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.services-home {
  /* top: 100svh;
  margin-top: 0 !important; */
  margin-top: 100svh;
}

/* header.oscuro { background-color: #11111145; color: white; }
header.claro { background-color: #0ed22c73; color: black; }
 header.rosa { background-color: #c915e56d; color: white; }  */
.animar,
.ani {
  opacity: 0;
  transform: translateY(50px);
}

.desktop {
  display: block;
}

.services h2 {
  position: sticky;
  margin-top: 0;
  top: 5.5rem;
  margin-bottom: 3rem;
}

.inversiones h2 {
  margin-bottom: 6rem;
}

.principios h2 {
  margin-bottom: 3rem;
}

.financiamiento h2 {
  margin-bottom: -3rem;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .service-block figure {
    height: 9rem;
  }
  .service-block {
    position: sticky;
    transform-origin: top left;
  }
  .service-block:first-child {
    top: 5rem;
    translate: 0 0;
  }
  .service-block:nth-child(2) {
    top: 5rem;
    translate: 0 4rem;
  }
  .service-block:nth-child(3) {
    top: 5rem;
    translate: 0 8rem;
  }
  .service-block:nth-child(4) {
    top: 5rem;
    translate: 0 12rem;
  }
  .service-block:nth-child(5) {
    top: 5rem;
    translate: 0 16rem;
  }
  .financiamiento .service-block:first-child {
    top: 5rem;
    translate: 0 0;
  }
  .financiamiento .service-block:nth-child(2) {
    top: 5rem;
    translate: 0 4.5rem;
  }
  .financiamiento .service-block:nth-child(3) {
    top: 5rem;
    translate: 0 10.5rem;
  }
  .financiamiento .service-block:nth-child(4) {
    top: 5rem;
    translate: 0 16.5rem;
  }
  .financiamiento .service-block:nth-child(5) {
    top: 5rem;
    translate: 0 16rem;
  }
  .principios .service-block {
    translate: 0;
  }
  .block-equipo .service-block {
    translate: 0;
    border-bottom: 1px solid #000;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  /* html {
    font-size: 18px;
  } */
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  .service-block figure {
    height: 11rem;
  }
  /* html {
    font-size: 18px;
  } */
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .service-block figure {
    height: 14rem;
  }
  /* html {
    font-size: 22px;
  } */
  .hero .container {
    padding-top: 21vh;
  }
  /* .hero h1 {
    font-size: 1.9rem;
  } */
}
@media (min-width: 1460px) {
  .container {
    max-width: 1440px;
  }
}
@media (max-width: 1200px) {
  .hero h1 {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 16px;
  }
  .hero h1,
  .suscribete h2 {
    margin-left: 0;
  }
  .block-line {
    flex-direction: column;
  }
  .block-line h2,
  .block-line p {
    width: 100%;
  }
  .services h2 {
    margin-top: 1rem;
    position: initial;
    margin-bottom: 0;
  }
  .suscribete .block-line {
    align-items: flex-start;
  }
  .suscribete p {
    margin: 0.8rem 0;
  }
  .service-block div:first-child {
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .asesoramiento h2 {
    margin-top: 2rem;
  }
  .asesoramiento .row {
    flex-direction: column-reverse;
    margin-right: 0.48rem;
    margin-left: 0.48rem;
  }
  .hero-inversion {
    height: 100svh;
  }
  .hero {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
  /* .services {
    position: relative;
    margin-top: 100vh;
  } */
  .asesoramiento,
  .carrusel,
  .suscribete,
  footer {
    position: relative;
  }
  .block-carrusel {
    height: auto;
    flex-direction: column;
  }
  .block-carrusel .text {
    max-width: 100%;
    height: 7rem;
    margin-bottom: 2rem;
  }
  .block-carrusel figure {
    width: 100%;
  }
  .block-carrusel figure img {
    height: auto;
  }
  .carrusel .row {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .carrusel {
    position: sticky;
    top: 0;
  }
  .hero-nosotros {
    min-height: 100svh;
    overflow-y: auto;
  }
  .financiamiento .service-block div:first-child {
    max-width: 100%;
  }
  .financiamiento .service-block {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
  }
  .financiamiento .service-block figure {
    width: 100%;
    height: auto;
  }
  .financiamiento .service-block div:first-child {
    flex: 6;
  }
  .financiamiento .service-block div:last-child {
    flex: 4;
  }
}
@media (max-width: 768px) {
  .service-block {
    /* flex-direction: column; */
  }
  footer .container {
    flex-direction: column;
    display: none;
  }
  header div {
    padding: 0 1rem;
  }
  .block-line h2 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .close {
    right: 18px;
  }
  .sidebar .datos {
    flex-direction: column;
  }
  .hero-financiamiento .col-lg-5 {
    padding-bottom: 0;
  }
  .hero-financiamiento .col-lg-7 {
    padding-top: 0;
  }
  .hero-financiamiento .col-lg-5 .list {
    padding-right: 0;
  }
  .hero-financiamiento .col-lg-5 .list .list-item:last-child {
    border-bottom: none;
  }
  .financiamiento .service-block div:first-child {
    max-width: 100%;
    padding-right: 0;
  }
  .service-block figure {
    height: auto;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }
  .mobile {
    display: block;
    padding-right: 1rem;
    padding-left: 1rem;
    word-break: break-word;
  }
  .sidebar .mobile {
    padding: 0;
  }
  .desktop {
    display: none;
  }
  #sidebar-contacto .mobile hr {
    border: none;
    border-bottom: 1px solid #000;
  }
  footer {
    padding-bottom: 2rem;
  }
  .sidebar .list .list-item {
    padding: 0.8rem 0rem;
  }
  .sidebar .list .list-item a {
    font-size: 1rem;
    line-height: 1.1rem;
  }
  .sidebar p,
  .sidebar ul li,
  .sidebar h5 {
    font-size: 0.7rem;
    line-height: 0.9rem;
  }
  .sidebar h3 {
    display: none;
  }
  .sidebar {
    padding: 6rem 3rem 3rem 3rem;
  }
}
/* =======================
   Escalado de fuente base
   1rem = 22px por defecto
========================== */
.hero h1 {
  font-size: 2.182rem;
  line-height: 2.182rem;
  font-weight: 500;
  text-indent: 1.8rem;
}

.hero-home {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-line h2 {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 500;
}

.block-line {
  padding: 1.1rem;
}

.block-line p {
  width: 60%;
  font-size: 0.82rem;
  line-height: 0.82rem;
}

.services h2,
.services h3 {
  font-size: 1.64rem;
  line-height: 1.64rem;
}

.services h3 {
  margin-top: 0.3rem;
}

.service-block p {
  font-size: 0.82rem;
  line-height: 0.82rem;
  text-indent: 0.3rem;
  font-weight: 300;
}

.service-block figure {
  height: 16.4rem;
  width: 16.4rem;
  max-width: 100%;
}

@media (min-width: 992px) {
  .services-home .col-lg-7,
  .services.inversiones .col-lg-7 {
    flex: 0 0 63.33%;
    max-width: 63.33%;
  }
  .services.inversiones .col-lg-5,
  .services-home .col-lg-5 {
    flex: 0 0 36.66%;
    max-width: 36.66%;
  }
  .hero h1,
  .suscribete h2 {
    /* margin-left: 39.5%; */
  }
  .block-line h2 {
    /* width: 39.5%; */
  }
  .block-carrusel .text {
    max-width: 69%;
  }
  .block-carrusel figure {
    width: 31%;
    padding-top: 1.5rem;
  }
}
.block-carrusel {
  height: 100%;
  padding-bottom: 3.2rem;
  padding-top: 2rem;
}

.service-block {
  padding: 1.2rem 1.1rem;
}

.asesoramiento h3,
.asesoramiento h2 {
  font-size: 1.64rem;
  font-weight: 500;
  line-height: 1.64rem;
}

.list .list-item span img {
  height: 3.28rem;
  aspect-ratio: 1/1;
}

.list .list-item {
  padding: 0.55rem 0.7rem;
}

.block-carrusel h3 {
  font-size: 1.64rem;
  font-weight: 500;
  line-height: 1.64rem;
}

.block-carrusel p {
  font-size: 0.82rem;
  line-height: 0.82rem;
  text-indent: 0.2rem;
  font-weight: 300;
}

.block-carrusel figure img {
  height: 8.3rem;
}

.block-carrusel .text {
  padding-right: 2rem;
}

.block-line p {
  width: auto;
  font-weight: 300;
}

.suscribete h4 {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 500;
}

.suscribete input {
  font-size: 0.82rem;
  line-height: 0.82rem;
  font-weight: 300;
  width: 14.2rem;
  padding: 0.36rem 1rem;
}

.suscribete .block-line {
  padding: 0.68rem;
}

.asesoramiento,
.carrusel {
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.suscribete {
  padding: 6rem 0;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer p,
footer ul li,
footer h5,
.sidebar p,
.sidebar ul li,
.sidebar h5 {
  font-size: 0.7rem;
  line-height: 0.7rem;
  font-weight: 300;
}

footer {
  padding: 5.5rem 0;
}

.sidebar {
  max-width: 45.85rem;
  padding: 6rem 5.5rem 2.2rem 3.2rem;
}

.sidebar h3 {
  line-height: 1.65rem;
  font-size: 1.65rem;
  font-weight: 500;
  text-indent: 1rem;
}

.sidebar .list .list-item a {
  font-size: 1.1rem;
  line-height: 1.1rem;
  width: auto;
  transition: all 0.3s ease;
}
.sidebar .list .list-item a:hover {
  opacity: 0.8;
}

.sidebar p,
.sidebar ul li,
.sidebar h5 {
  font-size: 0.82rem;
  line-height: 0.82rem;
  font-weight: 300;
}

.sidebar p + p {
  margin-top: 0;
}

.sidebar .desktop .datos + .datos p,
.sidebar .desktop .datos + .datos ul li,
.sidebar .desktop .datos + .datos h5 {
  font-size: 0.7rem;
  line-height: 0.7rem;
}

.sidebar .desktop .datos + .datos h5 {
  margin-bottom: 0.6rem;
}

.sidebar .datos div:first-child {
  width: 70%;
}

.sidebar .datos div {
  width: 24%;
}

#sidebar-contacto h3 {
  text-indent: 0;
}

#sidebar-contacto input[type=text],
#sidebar-contacto input[type=email],
#sidebar-contacto textarea,
#sidebar-contacto input[type=submit] {
  font-size: 1.1rem;
  line-height: 1.1rem;
}

/* inversion */
.hero-inversion {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.hero-inversion .container {
  padding-top: 18vh;
}

footer.footer-gris p,
footer.footer-gris ul li,
footer.footer-gris h5 {
  font-size: 0.65rem;
  line-height: 0.65rem;
  font-weight: 300;
}

footer.footer-gris .container {
  padding-bottom: 1.1rem;
}

.hero-inversion img {
  padding: 0;
  margin: 0;
  max-width: 75.9rem;
  width: 100%;
  margin-top: 8rem;
}

/* financiamiento */
.hero-financiamiento {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
}

.hero-financiamiento .container {
  padding-top: 0;
}

.hero-financiamiento .col-lg-5 {
  max-width: 26.2rem;
  padding: 0;
  max-width: 25.7rem;
  padding-right: 2rem;
}

.hero-financiamiento .col-lg-5 .list {
  padding: 0;
}

.hero-financiamiento .container {
  padding-top: 0;
  /* max-width: 70.8rem; */
}

.hero-financiamiento .col-lg-7 {
  padding: 0;
  padding-left: 0.8rem;
}

.hero-financiamiento .list-item h3 {
  font-size: 1.1rem;
  line-height: 1.1rem;
}

.hero-financiamiento .list .list-item {
  padding: 1.4rem 0.7rem;
}

.uno {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 4rem;
}

.uno .dos {
  width: 32%;
}

.uno .dos + .dos {
  width: 63%;
}

.services.financiamiento h2 {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 400;
  padding-right: 3.3rem;
  text-indent: 0.8rem;
}

.hero-nosotros {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nosotros .container {
  padding-top: 4vh;
}

.hero-nosotros p {
  font-size: 1.1rem;
  line-height: 1.1rem;
  text-indent: 1.1rem;
  font-weight: 400;
}

.hero-nosotros .container {
  max-width: 72.75rem;
}

.hero-nosotros .col-lg-7 {
  margin-top: 6rem;
}

.hero-nosotros .col-lg-5 {
  position: relative;
  top: -1rem;
}

.principios h3 {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 300;
}

.equipo .container + .container {
  max-width: 70.48rem;
}

.principios {
  display: flex;
  justify-content: center;
  height: 100svh;
  align-items: center;
}

.suscribete {
  position: sticky;
  top: -11rem;
}

.hero-text {
  padding-top: 55svh;
  width: 43%;
  margin-right: 6rem;
  margin-right: 10rem;
}

.hero-nosotros {
  height: 160svh;
  position: relative;
  align-items: normal;
  justify-content: end;
  background-color: #001866;
}

.hero-nosotros img,
.hero-nosotros video {
  position: fixed;
  top: 10rem;
  left: 6rem;
  width: 28rem;
  mix-blend-mode: lighten;
}

.container {
  max-width: 65.45rem;
  /* font-size 22px -  1440px */
}

.hero-home .container {
  padding-top: 3.5rem;
}

.hero-inversion {
  height: 150svh;
  position: relative;
  top: 0;
}

.hero-inversion .container {
  padding-top: 0;
  height: 100%;
}

.hero-inversion h1 {
  /* top: 50vh; */
  /* z-index: 6; */
  /* position: absolute; */
  padding-top: 30vh;
}

.hero-inversion img {
  position: absolute;
  top: 90vh;
  top: 50vh;
}

section.simple {
  background-color: #00175B;
  min-height: 100svh;
  padding: 10rem 0;
  color: #fff;
}
section.simple h1 {
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
section.simple .cuerpo {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
section.simple .cuerpo .formato {
  font-size: 0.8rem;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
section.simple .cuerpo .formato * {
  font-weight: 300;
}
section.simple .cuerpo .img {
  line-height: 0;
  text-align: center;
}
section.simple .cuerpo .img img {
  margin: 0 auto;
  width: 100%;
  max-width: 38rem;
  height: auto;
}
section.simple .cuerpo .desdes {
  text-align: right;
  line-height: 1.2;
  padding-top: 1rem;
}
section.simple .cuerpo .desdes a {
  font-size: 0.8rem;
}
section.simple.tiene-descarga {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.simple.tiene-descarga h1 {
  margin-bottom: 0;
  line-height: 1.2;
}
section.simple.tiene-descarga a.descarga {
  width: 90vw;
  max-width: 46rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.7rem;
  line-height: 1.2;
}

.rowca {
  position: relative;
  margin-left: 2rem;
  margin-right: 2rem;
}
.rowca .swiper-button-next {
  right: -2rem;
}
.rowca .swiper-button-next svg {
  height: 2.4rem;
  width: 2.4rem;
}
.rowca .swiper-button-next:after {
  display: none;
}
.rowca .swiper-button-prev {
  left: -2rem;
}
.rowca .swiper-button-prev svg {
  height: 2.4rem;
  width: 2.4rem;
}
.rowca .swiper-button-prev:after {
  display: none;
}

.boton-new {
  display: inline-flex;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 0.8185rem;
  line-height: 1.1rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  border: 1px solid #000000;
  margin-top: 2rem;
  transition: all 0.3s ease;
}
.boton-new:hover {
  opacity: 0.8;
}

.abre-vacamuerta {
  cursor: pointer;
}

.vacamuerta {
  position: fixed;
  z-index: 9999;
  right: 0;
  translate: 100% 0;
  top: 0;
  bottom: 0;
  background-color: #00175B;
  width: 53.5rem;
  max-width: 100%;
  overflow-y: auto;
  transition: translate 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vacamuerta .sup {
  position: sticky;
  top: 0;
  height: 4rem;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vacamuerta .sup .botones-new a {
  background-color: #00175B;
}
.vacamuerta .med {
  padding: 0 5.5rem;
  margin-bottom: auto;
  z-index: 1;
  position: relative;
}
.vacamuerta .med .bloque {
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.vacamuerta .med .bloque:first-child {
  padding-top: 0;
}
.vacamuerta .med .bloque:last-child {
  border-bottom: 0 none;
}
.vacamuerta .med .bloque .formato h2 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  text-indent: 0.7em;
  margin-bottom: 1.6rem;
}
.vacamuerta .med .bloque .formato h3 {
  font-size: 1.6rem;
  font-weight: 500;
  max-width: 27rem;
  line-height: 1;
  text-indent: 0.7em;
  margin-bottom: 1.6rem;
}
.vacamuerta .med .bloque .formato p {
  font-size: 0.8rem;
  text-indent: 0.4em;
  line-height: 1.05;
  margin-bottom: 1.5em;
}
.vacamuerta .med .bloque .formato p:last-child {
  margin-bottom: 0;
}
.vacamuerta .med .bloque.doscol {
  display: grid;
  grid-template-columns: 1fr 8rem;
  gap: 5rem;
}
.vacamuerta .med .bloque.doscol figure {
  line-height: 0;
}
.vacamuerta .med .bloque.doscol figure img {
  width: 100%;
  height: auto;
}
.vacamuerta .inf {
  padding: 2rem 5.5rem;
  font-size: 0.6rem;
  font-weight: 300;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.vacamuerta.seve {
  translate: 0 0;
}

.botones-new {
  position: absolute;
  right: 6rem;
  top: 1.5rem;
  display: flex;
  gap: 1rem;
}
.botones-new a {
  display: block;
  padding: 0.1rem 1.2rem;
  font-size: 0.8rem;
  border: 1px solid #ffffff;
  border-radius: 3rem;
  transition: all 0.3s ease;
}
.botones-new a:hover {
  opacity: 0.8;
}
.botones-new.en-header {
  padding: 0;
}
header.claro .botones-new.en-header a {
  border-color: #ffffff;
  color: #ffffff;
}
header.azul .botones-new.en-header a {
  border-color: #000000;
  color: #000000;
}

/* =======================
Media queries responsive
========================== */
@media (min-width: 1600px) {
  .carrusel .container {
    max-width: 1630px;
  }
  .hero-financiamiento .container {
    max-width: 70.8rem;
  }
}
/* ≤1600px: 20px */
@media (max-width: 1600px) {
  html {
    font-size: 17.2px;
  }
  .container {
    max-width: 68rem;
  }
  /* .hero-text {
    width: 43%;
        margin-right: 10vh;
  } */
  .hero-text {
    width: 47%;
    margin-right: 19vh;
  }
  .hero-nosotros img,
  .hero-nosotros video {
    /* width: 24rem; */
    top: 20vh;
    width: 28rem;
  }
  .botones-new {
    top: 1.8rem;
  }
}
@media (max-width: 1440px) {
  html {
    font-size: 16.5px;
  }
}
/* ≤1200px: 18px */
@media (max-width: 1200px) {
  html {
    font-size: 16px;
  }
  .hero-text {
    width: 40%;
  }
  .hero-nosotros img,
  .hero-nosotros video {
    width: 19rem;
    top: 19rem;
  }
  .container {
    max-width: 62rem;
  }
  .hero-inversion img {
    max-width: 80%;
  }
}
@media (min-width: 1200px) and (max-width: 1336px) {
  .hero-nosotros img,
  .hero-nosotros video {
    width: 23rem;
    top: 14rem;
  }
}
/* ≤992px: 16px */
@media (max-width: 992px) {
  .menu {
    display: none;
  }
  .menu2 {
    display: block;
  }
  header {
    padding: 1.5rem 0;
  }
  header div {
    padding: 0 1.5rem;
  }
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .lines .block-line {
    padding-left: 0;
    padding-right: 0;
  }
  .lines .block-line p {
    width: 100%;
  }
  .hero-nosotros {
    height: 100svh;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    flex-direction: column;
    padding-right: 30px;
    padding-left: 30px;
  }
  .hero-nosotros img,
  .hero-nosotros video {
    position: static;
  }
  .hero-nosotros .hero-text {
    width: 100%;
    margin: 0;
    transform: none;
    margin-top: 2rem;
    padding-top: 0;
  }
  .uno {
    flex-direction: column;
    gap: 0;
  }
  .uno .dos,
  .uno .dos + .dos {
    width: 100%;
  }
  .uno .dos + .dos .list .list-item:first-child {
    border-top: none;
  }
  .hero-nosotros p {
    font-size: 1rem;
    line-height: 1rem;
    text-indent: 1rem;
  }
  .hero-nosotros .col-lg-5 img,
  .hero-nosotros .col-lg-5 video {
    max-width: 18.2rem;
    margin: 0 auto;
  }
  .hero-nosotros .col-lg-7 {
    margin-top: 1rem;
  }
  .hero-nosotros .container {
    padding-top: 0;
  }
  .hero-nosotros .row,
  .principios .row {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
  header a img {
    max-width: 11.6rem;
  }
  .botones-new {
    top: 1.6rem;
  }
  .principios h2 {
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  .principios h3 {
    font-size: 1rem;
    text-indent: 0.5rem;
  }
  .principios .service-block {
    padding: 1.2rem 0.6rem;
  }
  footer .mobile img.img-fluid {
    max-width: 2.7rem;
    float: right;
  }
  .hero-financiamiento h1 {
    font-size: 1.72rem;
  }
  .hero-financiamiento h1 br {
    display: none;
  }
  .financiamiento {
    /* display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: sticky;
    top: 0; */
  }
  .financiamiento + footer.blue {
    display: flex;
    justify-content: center;
    align-items: end;
  }
  .hero-inversion h1 {
    font-size: 1.72rem;
    line-height: 1.72rem;
    max-width: 80%;
    margin: auto;
  }
  .hero-inversion img {
    max-width: 25.6rem;
    margin-top: 4rem;
  }
  .inversiones h2 {
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    line-height: 1rem;
    margin-bottom: 0;
    padding-top: 3rem;
  }
  .inversiones .service-block h3,
  .services-home .service-block h3 {
    font-size: 1.15rem;
    line-height: 1.15rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  .suscribete input {
    font-size: 0.86rem;
    line-height: 0.86rem;
    width: 100%;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  footer {
    padding: 2rem 0;
    padding-bottom: 0.5rem;
  }
  .services.inversiones {
    margin-top: 0;
  }
}
@media (min-width: 992px) and (max-width: 1600px) {
  /* .services.inversiones .service-block:first-child {
    top: 18rem;
  }

  .services.inversiones .service-block:nth-child(2) {
    top: 21.5rem;
  }

  .services.inversiones .service-block:nth-child(3) {
    top: 25rem;
  }

  .services.inversiones .service-block:nth-child(4) {
    top: 34px;
  }

  .services.inversiones .col-lg-7 {
    padding-bottom: 8rem;
  } */
}
@media (min-width: 768px) and (max-width: 992px) {
  /*  .services.inversiones .service-block:first-child {
     top: 27rem;
   }

   .services.inversiones .service-block:nth-child(2) {
     top: 31rem;
   }

   .services.inversiones .service-block:nth-child(3) {
     top: 35rem;
   }

   .services.inversiones .col-lg-7 {
     padding-bottom: 10rem;
   } */
}
@media (min-width: 1600px) {
  .services.inversiones .col-lg-7 {
    padding-bottom: 3rem;
  }
}
/* ≤768px: 14px */
@media (width < 768px) {
  html {
    font-size: 14px;
  }
  .service-block figure {
    width: 100%;
    height: auto;
  }
  .equipo {
    overflow-x: hidden;
  }
  .block-equipo {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .block-equipo::before,
  .block-equipo::after {
    content: "";
    flex: 0 0 calc(50vw - 8rem);
  }
  .equipo-item {
    flex: 0 0 16rem;
    scroll-snap-align: center;
    max-width: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .equipo-item img {
    width: 100%;
    max-width: 12rem;
    margin: 0 auto;
    display: block;
  }
  .hero-inversion h1 {
    max-width: initial;
  }
  .hero-inversion {
    height: 100svh;
  }
  .hero-inversion img {
    max-width: 93vw;
  }
  .equipo-item img {
    width: 100%;
  }
  /* Opcional: quitar scrollbars en móviles */
  .block-equipo::-webkit-scrollbar {
    display: none;
  }
  .equipo .container + .container {
    /* margin-left: 7rem; */
    margin: 0;
    padding: 0;
  }
  .equipo .block-equipo .equipo-item:last-child {
    /* margin-right: 7rem; */
  }
  .equipo .service-block h3 {
    font-size: 1rem;
    line-height: 1rem;
  }
  .equipo h2 {
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    font-weight: 400;
  }
  .principios,
  .equipo {
    /* position: sticky; */
    /* top: 0; */
  }
  .equipo {
    /* top: -11rem; */
  }
  .hero-financiamiento {
    background-position: 36%;
    position: relative;
  }
  .hero-financiamiento .list-item h3 {
    font-size: 1rem;
    line-height: 1rem;
  }
  .financiamiento .service-block figure {
    max-width: 9rem;
  }
  .financiamiento .service-block div:first-child {
    flex: 5;
  }
  .financiamiento .service-block div:last-child {
    flex: 2;
  }
  .financiamiento .service-block h3 {
    font-size: 1.15rem;
  }
  .inversiones .service-block,
  .services-home .service-block {
    padding: 0;
  }
  .principios .row,
  .inversiones .row,
  .asesoramiento .row,
  .carrusel .row,
  .services-home .row {
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .principios .col-12,
  .asesoramiento .col-12 {
    padding-left: 0;
    padding-right: 0;
  }
  .inversiones .service-block figure,
  .services-home .service-block figure {
    margin-bottom: 1.5rem;
  }
  .inversiones .service-block {
    /* position: sticky; */
    /* top: 8rem; */
  }
  .equipo + footer,
  .inversiones + footer {
    display: flex;
    justify-content: center;
    align-items: end;
    overflow: hidden;
  }
  .hero-home h1 {
    font-size: 1.73rem;
    line-height: 1.73rem;
  }
  .hero-home .block-line h2,
  .hero-home .block-line p {
    font-size: 0.86rem;
    line-height: 0.86rem;
  }
  .services-home h2 {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
  }
  .services-home h2 br {
    display: none;
  }
  .services-home h3 {
    font-size: 1.15rem;
    line-height: 1.15rem;
    font-weight: 500;
  }
  .services-home .service-block p {
    font-size: 0.86rem;
    text-indent: 1rem;
  }
  .asesoramiento h2 {
    font-size: 1rem;
    line-height: 1rem;
    text-align: left;
  }
  .asesoramiento h3 {
    font-size: 1.15rem;
    line-height: 1.15rem;
    font-weight: 500;
  }
  .block-carrusel {
    padding-right: 0;
    padding-left: 0;
    padding-top: 1rem;
  }
  .block-carrusel h3 {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.15rem;
  }
  .block-carrusel p {
    font-size: 0.86rem;
    line-height: 0.86rem;
    font-weight: 300;
  }
  .block-carrusel figure img {
    height: 9.45rem;
  }
  .suscribete h2 {
    font-size: 1.72rem;
    line-height: 1.72rem;
  }
  .suscribete h4,
  .suscribete .block-line p {
    font-size: 0.86rem;
    line-height: 0.86rem;
  }
  .suscribete .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  footer.blue {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
  body.page-template-plantilla-home footer.blue {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .services-home .service-block {
    /* padding: 0; */
    /* position: sticky; */
    /* top: 7rem; */
  }
  .financiamiento .service-block,
  .services-home .service-block,
  .inversiones .service-block {
    position: sticky;
    transform-origin: top left;
  }
  .financiamiento .service-block {
    padding: 1rem 0;
    gap: 1rem;
  }
  .financiamiento .service-block figure {
    width: 9rem;
  }
  .services-home .service-block:first-child, .inversiones .service-block:first-child {
    top: 5rem;
    translate: 0 0;
  }
  .services-home .service-block:nth-child(2), .inversiones .service-block:nth-child(2) {
    top: 5rem;
    translate: 0 3rem;
  }
  .services-home .service-block:nth-child(3), .inversiones .service-block:nth-child(3) {
    top: 5rem;
    translate: 0 6rem;
  }
  .services-home .service-block:nth-child(4), .inversiones .service-block:nth-child(4) {
    top: 5rem;
    translate: 0 9rem;
  }
  .services-home .service-block:nth-child(5), .inversiones .service-block:nth-child(5) {
    top: 5rem;
    translate: 0 8rem;
    overflow: hidden;
    height: 37rem;
  }
  .services.inversiones {
    padding-top: 0;
  }
  .financiamiento .service-block:first-child {
    top: 5rem;
    translate: 0 0;
  }
  .financiamiento .service-block:nth-child(2) {
    top: 5rem;
    translate: 0 6rem;
  }
  .financiamiento .service-block:nth-child(3) {
    top: 5rem;
    translate: 0 12rem;
  }
  .financiamiento .service-block:nth-child(4) {
    top: 5rem;
    translate: 0 18rem;
  }
  .financiamiento .service-block:nth-child(5) {
    top: 5rem;
    translate: 0 24rem;
  }
  .principios .service-block {
    translate: 0;
  }
  .block-equipo {
    padding: 0;
  }
  .block-equipo .service-block {
    translate: 0;
    border-bottom: 1px solid #000;
  }
  .asesoramiento {
    position: relative;
  }
  .carrusel {
    position: sticky;
    top: 0;
  }
  .hero .container {
    padding-left: 2.2rem;
    padding-right: 2.2rem;
  }
  .hero-home .block-line {
    padding: 0.5rem 0rem;
  }
  .hero-home .block-line h2 {
    margin-bottom: 0.4rem;
  }
  footer.blue [class^=col] {
    padding: 0.2rem 1rem;
  }
  .sidebar {
    padding: 3rem 2.2rem 1.5rem 2.2rem;
  }
  .sidebar .mobile .col-3 img.img-fluid {
    max-width: 2.8rem;
    float: right;
  }
  .sidebar .mobile [class^=col] {
    padding: 0.2rem 1rem;
  }
  .sidebar .list {
    margin-top: 5rem;
    margin-bottom: 5.5rem;
  }
  .sidebar .mobile h5 {
    margin-bottom: 0.5rem;
  }
  #sidebar-contacto > .row .col-12 {
    padding: 0;
  }
  #sidebar-contacto .mobile .row {
    margin: 5rem -1rem 0.2rem -1rem;
  }
  footer .mobile [class^=col] {
    padding: 0.3rem 1rem;
  }
  footer {
    padding: 1rem 0;
    overflow: hidden;
  }
  .inversiones .service-block p {
    min-height: 2.7rem;
  }
  .inversiones .service-block figure {
    height: 100%;
    aspect-ratio: 1/1;
  }
  .services-home .col-12 {
    padding: 0 0 2rem;
  }
  .service-block {
    flex-direction: column;
  }
  .service-block.service-ultimo {
    display: none;
  }
  .service-block div:first-child {
    padding-right: 0;
  }
  .services-home .service-block {
    min-height: 37rem;
  }
  section.simple {
    padding: 9rem 0;
  }
  section.simple .cuerpo .formato {
    font-size: 1rem;
  }
  .boton-new {
    margin-top: 1rem;
  }
  .vacamuerta .med {
    padding: 0 1.5rem;
  }
  .vacamuerta .med .bloque.doscol {
    grid-template-columns: 1fr 7rem;
    gap: 1rem;
  }
  .vacamuerta .inf {
    padding: 1rem 1.5rem;
  }
  .botones-new {
    display: none;
  }
  .sidebar .botones-new {
    display: flex;
    right: 4rem;
    top: 1.7rem;
  }
  footer ul li {
    margin-bottom: 0.2rem;
  }
  footer ul li a {
    display: inline-block;
  }
}
.suscribete .wpcf7-not-valid-tip {
  color: #ffffff;
  margin-top: 0.5rem;
}

#sidebar-contacto .wpcf7-not-valid-tip {
  color: #000;
  margin-top: 0.5rem;
}

.suscribete .wpcf7 {
  flex: 0 0 21%;
}

.suscribete .wpcf7 form.invalid .wpcf7-response-output,
.suscribete .wpcf7 form.failed .wpcf7-response-output,
.suscribete .wpcf7 form.aborted .wpcf7-response-output,
.suscribete .wpcf7 form.sent .wpcf7-response-output,
.suscribete .wpcf7 form.spam .wpcf7-response-output {
  border-color: #fff;
  font-size: 0.8rem;
  line-height: 1rem;
}

#sidebar-contacto .wpcf7 form.invalid .wpcf7-response-output,
#sidebar-contacto .wpcf7 form.failed .wpcf7-response-output,
#sidebar-contacto .wpcf7 form.aborted .wpcf7-response-output,
#sidebar-contacto .wpcf7 form.sent .wpcf7-response-output,
#sidebar-contacto .wpcf7 form.spam .wpcf7-response-output {
  border-color: #000;
  margin: 0;
  font-size: 0.8rem;
  color: #000;
}/*# sourceMappingURL=main.css.map */