@charset "utf-8";
 @import url("https://use.typekit.net/rby0tbu.css");
/* CSS Document */

:root {
  --font-general: articulat-cf, sans-serif;
  --dark: #001b8c;
  --light: #F9FAFC;
  --color-1: #001b8c;
  --color-2: #7780ed;
  --color-3: #76dbdd;
  --color-4: #4aa6e5;
  --shadow: 0 0 3rem rgba(0,0,0,0.1);
}


html {
  font-size: 10px; /* 1rem = 10px */
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-optical-sizing: auto;
  font-style: normal;
}


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

body {
  font-family: var(--font-general);
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: var(--light);
}

body.no-scroll {
  overflow-x: hidden;
}



.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 6rem;
}

/*-----------------
HEADER
------------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* NAVBAR */
.navbar {
  transition: all 0.3s ease;
}
/* NAVBAR */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

/* NAV TODO JUNTO */
.nav {
  display: flex;
  align-items: center;
  gap: 6rem;
}
.nav-item {
font-size: 1.6rem;
color: var(--dark);
text-decoration: none;
font-weight: 600;
letter-spacing: .2rem;
}

.nav .btn-home, .mobile-home, .btn-menu {
  color: transparent;
  background-image: url("images/icon-home.svg");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 3rem;
  height: 3rem;
  transition: all 0.3s ease;
}
/* HOVER */
.nav .btn-home:hover {
  transform: scale(1.1);
}
.btn-menu {
  background-image: url("images/icon-menu.svg");
  border: none;
  background-color: transparent;
}


.nav .btn-contact {
  display: inline-flex;
  align-items: center;
  margin-left: 1rem;
  height: 5rem;
  padding: 0 6rem 0 2rem;
  border-radius: 1rem;
  background-color: var(--tertiary);
  background-image: url("images/icon-send.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 2.4rem;
  color: var(--dark);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* HOVER */
.nav .btn-contact:hover {
  transform: translateY(-.4rem);
}

/* MOBILE ELEMENTS */
.menu-toggle {
  display: none;
}
.mobile-home {
  display: none;
}

/* LOGO */
.navbar .navbar-inner .logo {
  width: 26rem;
  transition: all 0.3s ease;
}
.navbar .navbar-inner .logo img {
  width: 100%;
  height: auto
}




/* STICKY EFFECT */
.header.scrolled .topbar {
  display: none;
}
.header.scrolled .navbar {
  background: white;
  box-shadow: var(--shadow);
}
.header.scrolled .navbar .navbar-inner {
  padding: 1rem 0;
}
.header.scrolled .navbar .navbar-inner .logo {
  width: 20rem;
}
.header.scrolled  {
  position: fixed;
}





/*-----------------
SIDE MENU
------------------*/

.side-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: white;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

/* ACTIVE */
.side-menu.active {
  transform: translateX(0);
}

/* INNER */
.side-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 4rem 3rem;
}

/* CLOSE */
.side-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
}

/* TOP */
.side-top {
  margin-bottom: 6rem;
}

.side-top img {
  width: 18rem;
}

/* NAV */
.side-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.side-nav a {
  font-size: 2.4rem;
  line-height: 3rem;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
}

/* FOOTER */
.side-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--primary);
}
.side-footer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.side-footer-item  .icon {
  width: 2.6rem;
}
.side-footer-item .value {
  color: var(--dark);
  font-weight: 500;
  font-size: 1.6rem;
}


/*-----------------
MAIN BANNER
------------------*/

/* HERO */
.hero {
  display: flex;
  align-items: center;
  min-height: 100dvh;
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  border-radius: 0 0 30rem 0;
  background-color: var(--light);
}

/* INNER */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}

/* LEFT */
.hero-content {
  flex: 1;
}
/* RIGHT */
.hero-media {
  flex: 1;
  display: flex;
  justify-content: right;
}

.hero-media img {
  width: 90%;
  height: auto;
}
.hero-content h1 {
  font-size: 6rem;
  line-height: 5rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.hero-content p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: var(--dark);
  margin: 3rem 0;
}
.gradient-text {
  background: linear-gradient(90deg, var(--color-2), var(--color-4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




/*-----------------
BTN  
------------------*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  height: 5rem;
  padding: 0 6rem 0 2rem;
  border-radius: 1rem;
  background-color: var(--color-1);
  background-image: url("images/arrow-go-white.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 2.4rem;
  color: var(--light);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* HOVER */
.btn-primary:hover {
  transform: translateY(-.4rem);
}



/*-----------------
ABOUT 
------------------*/

.about {
  background-color: var(--color-1);
  position: relative;
  z-index: 1;
  margin-top: -30rem;
  padding-top: 36rem;
  padding-bottom: 12rem;
 background-image: url("images/bg-about.png");
background-position: center top;
background-repeat: no-repeat;
background-size: 100% auto;
}
.about .wrap {
max-width: 75%;
margin: auto;
text-align: center;
}
.about .wrap h2 {
font-size: 3.6rem;
color: var(--light);
font-weight: 600;
margin: 0;
margin-bottom: 2rem;
}
.about .wrap p {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 500;
  color: var(--light);
  margin: 0;
}


/*-----------------
STATS 
------------------*/

.content-stats {
box-shadow: var(--shadow);
background-color: white;
border-radius: 2rem;
padding: 0 4rem;
height: 12rem;
margin-top: -6rem;
display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4rem;
  position: relative;
  z-index: 3;
}
.stat {
display: flex;
align-items: center;
gap: 1.6rem;
}
.stat .valor {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border-radius: 1rem;
  padding: 1rem 2rem;
}
.valor.v1 {
background-color: var(--color-2);
color: var(--light);
}
.valor.v2 {
background-color: var(--color-3);
color: var(--dark);
}
.valor.v3 {
background-color: var(--color-4);
color: var(--dark);
}
.stat .label {
  font-size: 1.8rem;
  line-height: 2rem;
  color: var(--dark);
  font-weight: 600;
}


/*-----------------
BENEFITS 
------------------*/
.benefits .container {
padding-top: 6rem;
padding-bottom: 6rem;
}

.benefits .head {
width: 100%;
text-align: center;
margin-bottom: 6rem;
}
.benefits .head h2 {
font-size: 3.6rem;
font-weight: 600;
color: var(--dark);
}


.benefits .wrap {
display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4rem;
}
.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.benefit img {
  width: 8rem;
  height: auto;
}
.benefit .title {
  font-size: 2rem;
  line-height: 2.4rem;
 font-weight: 700;
color: var(--dark);
margin: 0;
}
.benefit p {
  font-size: 1.6rem;
font-weight: 500;
color: var(--dark);
margin: 0;
}


/*-----------------
BANNER 
------------------*/
.banner-content {
width: 100%;
border-radius: 2rem;
background-color: var(--dark);
aspect-ratio: 2.4 / 1; 
padding: 0 6rem;
display: flex;
align-items: center;  
justify-content: flex-start;
   background-image:
  linear-gradient(90deg, var(--color-1) 0%,  transparent 100%),
  url("images/img-banner.jpg");
background-position: left center, center center;
background-repeat: no-repeat;
background-size: 100% auto, cover;
}
.banner-content .wrap {
text-align: left;
max-width: 40%;
}
.banner-content .wrap h2 {
color: var(--light);
font-size: 3rem;
line-height: 3.6rem;
font-weight: 600rem;
}
.banner-content .wrap p {
color: var(--light);
font-size: 1.6rem;
font-weight: 500rem;
}



/* =========================================================
   QUIENES SOMOS
========================================================= */

.capital-section {
  position: relative;
  padding: 12rem 0 8rem;
  overflow: visible;
  z-index: 3;
}

.capital-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}


/* =========================================================
   CONTENT
========================================================= */

.capital-content {
  
}

.capital-content h2 {
color: var(--dark);
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 700;
  margin-bottom: 4rem;
  max-width: 90%;
}

.capital-content p {
  max-width: 90%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--dark);
}

.capital-content p + p {
  margin-top: 3rem;
}


/* =========================================================
   VISION
========================================================= */

.capital-vision {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  aspect-ratio: 1 / 1.25;
  margin-bottom: -30rem;
  z-index: 10;
}

.capital-vision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  background-image: linear-gradient(360deg, var(--color-1) 0%,  transparent 75%);
  color: white;
}

.vision-overlay h3 {
  font-size: 3rem;
  line-height: 3.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.vision-overlay p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 700;
}
.section-title.light {
  color: var(--light);
}
.section-title.center {
  text-align: center;
  color: var(--dark);
}


/* =========================================================
   PILLARS
========================================================= */

.pillars-section {
  position: relative;
  background: var(--color-4);
  padding: 4rem 0;
  padding-top: 16rem;
  z-index: 1;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 5rem;
  margin-bottom: -10rem;
  position: relative;
  z-index: 5;
}


/* =========================================================
   CARD
========================================================= */

.pillar-card {
  background: white;
  border-radius: 2.4rem;
  padding: 4rem 3rem;
  min-height: 34rem;
  box-shadow: var(--shadow)
}

.pillar-card img {
  width:8rem;
  margin-bottom: 3rem;
}

.pillar-card h3 {
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--dark);
  margin: 0;
  margin-bottom: 2rem;
}

.pillar-card p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--dark);
  margin: 0;
}


/* =========================================================
   WHY
========================================================= */

.why-section {
  position: relative;
  /* COMPENSA EL OVERLAP DE LAS CARDS */
  padding: 10rem 0 0 0;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 10rem;
  margin-top: 6rem;
}


/* =========================================================
   ITEM
========================================================= */

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
}

.why-item img {
  width: 5rem;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--dark);
  margin: 0;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.why-item p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--dark);
  margin: 0;
}



/* =========================================================
   CARTERA
========================================================= */

.valor-content {
  padding-bottom: 8rem;
}
.valor-content h2 {
color: var(--dark);
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 700;
  margin-bottom: 4rem;
  max-width: 90%;
}

.valor-content p {
  max-width: 90%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--dark);
}

.valor-content p + p {
  margin-top: 3rem;
}

.valor-section {
  position: relative;
  padding: 12rem 0;
  overflow: visible;
  z-index: 3;
  background-color: white;
  background-image: url("images/bg-valor.png");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 75% auto;
}

.valor-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}


.cartera-section {
  position: relative;
  background: var(--light);
  padding: 4rem 0;
  z-index: 3;
  border-radius: 2rem 2rem 0 0;
}
.cartera-wrap {
margin-top: -16rem;
}
.cartera-wrap h2 {
font-size: 3rem;
font-weight: 700;
color: var(--dark);
}
.cartera-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 5rem;
  margin-bottom: -10rem;
  position: relative;
  z-index: 5;
}
.cartera-card {
  background: white;
  border-radius: 2.4rem;
  padding: 4rem 3rem;
  min-height: 34rem;
  box-shadow: var(--shadow)
}

.cartera-card img {
  width: 8rem;
  margin-bottom: 2rem;
}

.cartera-card h3 {
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--dark);
  margin: 0;
  font-weight: 700;
}
.cartera-card .tag {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--dark);
  margin: 0;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
  display: block;
}

.cartera-card p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: var(--dark);
  margin: 0;
  font-weight: 500;
}



/* =========================================================
   PROCESS
========================================================= */

.process-section {
  padding: 10rem 0;
  overflow: hidden;
}


/* GRID */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem;
  margin-top: 8rem;
}


/* LINE */
.process-line {
  position: absolute;
  top: 6rem;
  left: 12rem;
  right: 12rem;
  height: .8rem;
  border-radius: 10rem;
  background:
    linear-gradient(
      90deg,
      var(--color-2) 0%,
      var(--color-3) 35%,
      var(--color-4) 70%,
      var(--color-1) 100%
    );
  z-index: 1;
}

/* ITEM */
.process-item {
  position: relative;
  z-index: 2;
  text-align: center;
}


/* NUMBER */
.process-number {
  width: 12rem;
  height: 12rem;
  border-radius: 2rem;
  margin-inline: auto;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  position: relative;
  z-index: 3;
}


/* COLORS */
.process-number.purple {
  background: var(--color-2);
  color: var(--dark);
}

.process-number.aqua {
  background: var(--color-3);
  color: var(--dark);
}

.process-number.blue {
  background: var(--color-4);
  color: var(--dark);
}

.process-number.dark {
  background: var(--color-1);
  color: var(--light);
}


.process-item h3 {
  color: var(--dark);
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.process-item p {
  color: var(--dark);
    font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin: 0;
}



/*-----------------
CTA
------------------*/

/* BOX */
.cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  border-radius: 2rem;
  padding: 6rem;
   background-image:
  url("images/bg-cta.png"),
  linear-gradient(90deg, var(--color-2), var(--color-3));
background-position: right center, center;
background-repeat: no-repeat;
background-size: 80% auto, cover;
margin-top: 6rem;
margin-bottom: 6rem;
}
.cta-content {
flex: 3;
  display: flex;
  flex-direction: column;
}
.cta-media {
flex: 1;
  display: flex;            
  justify-content:flex-end; 
  align-items: flex-end;   
}

.cta-content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 4rem;
  margin: 0;
  margin-bottom: 2rem;
  color: var(--light);
}
.cta-content p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: var(--light);
  margin: 0;
}



/*-----------------
CONTACT
------------------*/

.contact {
  padding: 20rem 0 10rem 0;
  border-radius: 0 0 2rem 2rem;
  position: relative;
  z-index: 3;
  margin-bottom: -2rem;
  background-color: var(--light);
  background-image: url("images/bg-contact.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.contact-inner {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}

/* LEFT */
.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 4rem;
  color: var(--dark);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.contact-item .icon {
  width: 2.6rem
}
.contact-item .label {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  display: block;
  margin: 0;
  color: var(--dark);
}
.contact-item p {
  color: var(--dark);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0;
}


/* RIGHT */
.contact-form {
  flex: 1.2;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* INPUTS */
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: .1rem solid var(--dark);
  color: var(--dark);
  border-radius: 1.2rem;
  padding: 1.4rem;
  font-size: 1.4rem;
  font-family: var(--font-general);
}
/* TEXTAREA full */
.form-grid textarea {
  grid-column: span 2;
  min-height: 20rem;
  resize: none;
}
/* PLACEHOLDER */
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: var(--dark);
  font-family: var(--font-general);
}


/* BUTTON */
.contact-form .btn {
  margin-top: 3rem;
  width: 100%;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--color-1);
}

.btn-send {
  display: inline-flex;
  align-items: center;
  height: 5rem;
  width: 100%;
  padding: 0 6rem 0 2rem;
  border-radius: 1rem;
  background-color: var(--color-1);
  background-image: url("images/arrow-go-white.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 2.4rem;
  color: var(--light);
  font-family: var(--font-general);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
   grid-column: span 2;
}

/* HOVER */
.btn-send:hover {
  transform: translateY(-.4rem);
}

/*-----------------
FOOTER
------------------*/

.footer {
  background-color: var(--color-1);
  color: #fff;
  padding: 4rem 0;
}

/* LAYOUT */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

/* LEFT */
.footer-left {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.footer-logo {
  width: 16rem;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-text {
  color: var(--light);
  display: flex;
  flex-direction: column;
  gap:.6rem;
  padding-left: 4rem;
  background-position: left top;
  background-repeat: no-repeat;
  padding-top: .6rem;
  background-size: 2.4rem auto;
}
.footer-text .label {
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1.6rem;
  letter-spacing: .1rem;
  font-weight: 500;
}
.footer-text .info {
  font-size: 1.4rem;
  line-height: 1.8rem;
  font-weight: 600;
}
.footer-text.email {
background-image: url("images/icon-envelope.svg");
}
.footer-text.phone {
background-image: url("images/icon-phone.svg");
}
.footer-text.gps {
background-image: url("images/icon-gps.svg");
}

/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 3rem;
}

.footer-social .redes {
  color: transparent;
  text-decoration: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-position: center center;
  background-size: 80% auto;
  background-repeat: no-repeat;
}
.footer-social .redes:hover {
  transform: scale(1.2);
  background-color: white;
}

.linkedin {
background-image: url("images/icon-linkedin-white.svg");
}
.linkedin:hover {
background-image: url("images/icon-linkedin.svg");
}

.whatsapp {
background-image: url("images/icon-whatsapp-white.svg");
}
.whatsapp:hover {
background-image: url("images/icon-whatsapp.svg");
}
