:root {
  --primary-color: #e8041c; 
  --secondary-color: #e8041c; 
  --background-color: #ffffff; 
  --text-color: #e8041c; 
  --footer-bg: #880e4f; 
  --footer-text: #ffffff; 
}

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Nunito', Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--background-color);
    color: var(--text-color);
  }

  .inicio{
    display: flex;
  }

  header{
    position: relative;
    display: column;
    width:11.5vh;
    height: 100vh;
    background-color: #222;
  }

  header li{
    transform: rotate(-90deg);
    margin:10rem 0;
    list-style: none;
    color:#fff;
  }

  header img{
    border-radius: 50px;
    width: 9vh;
    margin:20px 5px;
  }

  .main{
    margin:38vh 0 0 6vh;
    width: 40%;
    height: fit-content;
    color: #222;
    font-size: 20px;
    font-weight: 600;
  }

  .titulo{
    font-size:80px;
    letter-spacing: 50px;
    font-family: 'Oswald','Parkinsans';
  }

  .resaltado{
    color: var(--text-color);
  }

  .main button{
    background-color: var(--text-color);
    padding: 15px 50px ;
    color: #fff;
    font-size: 12px;
    border:0.5px solid var(--text-color);
    border-radius: 50px;
    margin: 20px 0;
    box-shadow: 0px 20px 25px 0.5px #999;
    cursor: pointer;
    transition: 0.2s ease-in;
  }

  .main button:hover{
    transform: scale(1.1);
  }

  .redes{
    position: absolute;
    top: 40px;
    right: 80px;
    display: inline-flex;
  }

  .redes li{
    margin: 0 20px;
    list-style: none;
  }

  .redes img{
    width: 30px;
    transition: 0.2s ease-in;
  }

  .redes img:hover{
    transform: scale(1.2);
  }

  .img-in{
    width: 660px;
    height: 590px;
    position: absolute;
    bottom: 0;
    right: 30px;
  }

  .hero{
    background-color:var(--primary-color);
    width: 100%;
    height: 50vh;
    color: #fff;
  }

  .text-container{
    width: 100%;
    padding:100px;
    display: flex;
  }

  .hero .text1{
    width:50%;
    padding:20px;
    font-size:20px;
    font-weight: 600;
    border-right: 0.8px solid #fff8;
  }

  .hero .text1 button{
    background-color: #fff;
    padding: 15px 50px ;
    color:#111;
    font-size: 12px;
    border:transparent;
    border-radius: 50px;
    margin: 20px 0;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease-in;
  }

  .hero .text1 button:hover{
    transform: scale(1.1);
  }

  .hero .text2{
    width:50%;
    padding:40px 20px;
  }

  .hero2{
    width: 100%;
    height: 50vh;
    color: #111;
  }

  .hero2 .text1{
    width: 50%;
    margin: 20px;
    padding:50px;
    font-weight: 800;
    font-size:25px;
    border-top: 3px solid var(--primary-color);
  }

  .hero2 .text2{
    width: 50%;
    font-weight: 500;
    margin: 20px;
    font-size: 14px;
  }

  .banner{
    width: 100%;
    height: auto;
    background-color: #efefef;
  }
  
  .banner .text3{
    padding: 80px 200px;
    font-size: 20px;
    font-weight: 700;
    text-align: justify;
    color: #111;
  }

  .contact{
    width: 100%;
    display: flex;
  }

  .contenedor{
    margin:80px;
    color: #111;
  }

  .info{
    margin:20px 0;
    padding:40px
  }

  .info-re{
    font-size: 30px;
    font-weight: 700;
  }

  .form{
    margin:60px 200px;
    background-color: var(--primary-color);
    padding: 40px 20px;
    color: #fff;
  }

  .form hr{
    border:1px solid #fff;
    border-radius: 50px;
  }

  .form .text4{
    font-weight: 100;
    font-size:17px;
    margin:15px 0
  }

  .form h3{
    font-weight: 400;
    font-size: 27px;
  }

  .form button{
    background-color: #fff;
    padding: 15px 70px ;
    color:#111;
    font-size: 12px;
    border:transparent;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease-in;
    position: relative;
    bottom: -10vh;
    left:10%;
    box-shadow: 0px 20px 25px 0.5px #999;
    cursor: pointer;
  }

  .form button:hover{
    transform: scale(1.2);
  }
  
  footer{
    background-color: #111;
    width: 100%;
    align-items: center;
    
  }

  footer .content{
    padding: 60px;
    text-align: center;
  }

  footer li{
    list-style: none;
  }

  footer .redes-footer{
    display: inline-flex;
  }

  footer .redes-footer img{
    width: 30px;
    margin: 20px 0;
    transition: 0.2s ease-in;
  }

  footer .redes-footer img:hover{
    transform: scale(1.2);
  }

  footer  li {
    display: inline-flex;
    margin: 20px 50px;
    color: #fff;
  }

  footer li a{
    text-decoration: none;
    color: #fff;
  }

  footer .content img{
    border-radius: 10px;
    margin: 20px 0;
  }

  footer li a:hover{
    color: var(--primary-color);
  }

  .me{
    color: #fff;
  }

  .me a{
    color: #fff;
  }