/* Variables color */
:root {
  --blue-a: #32539E;
  --blue-b: #4D88CE;
  --pink: #F095CF;
  --font: #8A96B8;
  --white: #FFF;
  --gray: #F8F8F8;
  --inactive: #9CAACF;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/* Tipografia global por defecto */
body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--font);
  background-color: var(--white);
}

/* Titulares */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  /* margin-bottom: 1.2rem; */
  color: var(--blue-a);
}

h1,
h2 {
  font-size: 3rem;
  line-height: 3.25rem;
  letter-spacing: -0.0938rem;
  margin-bottom: 39px;
}

h1 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 22px;
  /* text-shadow: 2px 2px 4px rgba(30, 60, 120, 0.1); */
}

.h2-white {
  color: var(--white);
  font-weight: 600;
}

h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: auto;
  letter-spacing: .0313rem;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.875rem;
  letter-spacing: -0.0313rem;
  margin-bottom: 23px;
}

.h4-white {
  color: var(--white);
  font-weight: 300;
}

h5 {
  font-size: 2.5rem;
  line-height: 2.8125rem;
  letter-spacing: -0.0938rem;
  margin-bottom: 10px;
}

h6 {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: -0.0313rem;
  color: var(--white);
  margin-bottom: 30px;
}

.title-cut {
  width: 50%;
}

p {
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6875rem;
  letter-spacing: .0313rem;
  margin-bottom: 15px;
}

.p-bold {
  font-weight: 700;
}

.p-bold-w {
  font-weight: 600;
}

.p-blue-a {
  color: var(--blue-a);
}

.p-white {
  color: var(--white);
  font-weight: 300;
}

.p-pink {
  color: var(--pink);
}

.p-special {
  color: var(--pink);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 2rem;
  margin-bottom: 42px;
}

.no-margin {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

.text-cut {
  max-width: 85%;
}

.text-cut-center {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.text-align-right {
  text-align: right;
}

/* Secciones generales */
.separator {
  display: flex;
  flex-flow: row nowrap;
}

.sep-a {
  width: 50%;
  height: 5px;
  background-color: var(--blue-b);
}

.sep-b {
  width: 50%;
  min-height: 5px;
  background-color: var(--pink);
}

.container-w {
  max-width: 1388px;
  margin: auto;
  padding: 100px 50px 100px 50px;
}

/* .blue-bg-header {
  background-color: #32539E;
  background-image: 
    radial-gradient(circle at -50% top, rgba(240, 149, 207, 0.9) 20%, rgba(240, 149, 207, 0) 80%), 
    radial-gradient(circle at bottom right, #547FBC 30%, rgba(50, 83, 158, 0) 100%);
  background-blend-mode: normal;
} */

.blue-bg-header {
  background-color: #32539E;
  background-image:
    radial-gradient(circle at -50% top, rgba(240, 149, 207, 0.9) 20%, rgba(240, 149, 207, 0) 80%),
    radial-gradient(circle at bottom right, #547FBC 30%, rgba(50, 83, 158, 0) 100%),
    radial-gradient(circle at center bottom, #76A9E6 35%, rgba(50, 83, 158, 0) 100%);
  background-blend-mode: normal;
  background-size: cover;
  background-position: center center;
}

.blue-bg-a {
  background-color: #32539E;
  background-image:
    radial-gradient(circle at -50% top, rgba(240, 149, 207, 0.7) 20%, rgba(240, 149, 207, 0) 80%),
    radial-gradient(circle at bottom right, #547FBC 30%, rgba(50, 83, 158, 0) 100%);
  background-blend-mode: normal;
}

.blue-bg-b {
  background-color: #32539E;
  background-image:
    radial-gradient(circle at top left, #547FBC 30%, rgba(48, 56, 102, 0) 100%),
    radial-gradient(circle at bottom right, rgba(240, 149, 207, 0.7) 0%, rgba(50, 83, 158, 0) 100%);
  background-blend-mode: normal;
}

.gray-bg {
  background-color: var(--gray);
}

.light-bg {
  background-color: #fff;
  background-image:
    radial-gradient(circle at top left, rgba(127, 75, 180, 0.1) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at bottom right, rgba(50, 83, 158, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  background-blend-mode: normal;
}

.two-col {
  display: flex;
  flex-flow: row nowrap;
  gap: 60px;
}

.col {
  width: 50%;
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.container-rel {
  position: relative;
}

.corner-logo {
  position: absolute;
  top: 100px;
  right: 50px;
  z-index: 1;
  width: 77px;
  height: 70px;
}

.center-wrapper {
  margin-top: 60px;
  text-align: center;
}

.shadow-c {
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.05);
}

/* Links y Botones */
a {
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6875rem;
  letter-spacing: .0313rem;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: var(--pink);
}

.btn-ghost {
  padding: 18px 40px;
  background-color: rgba(255, 255, 255, 0);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.0625rem;
  letter-spacing: .0313rem;
  border: 2px solid var(--white);
  box-sizing: border-box;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn-ghost:hover {
  background-color: var(--pink);
  border-color: var(--pink);
}

.btn-header {
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  padding: 12px 25px;
  background-color: var(--pink);
  border: none;
}

.btn-header:hover {
  background-color: var(--pink);
}

.btn-inactive {
  padding: 18px 50px;
  background-color: var(--inactive);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.0625rem;
  letter-spacing: .0313rem;
  border: none;
  box-sizing: border-box;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease-in-out;
}

.btn-inactive:hover {
  background-color: var(--blue-b);
}

.btn-active-pink {
  background-color: var(--pink);
}

.btn-fixed-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  bottom: -50px;
  transition: bottom 0.3s ease-in-out;
}

.btn-fixed-wrapper.show {
  bottom: 30px;
}

.btn-fixed {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 500;
  letter-spacing: .0313rem;
  padding: 15px 30px;
  color: var(--white);
  background-color: var(--pink);
  border: none;
  box-sizing: border-box;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.btn-fixed:hover {
  background-color: var(--blue-b);
}

/* Header y navbar desktop */
.nav-container {
  max-width: 1388px;
  margin: auto;
  padding-left: 50px;
  padding-right: 50px;
}

nav {
  padding: 20px 0 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header-logo {
  width: 248px;
  height: 41px;
}

.nav-wrapper-c {
  display: none;
}

.navbar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.125rem;
  letter-spacing: .0313rem;
  color: var(--white);
  padding: 10px 0;
  transition: color 0.3s ease-in-out;
}

.nav-link:visited {
  color: var(--white);
}

.nav-link:hover {
  color: var(--pink);
}

/* Lista header */
.list-h-wrapper {
  margin-top: 28px;
  display: flex;
  flex-flow: column nowrap;
  gap: 15px;
}

.list-h-item {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
}

.list-h-item p {
  margin-bottom: 0px;
  font-size: 1rem;
}

.list-h-ico {
  width: 18px;
  height: 18px;
  margin-top: 6px;
}

/* Navbar Mobile */
.hamb-link {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  transition: all 0.3s ease-in-out;
  border: none;
}

.bars-ico {
  width: 20px;
  height: 17px;
}

.hamb-link.active {
  background-color: var(--pink);
}

.nav-mob-deploy {
  position: absolute;
  z-index: 2;
  background-color: #32539E;
  background-image:
    radial-gradient(circle at bottom right, rgba(240, 149, 207, 0.5) 20%, rgba(240, 149, 207, 0) 80%),
    radial-gradient(circle at center bottom, #76A9E6 35%, rgba(50, 83, 158, 0) 100%),
    radial-gradient(circle at -50% top, #547FBC 30%, rgba(50, 83, 158, 0) 100%);
  background-blend-mode: normal;
  background-size: cover;
  background-position: center center;
  width: 100%;
  right: 0px;
  top: 92px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.nav-mob-deploy.open {
  height: 490px;
  padding: 40px 0;
}

.nav-mob-deploy ul,
.nav-mob-deploy-fixed ul {
  margin: 0 0 0 50px;
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.nav-mob-deploy li:last-child {
  margin-top: 10px;
}

/* Navbar Mob Fixed */
.header-logo-fixed {
  height: 42px;
  width: auto;
}

.navbar-fixed {
  position: fixed;
  top: -93px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #547FBC;
  background-image:
    linear-gradient(to right, rgba(240, 149, 207, 0.5) 20%, rgba(240, 149, 207, 0) 80%),
    linear-gradient(to right, #4D88CE 35%, rgba(50, 83, 158, 0) 100%),
    linear-gradient(to right, #547FBC 30%, rgba(50, 83, 158, 0) 100%);
  background-blend-mode: normal;
  background-size: cover;
  background-position: center center;
  padding: 20px 50px;
  display: none;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease-in-out;
  z-index: 999;
}

.wrapper-button-nav-fixed {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.navbar-fixed.show {
  top: 0;
}

.nav-mob-deploy-fixed {
  position: absolute;
  z-index: 999;
  background-color: #32539E;
  background-image:
    radial-gradient(circle at bottom right, rgba(240, 149, 207, 0.5) 20%, rgba(240, 149, 207, 0) 80%),
    radial-gradient(circle at center bottom, #76A9E6 35%, rgba(50, 83, 158, 0) 100%),
    radial-gradient(circle at -50% top, #547FBC 30%, rgba(50, 83, 158, 0) 100%);
  background-blend-mode: normal;
  background-size: cover;
  background-position: center center;
  width: 100%;
  right: 0px;
  top: 90px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.nav-mob-deploy-fixed.open {
  height: 415px;
  padding: 40px 0;
  border-bottom: 2px solid var(--blue-b);
}

/* Header content */
.header-content {
  max-width: 1388px;
  margin: auto;
  padding: 0px 50px 0px 50px;
  display: flex;
  flex-flow: row nowrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.header-img-wrapper {
  margin-top: 80px;
  width: 50%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.header-img {
  width: 482.5px;
  height: 603px;
  z-index: 2
}

.header-ellipse {
  max-width: 80%;
  top: 70px;
  /* max-width: 500px;
  height: 500px; */
  position: absolute;
  z-index: 1;
}

.header-text-wrapper {
  width: 50%;
}

.header-text-wrapper h3 {
  line-height: 1.4375rem;
}

/* Partners */
.container-partners {
  max-width: 1388px;
  margin: auto;
  padding: 0px 50px 100px 50px;
}

.partner-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0px;
}

.partner-item-first {
  display: flex;
  flex-flow: row nowrap;
  justify-content: left;
  align-items: center;
}

.partner-item {
  padding: 0 15px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.partner-link {
  transition: opacity 0.3s ease-in-out;
}

.partner-link:hover {
  opacity: 0.7;
}

.startups-latam-logo {
  width: 100%;
  max-width: 150px;
}

.seedspace-logo {
  width: 100%;
  max-width: 220px;
}

.samu-logo {
  width: 100%;
  max-width: 185px;
}

.lexgo-logo {
  width: 100%;
  max-width: 120px;
}

/* Post Header */
.video {
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.18);
}

/* Lista Post Header */
.list-wrapper {
  display: flex;
  flex-flow: column nowrap;
  gap: 18px;
}

.list-item {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
}

.list-item p {
  margin-bottom: 0px;
}

.list-ico {
  width: 18px;
  height: 18px;
  margin-top: 6px;
}

/* Metodologia */
.meto-card {
  margin-top: 38px;
  border-radius: 0px 25px 25px 25px;
  background-color: var(--white);
  padding: 30px 30px 38px 30px;
}

.meto-card-ico {
  width: 71px;
  height: 71px;
  margin-bottom: 20px;
}

.meto-card-title {
  margin-bottom: 15px;
}

/* Cronograma */
.container-crono {
  padding: 100px 50px 65px 50px;
}

.crono-grid {
  column-count: 2;
  column-gap: 30px;
  margin-top: 55px;
}

.crono-card {
  break-inside: avoid;
  margin-bottom: 35px;
  padding: 35px 35px 35px 35px;
  border: 1px solid #b2b6d0;
  border-radius: 25px 25px 25px 25px;
}

.crono-date {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1.375rem;
  letter-spacing: .0313rem;
  color: var(--blue-a);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.crono-hour {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  line-height: .875rem;
  letter-spacing: .0313rem;
  color: var(--blue-a);
  text-transform: uppercase;
  margin-bottom: 0px;
}

.crono-hour-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.crono-hour-item {
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
}

.crono-hour-item-border {
  border-left: 1px solid #b3b8d1;
  padding-left: 10px;
}

.crono-flag {
  width: 24px;
  height: 15px;
}

.crono-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: .0313rem;
  margin-bottom: 15px;
}

.crono-text-last {
  margin-bottom: 27px;
}

/* Collapse BS Crono */
.btn-rm-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}

.btn-rm-line {
  border-bottom: 1px solid #b3b8d1;
  width: 33%;
  height: 100%;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--font);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: .0313rem;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 15px 30px;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}

.btn-read-more:hover {
  color: var(--pink);
}

.btn-read-more.active {
  color: var(--pink);
}

/* Proceso de postulacion */
.postu-number-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}

.postu-card {
  padding: 15px 25px 15px 25px;
}

.postu-card-border {
  border-left: 1px solid #b3b8d1;
}

.postu-card h3 {
  margin-bottom: 15px;
}

.postu-number {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 2.5rem;
  letter-spacing: .0313rem;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.postu-title {
  font-weight: 600;
}

/* Valor de Inscripción */
.pricing-card-grid {
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 70%;
}

.pricing-card {
  border-radius: 35px;
  border: 2px solid var(--white);
  padding: 35px 35px 35px 35px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.pricing-card-ico {
  width: 75px;
  height: 75px;
  margin-bottom: 20px;
}

.pricing-card-text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: .0313rem;
  margin-bottom: 25px;
}

.pricing-card-text-b {
  font-size: 1.0625rem;
  line-height: 1.6875rem;
}

.pricing-card-text-border {
  border-top: 1px solid var(--white);
  padding-top: 23px;
  padding-bottom: 20px;
}

/* Los expertos B2B */
.b2b-experts-flex {
  display: flex;
  flex-flow: row nowrap;
  gap: 60px;
  margin-top: 100px;
  justify-content: space-between;
}

.expert-img-wrapper {
  position: relative;
  z-index: 1;
}

.expert-img-a {
  width: 419px;
  height: auto;
}

.expert-img-b {
  width: 466px;
  height: auto;
}

.expert-ellipse-a {
  position: absolute;
  top: 100px;
  left: 45px;
  z-index: -1;
}

.expert-ellipse-b {
  position: absolute;
  top: 100px;
  left: 45px;
  z-index: -1;
}

.expert-rrss-wrapper {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
}

.expert-rrss-icon {
  width: 24px;
  transition: opacity 0.3s ease-in-out;
}

.expert-rrss-icon:hover {
  opacity: 0.8;
}

.expert-line {
  width: 2px;
  height: 80px;
}

.expert-name-wrapper {
  margin-bottom: 28px;
}

.expert-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: .0313rem;
}

/* Logos Empresas en expertos */
.logo-empresa-experto {
  padding-top: 10px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.logo-empresa-experto a {
  transition: opacity 0.3s ease-in-out;
}

.logo-empresa-experto a:hover {
  opacity: 0.7;
}

/* Preguntas Frecuentes */
.accordion {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
  border: none;
  background-color: transparent;
}

.accordion-item {
  border: 1px solid var(--white);
  overflow: hidden;
  background-color: transparent;
}

.accordion-button {
  background-color: transparent;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6875rem;
  letter-spacing: .0313rem;
  padding: 10px 20px;
  border: none;
  user-select: none;
  box-shadow: none !important;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-bottom-color 0.3s ease-in-out;
}

.accordion-button[aria-expanded="true"] {
  background-color: var(--pink);
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.accordion-button:not([aria-expanded="true"]) {
  border-bottom: 1px solid transparent;
}

.accordion-button:hover,
.accordion-button:focus {
  background-color: var(--pink);
  box-shadow: none;
}

.accordion-button::after {
  color: var(--white);
  filter: brightness(0) invert(1);
}

.accordion-button[aria-expanded="true"]::after {
  color: var(--white);
  filter: brightness(0) invert(1);
}

.accordion-body {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.6875rem;
  letter-spacing: .0313rem;
  padding: 30px 30px 60px 30px;
}

/* Contact Form */
.cf-bg-main {
  position: relative;
  z-index: 1;
}

.cf-bg {
  position: absolute;
  z-index: -1;
  bottom: 0px;
  width: 100%;
}

.container-cf {
  max-width: 1388px;
  margin: auto;
  padding: 100px 50px 0px 50px;
  display: flex;
  flex-flow: row nowrap;
  gap: 60px;
}

.cf-text-wrapper {
  width: 35%;
}

.cf-wrapper {
  width: 65%;
  background-color: var(--white);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.05);
}

.cf-selector {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
  padding-bottom: 20px;
}

/* Form Format */
.formulario-main * {
  color: var(--font);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6875rem;
  letter-spacing: .0313rem;
}

.formulario-main input::placeholder,
.formulario-main textarea::placeholder {
  color: var(--font);
}

.formulario-main input:focus,
.formulario-main textarea:focus,
.formulario-main select:focus {
  /* Agregamos el select */
  outline: 1px solid var(--pink);
}

.formulario-main form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#form-nombre,
#form-correo,
#form-telefono,
#form-linke,
#form-pais,
#form-origen,
#form-cupon,
#form-mensaje,
#form-nombre-e,
#form-correo-e,
#form-telefono-e,
#form-linke-e,
#form-company-e,
#form-cargo-e,
#form-web-e,
#form-industria-e,
#form-ventas-e,
#form-empleados-e,
#form-pais-e,
#form-origen-e,
#form-cupon-e,
#form-mensaje-e {
  padding-left: 15px;
  border: 1px solid var(--font);
  background: var(--white);
  border-radius: 5px;
}

#form-nombre,
#form-correo,
#form-telefono,
#form-linke,
#form-pais,
#form-origen,
#form-cupon,
#form-nombre-e,
#form-correo-e,
#form-telefono-e,
#form-linke-e,
#form-company-e,
#form-cargo-e,
#form-web-e,
#form-industria-e,
#form-ventas-e,
#form-empleados-e,
#form-pais-e,
#form-origen-e,
#form-cupon-e {
  flex: 1 0 140px;
  height: 45px;
}

#form-mensaje,
#form-mensaje-e {
  width: 100%;
  height: 120px;
  padding: 15px;
  resize: none;
}

#form-submit,
#form-submit-e {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.0625rem;
  letter-spacing: .0313rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 50px;
  border: none;
  box-sizing: border-box;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  color: var(--white);
  background: var(--pink);
  transition: background-color 0.3s ease-in-out;
  margin: auto;
}

#form-submit:hover,
#form-submit-e:hover {
  background-color: var(--blue-b);
}

#formPersona.show,
#formEmpresa.show {
  display: block;
}

#formPersona.hide,
#formEmpresa.hide {
  display: none;
}


/* Footer */
.footer-bg {
  background: linear-gradient(to right, #547FBC, #F095CF);
}

.footer-container-a {
  max-width: 1388px;
  margin: auto;
  padding: 100px 50px 80px 50px;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 0px;
}

.footer-text {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: .0313rem;
  color: var(--white);
  margin-bottom: 37px;
}

.footer-item-a {
  padding: 20px 40px 20px 0px;
}

.footer-logo {
  width: 188px;
  height: 55px;
  margin-bottom: 22px;
}

.other-logos-footer {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
  align-items: center;
}

.other-logos-footer a {
  transition: opacity 0.3s ease-in-out;
}

.other-logos-footer a:hover {
  opacity: 0.7;
}

.ngrowth-logo {
  width: 130px;
  height: 18px;
}

.rocket-revenue-logo {
  width: 115px;
  height: 36px;
}

.footer-item-b {
  padding: 20px 40px 20px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-list-footer {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  gap: 15px;
}

.nav-link-footer {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.125rem;
  letter-spacing: .0313rem;
  color: var(--white);
  padding: 10px 0;
  transition: color 0.3s ease-in-out;
}

.nav-link-footer:visited {
  color: var(--white);
}

.nav-link-footer:hover {
  color: var(--pink);
}

.footer-item-c {
  padding: 20px 0px 20px 40px;
}

.contact-links-wrapper {
  display: flex;
  flex-flow: column nowrap;
  gap: 12px;
}

.contact-link-item {
  display: flex;
  flex-flow: row nowrap;
  gap: 12px;
  align-items: center;
}

.contact-ico {
  margin-top: 3px;
  width: 23px;
  height: 23px;
}

.link-text-footer {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
  letter-spacing: .0313rem;
  color: var(--white);
  transition: color 0.3s ease-in-out;
}

.link-text-footer:hover {
  color: var(--pink);
}

.link-text-footer:visited {
  color: var(--white);
}

/* Subfooter */
.footer-container-b {
  max-width: 1388px;
  margin: auto;
  padding: 0px 50px 0px 50px;
}

.footer-subwrapper {
  padding: 12px 0 12px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-text-b {
  font-weight: 300;
  font-size: .9375rem;
  line-height: 1.5625rem;
  letter-spacing: .0313rem;
  color: var(--white);
  margin-bottom: 0px;
}

.hide {
  display: none;
}

/* Pagina gracias */
.gracias-wrapper {
  margin: auto;
  padding: 100px 60px 85px 60px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.gracias-wrapper button {
  margin-top: 20px;
}

.gracias-wrapper h1,
.gracias-wrapper h3,
.gracias-wrapper p {
  text-align: center;
}

/* Banner*/
.banner-main {
  display: none;
  background-color: var(--pink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.banner-container {
  max-width: 1388px;
  margin: auto;
  padding: 12px 50px 12px 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.banner-container p {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0px;
}

.btn-banner {
  font-size: 1.0rem;
  line-height: 1.0rem;
  font-weight: 400;
  letter-spacing: .0313rem;
  padding: 12px 25px;
  background-color: rgba(255, 255, 255, 0);
  color: var(--white);
  border: 2px solid var(--white);
  box-sizing: border-box;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.btn-banner:hover {
  background-color: var(--blue-b);
}

/* Viewport especial navbar */
@media (max-width: 1235px) {
  .nav-wrapper-b {
    display: none;
  }

  .nav-wrapper-c {
    display: block;
  }

  .navbar-fixed {
    display: flex;
  }

  .btn-fixed-wrapper {
    display: none;
  }
}

/* Viewport especial header content */
@media (max-width: 1060px) {

  .header-content {
    margin: auto;
    padding: 0px 40px 0px 40px;
    flex-flow: column nowrap;
    gap: 0px;
  }

  .header-img-wrapper {
    order: 2;
    width: 100%;
    margin-top: 20px;
  }

  .header-text-wrapper {
    padding-top: 60px;
    width: 100%;
  }
}

/* Medium (≥768px y <992px) */
@media (max-width: 991.98px) {

  .btn-ghost:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0);
    border-color: var(--white);
  }

  .btn-header:hover {
    background-color: var(--pink);
  }

  .btn-inactive:hover {
    background-color: var(--pink);
  }

  .btn-fixed:hover {
    background-color: var(--pink);
  }

  .nav-link:hover {
    color: var(--white);
  }

  .btn-read-more:hover {
    color: var(--font);
  }

  .expert-rrss-icon:hover {
    opacity: 1.0;
  }

  .logo-empresa-experto a:hover {
    opacity: 1.0;
  }

  .other-logos-footer a:hover {
    opacity: 1.0;
  }

  .nav-link-footer:hover {
    color: var(--white);
  }

  .link-text-footer:hover {
    color: var(--white);
  }
  
  .btn-banner:hover {
    background-color: var(--pink);
  }

  #form-submit:hover,
  #form-submit-e:hover {
    background-color: var(--pink);
  }

  .title-cut {
    width: 100%;
  }

  .blue-bg-header {
    background-image:
      radial-gradient(circle at bottom right, rgba(240, 149, 207, 0.9) 20%, rgba(240, 149, 207, 0) 80%),
      radial-gradient(circle at center bottom, #76A9E6 35%, rgba(50, 83, 158, 0) 100%),
      radial-gradient(circle at -50% top, #547FBC 30%, rgba(50, 83, 158, 0) 100%);
  }

  .nav-container,
  .navbar-fixed {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-mob-deploy ul,
  .nav-mob-deploy-fixed ul {
    margin: 0 0 0 40px;
  }

  .header-logo {
    width: 200px;
    height: auto;
  }

  .container-w {
    padding: 80px 40px 80px 40px;
  }

  .container-partners {
    padding: 0px 40px 80px 40px;
  }

  .partner-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .partner-item-first {
    justify-content: center;
  }

  .partner-item {
    padding: 0 30px;
  }

  .partner-link:hover {
    opacity: 1;
  }

  .container-crono {
    padding: 80px 40px 45px 40px;
  }

  .corner-logo {
    display: none;
  }

  .two-col {
    flex-flow: column nowrap;
    gap: 40px;
  }

  .col {
    width: 100%;
  }

  .video-col {
    order: 2;
  }

  .three-col-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 38px;
  }

  .meto-card {
    margin-top: 0px;
    padding: 30px;
  }

  .meto-card:first-child {
    margin-top: 38px;
  }

  .text-cut-center {
    max-width: 100%;
  }

  .text-cut {
    max-width: 100%;
  }

  .crono-grid {
    column-count: 1;
    column-gap: 30px;
    margin-top: 55px;
  }

  #postulacion {
    text-align: center;
  }

  .pricing-card-grid {
    margin-top: 55px;
    gap: 40px;
    max-width: 100%;
  }

  .b2b-experts-flex {
    flex-flow: column nowrap;
    gap: 30px;
    margin-top: 40px;
    /* justify-content: space-between; */
  }

  .expert-img-wrapper {
    margin: auto;
  }

  .expert-rrss-wrapper {
    flex-flow: row nowrap;
    gap: 10px;
    justify-content: center;
  }

  .expert-text-content h5,
  .expert-text-content h3,
  .expert-text-content p {
    text-align: center;
  }

  .expert-line {
    display: none;
  }

  #diego {
    display: flex;
  }

  #diego .expert-text-content {
    order: 3;
  }

  #diego .expert-rrss-wrapper {
    order: 2;
  }

  #diego .expert-img-wrapper {
    order: 1;
  }

  .logo-empresa-experto {
    justify-content: center;
  }

  .accordion {
    max-width: 100%;
  }

  .container-cf {
    padding: 80px 40px 0px 40px;
    flex-flow: column nowrap;
    gap: 40px;
  }

  .cf-text-wrapper {
    width: 100%;
  }

  .cf-wrapper {
    width: 100%;
  }

  .footer-container-a {
    padding: 80px 40px 80px 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0px;
  }

  .footer-item-a {
    padding: 0px 0px 40px 0px;
  }

  .footer-item-b {
    padding: 40px 0px 40px 0px;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  .footer-item-c {
    padding: 40px 0px 0px 0px;
  }

  .footer-container-b {
    padding: 0px 40px 0px 40px;
  }

  .banner-container {
    padding: 18px 50px 18px 50px;
    flex-flow: column nowrap;
    gap: 12px;
  }

  .banner-container p {
    text-align: center;
  }
}

/* Small (≥576px y <768px) */
@media (max-width: 767.98px) {
  .footer-subwrapper {
    padding: 12px 0 12px 0;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }

  .footer-text-b {
    text-align: center;
  }

  .gracias-wrapper {
    padding: 60px 0px 60px 0px;
  }
}

/* Extra small (≤576px) */
@media (max-width: 575.98px) {

  h1,
  h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
    letter-spacing: -0.0938rem;
  }

  h2 {
    margin-bottom: 39px;
  }

  .nav-container,
  .navbar-fixed {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-mob-deploy ul,
  .nav-mob-deploy-fixed ul {
    margin: 0 0 0 20px;
  }

  .header-content {
    overflow: hidden;
    padding: 0px 20px 0px 20px;
  }

  .header-ellipse {
    max-width: 100%;
    top: 30px;
  }

  .header-text-wrapper {
    padding-top: 40px;
    width: 100%;
  }

  .container-w {
    padding: 60px 20px 60px 20px;
  }

  .container-crono {
    padding: 60px 20px 25px 20px;
  }

  .container-partners {
    padding: 0px 20px 60px 20px;
  }

  .postu-number-grid {
    margin-top: 20px;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .postu-card {
    padding: 40px 0px 40px 0px;
  }

  .postu-card:last-child {
    padding-bottom: 0px;
  }

  .postu-card-border {
    border-left: none;
    border-top: 1px solid #b3b8d1;
  }

  .meto-card {
    padding: 25px;
  }

  .pricing-card {
    padding: 35px 35px 35px 35px;
  }

  .pricing-card-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 32px;
    max-width: 100%;
  }

  .expert-img-a {
    max-width: 100%;
    height: auto;
  }

  .expert-ellipse-a {
    max-width: 80%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .expert-img-b {
    max-width: 100%;
    height: auto;
  }

  .expert-ellipse-b {
    max-width: 80%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .container-cf {
    padding: 60px 20px 0px 20px;
  }

  .cf-wrapper {
    padding: 35px 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.05);
  }

  .cf-selector {
    flex-flow: column nowrap;
    gap: 20px;
    padding-bottom: 20px;
  }

  .footer-container-a {
    padding: 60px 20px 60px 20px;
  }

  .footer-container-b {
    padding: 0px 20px 0px 20px;
  }

  .banner-container {
    padding: 18px 20px 18px 20px;
    flex-flow: column nowrap;
    gap: 12px;
  }
}

/* Special small */
@media (max-width: 374.98px) {}