/* Generales */
* {
  box-sizing: border-box;
}
/* h3 {
  font-size: 1em;
}
h2, h4 {
  font-size: 2em;
}
p {
  font-size: .8em;
} */


/* HEADER */
header {
  padding: 0 6vw 0 2vw;
}
header img {
  width: 30vw;
}
.nav-desktop {
  display: none;
}
.nav-desktop-mobile {
  display: flex;
  position: absolute;
  top: 0vh;
  left: 0;
  width: 100%;
  height: 750px;
  padding-top: 15vh;
  background-color: var(--gris-claro);
  flex-direction: column;
  animation: mobileMenu .2s;
  z-index: 1;
}
.logo {
  z-index: 2;
}
@keyframes mobileMenu {
  from {
    height: 0;
  } to {
    height: 750px;
  }
}
.nav-desktop-mobile ul {
  animation: opacity 1s;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@keyframes opacity {
  from {
    opacity: 0;
  } to {
    opacity: 1;
  }
}
.nav-desktop-mobile a {
  color: var(--oscuro);
}
.nav-desktop-mobile .contacto {
  animation: opacity 1s;
  color: var(--celeste);
}
.nav-mobile {
  display: block;
  width: 30px;
  align-self: center;
  position: relative;
  z-index: 2;
}
.nav-mobile span {
  display: block;
  width: 30px;
  height: 4px;
  margin: 5px auto;
  background-color: var(--celeste);
}
.primer-span {
  transform: rotate(45deg);
  transition: transform .5s ease-in;
  position: absolute;
  top: 0;
  left: 0;
}
.segundo-span {
  opacity: 0;
  transition: opacity .2s ease-in-out;
}
.tercer-span {
  transform: rotate(-45deg);
  transition: transform .5s ease-in;
  position: absolute;
  top: 0;
  left: 0;
}


/* INICIO */
#inicio {
  padding-top: 30vh;
}
#presentacion {
  height: 40vh;
  width: 90vw;
  margin: 0 auto 30vh;
}
#servicios {
  flex-direction: column;
}
.servicios-titulo, .servicios-particulares {
  width: 100%;
}
.servicio-particular {
  align-self: flex-end;
  margin: 50px 0;
}
.servicios-titulo h6, .servicios-titulo h5 {
  width: 85%;
}


/* PYMES */
#pymes {
  background-image: none;
}
#pymes h2 {
  width: 100%;
}
.seccion-pymes div {
  width: 35vw;
  height: 35vw;
}


/* EMPRENDEDORES */
.info-emprendedores h2 {
  font-size: 3em;;
}
.info-emprendedores {
  width: 40%;
}
.seccion-emprendedores {
  width: 50%;
  padding: 5%;
}


/* EMPRESAS */
#empresas {
  background-image: none;
}
.info-empresas {
  width: 90vw;
}
.factoring-empresas {
  height: 15vh;
}
.sgr-empresas p {
  width: 32vw;
}
.sgr-empresas p:last-child {
  width: 25vw;
}


/* PROFESIONALES */
.info-profesionales h2 {
  padding: 0 5%;
}
.seccion-profesionales div {
  width: 28vw;
  height: 38vw;
}


/* CONTACTO */
#contacto {
  background-image: none;
  background-color: var(--blanco);
}
.contenedor-contacto {
  width: 95vw;
  margin-left: none;
}
.contenedor-contacto h4 {
  text-align: left;
  margin-bottom: 10vh;
}
.contacto-principal p {
  margin-top: 6vh;
}

.locaciones address {
  width: 42%;
}
.locaciones a {
  font-size: 1.8em;
}
.locaciones address p {
  color: var(--azul);
  margin: 0;
  margin-bottom: 15px;
}
.locaciones address p em {
  color: var(--celeste);
}
.whatsapp, .email {
  padding-left: 26px;
}
.locaciones address:last-child{
  display: flex;
  flex-direction: column;
}
.contacto-principal a, .contacto-principal p {
  font-size: 2.2em;
  padding-left: 65px;
}
.grandes::before {
  width: 51px;
  height: 50px;
}
.telefono::before {
  top: 12px;
}

/* IPAD PRO */
@media (min-width: 950px) and (max-width: 1024px) {
  .servicio-particular {
    margin-top: 78px;
    margin-bottom: 78px;
    width: 60%;
}
.nav-desktop-mobile {
  height: 900px;
}
}