/*HEADER*/
.header h1{
    text-align: left;
    font-weight: 900;
    margin: 10px 0 20px 0;
    color: #e6a00b;
    font-size: 3.5em;
    line-height: 1em;
    
}

.header h1 small{
    text-align: left;
    font-weight: 300;
    margin: 10px 0 20px 0;
    color: #272727;
    font-size: 0.7em;
    line-height: 0.5em;
}

.button {
    --primary-color: #e6a00b;
    --secondary-color: #fff;
    --hover-color: #111;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    box-sizing: border-box;
    border: 0;
    border-radius: 10px;
    color: var(--secondary-color);
    padding: 0.5em 1em;
    background: var(--primary-color);
    display: flex;
    transition: 0.2s background;
    align-items: center;
    gap: 0.6em;
    font-weight: bold;
    text-decoration: none;
  }
  
.button .arrow-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
.button .arrow {
    margin-top: 1px;
    width: var(--arrow-width);
    background: var(--primary-color);
    height: var(--arrow-stroke);
    position: relative;
    transition: 0.2s;
  }
  
.button .arrow::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border: solid var(--secondary-color);
    border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
    display: inline-block;
    top: -3px;
    right: 3px;
    transition: 0.2s;
    padding: 3px;
    transform: rotate(-45deg);
  }
  
.button:hover {
    background-color: var(--hover-color);
  }
  
.button:hover .arrow {
    background: var(--secondary-color);
  }
  
.button:hover .arrow:before {
    right: 0;
  }

  /*MENU*/

.nav-link{
  color: #464545;
  font-size: 1.2em;
  font-weight: 400;
  margin-right: 30px;
}

/*SECTION LOGOS*/

.seccion-logos-home h2 {
  color: #535353;
  font-size: 1.5em;
}

/*MAIN*/
.main p{
    margin: 0 0 10px 0;
}

.main ul{
    margin-left: 12px; 
}
.main ul li ul{
    margin: 0 0 0 0;
}

.main h1{
    font-size: 1.6em;
    text-align: left;
    font-weight: 500;
    margin: 10px 0 20px 0;
}

.main h2{
    color: #272727;
    font-size:1.5em;
    font-weight: 500;
    margin: 30px 0 30px 0;
    text-align: left;
}

.main h3{
    color: #58B2C0 !important;
    font-size:1.4em;
    font-weight: 400;
    margin: 30px 0 20px 0;
    text-align: left;
}

.main h4{
    color: #e6a00b;
    font-size: 1.3em;
    font-weight: 400;
    margin: 10px 0 20px 0;
    text-align: left;
}

.main .variable h4{
    color: #222222;
    font-size: 1.1em;
    font-weight: 500;
    margin: 10px 0 0px 0;
    text-align: left;
}

.main h5{
    color: #73837f;
    font-size: 1em;
    font-weight: 700;
    margin: 10px 0 0 0;
    text-align: left;
}

