body {
  margin: 0;
  font-family: "Regular";
  color: #26292C;
}

h1 {
  font-size: 2.8em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
}

h3 {
  font-size: 1.6em;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

h5 {
  font-size: 1.1em;
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}

@font-face {
  font-family: "Light";
  src: url("../font/OpenSans-Light.ttf");
}

@font-face {
  font-family: "Regular";
  src: url("../font/OpenSans-Regular.ttf");
}

@font-face {
  font-family: "SemiBold";
  src: url("../font/OpenSans-SemiBold.ttf");
}


/* inicio nav */
nav {
  display: flex;
  align-items: flex-end;
  padding: 15px 24px;
  justify-content: space-between;
  position: absolute;
  background: white;
  left: 0;
  right: 0;
}

.nav_left {
  display: flex;
  align-items: center;
}

.logo {
  display: inline-flex;
}

#logo_crm {
  fill: #26292C;
  height: 37px;
}

.letras_logo {
  fill: #4ACE9C;
}

.navegacion {
  display: inline-flex;
  margin-left: 20px;
}

.navegacion ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navegacion ul li {
  width: 118px;
  text-align: center;
  cursor: pointer;
  padding: 10px 10px 0;
  color: #B4B4B4;
  transition: all .3s;
  text-decoration: none;
}

.navegacion ul a {
  width: 118px;
  text-align: center;
  cursor: pointer;
  padding: 10px 10px 0;
  color: #B4B4B4;
  transition: all .3s;
  text-decoration: none;
}

.navegacion ul a li:hover {
  color: #26292C;
}

.ingresar {
  display: flex;
}

#btn_ingresar {
  width: 110px;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  color: #4ACE9C;
}

.btn_demo {
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(45deg, rgba(74, 206, 156, 1) 0%, rgba(104, 229, 178, 1) 100%);
  color: white;
  box-shadow: 0 0 7px 0px #6c6c6c21;
  width: fit-content;
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
}

.btn_demo:hover {
  box-shadow: 0 0 10px 0px #6c6c6c6e;
}

/* Inicio home */
div#seccion_home {
  background: #FCFCFC;
  background-image: url(../img/fondo.png);
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-size: contain;
  background-position-y: 70px;
}

.home_left {
  position: absolute;
  left: 12%;
}

.titulo_home {
  display: inline-flex;
  width: 410px;
}

.texto_home {
  font-family: 'Light';
  line-height: 27px;
  letter-spacing: 1.2px;
  color: #b4b4b4;
  width: 390px;
}

/* Inicio caracteristicas */
div#seccion_caracteristicas {
  background: white;
  /* height: 100vh; */
}

.nombre_seccion {
  display: flex;
  flex-direction: column;
}

.nombre_seccion h1 {
  text-align: center;
  color: #B4B4B4;
  margin: 15px 0 0;
}

.linea_verde {
  border: 1px solid #4ACE9C;
  width: 50px;
}

.caracteristica_container {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 27%;
  margin: 6vh 0;
}

.caracteristicas {
  display: flex;
  justify-content: space-evenly;
}

.icono_caracteristica {
  margin-top: -40px;
}

.icono_caracteristica svg {
  /* width: 130px; */
  width: 177px;
  height: 195px;
}

.titulo_caracteristica h3 {
  margin: 0px 0;
}

.texto_caracteristica {
  font-family: 'Light';
  color: #b4b4b4;
  line-height: 2 !important;
  letter-spacing: 0.3px;
}

.texto_caracteristica h5 {
  font-family: 'Light';
  color: #b4b4b4;
  line-height: 2 !important;
  letter-spacing: 0.3px;
}

/* Inicio planes */
div#seccion_planes {
  background: #FCFCFC;
  height: 100vh;
  position: relative;
}

.texto_fondo {
  z-index: 0;
  color: #F4F4F4;
  font-size: 19vw;
  text-align: center;
  position: absolute;
  top: 6%;
  bottom: 0;
  left: 0;
  right: 0;
}

.container_planes {
  z-index: 1;
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 11%;
  left: 0;
  right: 0;
  align-items: flex-end;
}

.plan {
  background-color: #FCFCFC;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 50px;
  border: .5px solid #E2E2E2;
  margin: 0 3%;
}

.plan h5 {
  text-align: center;
  width: 90%;
}

.plan hr {
  width: 88%;
  border: .5px solid #E2E2E2;
}

h3.nombre_plan {
  margin-bottom: 10px;
}

.valor_plan {
  color: #4ACE9C;
}

.valor_plan span {
  color: #26292C;
  font-family: 'Light';
  font-size: 0.6em;
}

.plan_seleccionado {
  border-top: 2px solid #4ACE9C;
  background-color: white !important;
  box-shadow: 0 0 7px 0px #6c6c6c21;
}

.recomendado {
  margin: 25px 0 0;
  color: #4ACE9C;
}

.descripcion_plan {
  font-family: 'Light';
}

/* Seccion contacto */
div#seccion_contacto {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: -300px;
}

.container_contacto {
  width: 80vw;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 12px 0 #00000029;
  margin: 5vh 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.form_contacto {
  width: 55%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.datos_contacto {
  width: 40%;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form_contacto form {
  display: flex;
  flex-direction: column;
}

.form_campo label {
  padding: 6px;
}

.form_campo {
  display: flex;
  flex-direction: column;
  padding: 7px;
}

.btn_form_campo {
  display: flex;
  flex-direction: column;
  padding: 7px;
  align-items: center;
}

.dato {
  margin: 10px 0;
  width: 330px;
}

::placeholder {
  color: #B4B4B4;
}

.divicion {
  width: 2px;
  background: #e2e2e2a6;
  margin: 5%;
}

.form_contacto form input,
.form_contacto form textarea {
  padding: 7px;
  border: .5px solid #E2E2E2;
  border-radius: 6px;
  color: #26292c;
  resize: none;
}

/* Seccion footer */
.seccion_footer {
  height: 363px;
  background-color: #4ace9c;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.logo_footer {
  padding: 17px;
}

#logo_crm_footer {
  /* fill: #26292C; */
  fill: white;
  height: 37px;
}

.texto_dato {
  font-family: 'Light';
  margin-left: 50px;
}

.icono_dato {
  display: inline-block;
  padding-right: 18px;
}

.icono_dato svg {
  width: 30px;
}

.label_dato {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

@media screen and (max-width: 1366px) {
  h1 {
    font-size: 1.8em;
  }

  h5 {
    font-size: 0.8em;
  }

  h3 {
    font-size: 1.4em;
  }

  .titulo_home {
    max-width: 290px;
  }

  .texto_home {
    line-height: 21.8px;
    letter-spacing: 0.9px;
    max-width: 298px;
  }

  .texto_fondo {
    font-size: 16vw;
  }

  h3.nombre_plan {
    margin-bottom: 0px;
  }

  .container_planes {
    bottom: 6%;
  }
}