@media (prefers-color-scheme: light) {

  #home {
    background-color: #fff;
  }

  body {
      background-color: #fff; 
      color: #505050;
  }

  h1, h2, h3, h4, h5 {
    font-family: 'Noto Sans', sans-serif;
    color: #606060;
  }

  a {
    color: #505050 !important;
  }

  a:hover {
    color: #E44C65 !important;
  }

  p {
    font-family: 'Montserrat', sans-serif;
    color: #808080;
  }

  .header {
    background: #fff;
  }

  .titulo_chico {
    color: #E44C65;
  }

  .nav_menu::before {
    content: "MENU";
    position: absolute;
    right: 40px;
    top: 14px;
    color: #202020;
  }

  .nav_menu i {
    font-size: 30px;
    color: #202020;
  }

  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: #fff;
  }
  
  .texto {
    width: 100%;
    font-family: 'Oswald', sans-serif;
    line-height: 0.9;
    color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 200px;
    font-weight: bold;
    background-image: url('../img/bg-texto.jpeg');
    background-size: cover;
    background-position-y: bottom;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
  }

  .div_secundario {
    padding: 0;
    background: #fff;
  }
  
  .div_secundario h1 {
    margin-bottom: 40px;
  }

  @media screen and (max-width: 1200px) {
    .texto {
      font-size: 150px;
    }
  }

  @media screen and (max-width: 991px) {
    .texto {
      font-size: 100px;
      line-height: 1;
    }
  }

  @media screen and (max-width: 767px) {
    .texto {
      font-size: 60px;
    }
  }

  .footer {
    background: #fff;
  }

  .footer_cont {
    background: #f5f5f5; 
    border-radius: 20px; 
    padding: 50px;
  }

  @media screen and (max-width: 656px) {
    .footer_cont {
      background: #f5f5f5; 
      border-radius: 20px; 
      padding: 20px;
    }

    .footer_cont h2 {
      font-size: 18px;
    }

    .footer_cont p {
      font-size: 12px !important;
    }
  }

  .parentesis {
    /* border-bottom: 2px solid #e5e5e5; */
  }

  .flecha_abajo {
    color: #c5c5c5;
  }

  .parentesis_int {
    color: #c5c5c5;
  }

}

.flecha_abajo {
  animation: myfirst 2s 5;
  animation-direction: alternate;
  padding-top: 10px;
  -webkit-animation: myfirst 2s 5;                 
}

@keyframes myfirst {
  0%   {padding-top: 10px;}
  25%  {padding-top: 15px;}
}

.ws_box {
  width: 350px;
  background: #fff;
  position: fixed;
  bottom: 80px; 
  right: 20px;
  box-shadow: 0 0 10px 1px #b1b1b1;
  border-radius: 10px; 
  overflow: hidden;
  display: none;
}
.ws_box p {
  font-size: 13px;
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #47C756;
  color: #fff;
  font-size: 30px;
  padding: 3px 12px;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}
.scrollTop {
  font-size: 30px;
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #202020;
  color: #fff;
  padding: 1px 12px;
  display: none;
}

@media screen and (max-width: 656px) {
  .whatsapp {
    font-size: 25px;
    padding: 1px 9px;
    width: 40px;
    height: 40px;
  }

  .scrollTop {
    font-size: 25px;
    padding: 1px 9px;
    width: 40px;
    height: 40px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  #home h2 {
    font-size: 13px;
  }
}






