/* Generales */
* {
  box-sizing: border-box;
  font-family: 'Titillium Web', sans-serif;
}
:root {
  --celeste: #3fa9f5;
  --azul: #0d3154;
  --oscuro: #1a1a1a;
  --blanco: #fff;
  --gris-oscuro: #808080;
  --gris-claro: #e6e6e6;
}
html {
  scroll-behavior: smooth;
  font-size: 12px;
}
#inicio, #pymes, #emprendedores, #empresas, #profesionales, header, footer {
  padding: 0 2vw;
}
#pymes, #emprendedores, #empresas, #profesionales, #contacto, .locaciones, .contenedor-contacto {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10vh 2vw;
}
img {
  display: block;
  width: 80px;
  margin: 0 auto;
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}
h3 {
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  padding-bottom: 2vh;
}
h2, h4 {
  font-size: 4em;
  font-weight: 200;
  text-align: center;
}
p {
  font-size: 1.4em;
}
hr {
  width: 30%;
  border: none;
  border-bottom: 1px solid var(--gris-oscuro);
}
.sombra {
  -webkit-box-shadow: 8px 8px 5px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 8px 8px 5px 0px rgba(0,0,0,0.5);
  box-shadow: 8px 8px 5px 0px rgba(0,0,0,0.5);
}


/* Header */
header {
  display: flex;
  justify-content: space-between;
  height: 10vh;
  width: 100%;
  position: absolute;
  background-color: transparent;
  top: 0;
  transition: background-color 1s ease-in-out;
}
/* clase en header agregada dinamicamente con js */
.header-sticky {
  animation: headerHeight .5s;
  background-color: var(--blanco);
  position: fixed;
  z-index: 5;
  box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
}
@keyframes headerHeight {
  from {
    height: 0;
  } to {
    height: 10vh;
  }
}
.header-sticky nav {
  animation: navOpacity 1s;
}
@keyframes navOpacity {
  from {
    opacity: 0;
  } to {
    opacity: 1;
  }
}
.header-sticky nav a:hover, .header-sticky nav li:hover {
  color: var(--azul);
}
header img {
  margin: 0;
  display: block;
  width: 150px;
  cursor: pointer;
}
 header a {
   align-self: center;
 }
nav {
  display: flex;
  justify-content: space-between;
  width: 65vw;
}
nav ul{
  width: 40vw;
  display: flex;
  justify-content: space-between;
  margin: 0;
}
nav a, nav li{
  line-height: 10vh;
  color: var(--gris-oscuro);
  transition: color .3s;
  cursor: pointer;
}
nav a:hover, nav li:hover {
  color: var(--blanco);
}
.contacto {
  color: var(--celeste);
}
.nav-mobile {
  display: none;
}


/* Inicio */
#inicio {
  min-height: 180vh;
  padding-top: 15vh;
  padding-bottom: 100px;
  background-color: var(--oscuro); 
  background-image: url(../img/fondo.svg);
  background-repeat: no-repeat;
}
/* Inicio - Presentacion */
#presentacion {
  height: 50vh;
  width: 45vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 0 10vw 20vh auto;
}
h1 {
  color: var(--blanco);
  text-align: center;
  font-weight: 200;
  font-size: 4em;
}
h1 em {
  display: none;
}
#presentacion button {
  width: 13em;
  height: 3em;
  align-self: center;
  background-color: transparent;
  border: 1px solid var(--blanco);
  border-radius: 4px;
  cursor: pointer;
  transition: color .2s, border .2s;
}
#presentacion button:hover {
  border: 1px solid var(--celeste);
  background-color: var(--azul);
}
#presentacion button a {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blanco);
}
#presentacion button a:hover {
  color: var(--celeste);
}
/* Inicio - Presentacion dolar info */
.dolar-info {
  display: flex;
  gap: 5vw;
  margin: 5vh auto;
  justify-content: center;
  transform: scale(0.8);
  flex-wrap: wrap;
}

.dolar-info h3 {
  color: #fff;
  width: 100%;
}

/* Inicio - Servicios */
#servicios {
  height: 100vh;
  display: flex;
}
.servicios-titulo, .servicios-particulares {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.servicios-titulo h6, .servicios-titulo h5 {
  display: block;
  width: 50%;
  margin: 0 auto;
}
.servicios-titulo h6 {
  font-size: 1.2em;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--celeste);
}
.servicios-titulo h5 {
  font-size: 2.5em;
  color: var(--blanco);
  font-weight: 300;
}
.servicio-particular {
  margin: 50px auto;
  width: 50%;
  position: relative;
}
.servicio-particular h3 {
  font-size: 1.2em;
  color: var(--gris-claro);
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  padding-bottom: 0;
}
.servicio-particular h3::before {
  content: " ";
  background-image: url(../img/flecha.svg);
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  height: 14px;
  position: absolute;
  top: 3px;
  left: -50px;
}
.servicio-particular p {
  font-size: 1em;
  color: var(--gris-oscuro);
  font-weight: 400;
  padding: 8px 0;
}
.servicio-particular a {
  font-size: .8em;
  color: var(--celeste);
  font-weight: 600;
  text-transform: uppercase;
}
.servicio-particular a:hover {
  text-decoration: underline;
}


/* Servicios Seccion */
#pymes, #emprendedores, #empresas, #profesionales, #contacto {
  height: 100vh;
}
#emprendedores, #profesionales {
  background-color: var(--oscuro);
} 


/* PYMES */
#pymes {
  background-image: url(../img/fondo-pymes.svg);
  background-repeat: no-repeat;
}
.info-pymes, .seccion-pymes {
  width: 80vw;
  margin: 0 auto;
}
#pymes h3 {
  color: var(--azul);
}
#pymes h2 {
  display: block;
  width: 60%;
  margin: 0 auto;
  color: var(--azul);
}
.seccion-pymes {
  display: flex;
  justify-content: space-around;
}
.seccion-pymes div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 20vw;
  height: 20vw;
  border-radius: 4px;
  background-color: var(--celeste);
}
.seccion-pymes p {
  text-align: center;
  color: var(--blanco);
  padding: 0 10%;
}


/* EMPRENDEDORES */
#emprendedores {
  flex-direction: row;
}
.info-emprendedores, .seccion-emprendedores {
  width: 40%;
  height: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
}
.info-emprendedores h3, .info-emprendedores h2 {
  color: var(--blanco);
  text-align: left;
}
.info-emprendedores img, .seccion-emprendedores img {
  width: 100px;
}
.seccion-emprendedores {
  background-color: var(--celeste);
  border-radius: 4px;
  padding: 5% 0;
}
.seccion-emprendedores img {
  position: absolute;
  top: -49px;
  left: 42%;
}
.seccion-emprendedores p {
  color: var(--gris-claro);
  text-align: center;
}
.seccion-emprendedores p em {
  color: var(--blanco);
  font-style: normal;
}


/* EMPRESAS */
#empresas {
  background-image: url(../img/empresas-fondo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 120%;
}
.info-empresas {
  width: 50vw;
  margin-left: 8%;
}
.info-empresas h3, .info-empresas h2 {
  text-align: left;
}
.seccion-empresas {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80vw;
  margin: 0 auto;
}
.factoring-empresas { 
  z-index: 2;
  height: 20vh;
  border-radius: 4px;
  background-color: var(--azul);
  box-shadow: 0 8px 5px 0px rgba(0,0,0,0.5);
}
.factoring-empresas p {
  text-align: center;
  color: var(--gris-claro);
  padding-top: 4vh;
}
.factoring-empresas p em {
  font-style: normal;
  text-align: center;
  color: var(--blanco);
  font-size: 2em;
  padding-bottom: 5vh;
}
.sgr-empresas {
  z-index: 1;
  margin-top: -2vh;
  padding-top: 4vh;
  height: 20vh;
  border-radius: 4px;
  background-color: var(--celeste);
  display: flex;
  justify-content: space-around;
}
.sgr-empresas p {
  padding-top: 4vh;
  display: block;
  color: var(--azul);
  width: 15vw;
  text-align: center;
}
.sgr-empresas img {
  margin: 0;
}


/* PROFESIONALES */
.info-profesionales h3 {
  color: var(--blanco);
}
.info-profesionales h2 {
  color: var(--celeste);
  padding: 0 20%;
}
.seccion-profesionales {
  display: flex;
  justify-content: space-around;
}
.seccion-profesionales div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 20vw;
  height: 20vw;
  border-radius: 4px;
  background-color: var(--celeste);
}
.seccion-profesionales p {
  text-align: center;
  color: var(--blanco);
  font-size: 1.5em;
  padding: 0 10%;
}


/* CONTACTO */
#contacto {
  background-image: url(../img/fondo-contacto.svg);
  background-repeat: no-repeat;
  align-items: center;
}
.contenedor-contacto {
  height: 100%;
  width: 60vw;
  margin-left: auto;
  justify-content: space-around;
  padding: 1vh 0;
}
.contacto-principal {
  margin-left: 3vw;
  max-width: 100%;
  overflow: auto;
}
address p, .contacto-principal a {
  font-style: normal;
  color: var(--azul);
}
.contacto-principal a, .contacto-principal p {
  font-weight: 600;
  font-size: 1.5em;
  padding-left: 50px;
  margin-top: 2vh;
}
.whatsapp, .email, .locacion, .telefono{
  position: relative;
  padding-left: 40px;
}
.iconos::before {
  content: '';
  background-repeat: no-repeat;
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 1px;
  left: 0;
}
.grandes::before {
  width: 30px;
  height: 30px;
}
.whatsapp::before {
  background-image: url(../img/iconos/whatsapp.svg);
}
.email::before {
  background-image: url(../img/iconos/email.svg);
}
.locacion::before {
  background-image: url(../img/iconos/ubicacion.svg);
}
.telefono::before {
  background-image: url(../img/iconos/telefono.svg);
  top: 5px;
}
.locaciones {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
}
.locaciones a {
    font-size: 1.4em;
    font-weight: 600;
    font-style: normal;
    color: var(--azul);
}
.locaciones address {
  display: block;
  width: 40%;
  margin-top: 8vh;
}
.locaciones address p {
  font-weight: 200;
  margin-bottom: 3vh;
  color: var(--gris-oscuro);
}
.locaciones address p em {
  font-style: normal;
  font-weight: 600;
  color: var(--azul);
}