@charset "utf-8";
/* CSS Document */
:root 
{
  --bgrojo:#FA4270;
  --textoClaro: #fff;
}

.topnav {
    overflow: hidden;
    background-color: #1c242f;
    display: flex;
    justify-content: space-around;
  }
  
  .topnav a 
  {
    
    text-align: center;
    text-decoration: none;
    padding: 10px 16px;

  }

  .topnav .material-icons-round
  {
      font-size: 22px;
      vertical-align:middle;
      padding-right: 5px;
  }

  .icon {
    display: none;
  }
  
  .dropdown 
  {
    float: left;
    overflow: hidden;
  }

  .topnav a, .dropdown .dropbtn, .dropbtn1
  {
    color:  var(--textoClaro);
    font-size: 1.15rem;  
  }  
  
  .dropdown .dropbtn, .dropbtn1
  {
    border: none;
    outline: none;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
    padding: 14px 16px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1c242f;
    min-width: 190px;
    z-index: 1;
  }
  
  .dropdown-content a 
  {
    float: none;
    color: var(--textoClaro);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .topnav a:hover, .dropdown:hover .dropbtn 
  {
    background-color: var(--bgrojo);
    color: var(--textoClaro);
  }
  
  .dropdown-content a:hover {

    background-color: var(--bgrojo);
    color:var(--textoClaro);
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .mobile-menu 
  {
    display: none;
  }

  #pc-menu 
  {
    display:flex;
    justify-content: space-around;
    width:300px;
  }
  .pc-menu 
  {
    color:var(--textoClaro);
  }
  
  @media screen and (max-width: 780px) 
  {
    .topnav a, .dropdown .dropbtn 
    {
      display: none;
    }

    .icon {
        display: block;
        font-size: 2.3rem;
        color: var(--textoClaro);
      }

    #pc-menu 
    {
      display: none;
    }

    
  }
  
  @media screen and (max-width: 780px) 
  {  
    /*.topnav.responsive 
    {
        position: relative;
    }*/
    
    .topnav.responsive 
    {
        flex-direction: column;
    }

    /*.topnav.responsive .icon 
    {
      position: absolute;
      right: 0;
      top: 0;
    }*/

    .topnav.responsive a 
    {
      /*float: none;*/
      display: block;
      text-align: left;
    }

    .topnav.responsive .dropdown 
    {
        float: none;
    }
    
    .topnav.responsive .dropdown-content 
    {
        position: relative;
    }

    .topnav.responsive .dropdown .dropbtn 
    {
      display: block;
      width: 100%;
      text-align: left;
    }
    .dropdown-content a 
    {
      padding-left: 28px;
    }
  }