@charset "utf-8";
/* CSS Document */
.dropdown-content.show { display: block; }

.site-header 
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 0 90px;
    box-sizing: border-box;
    border-top:3px solid #FA4270;
    border-bottom: var(--border);
    min-height: 85px;
}

.site-logo 
{
    flex: 0 0 auto;
    display: flex;
    align-items: left;
}

.logo 
{
  max-width: 180px;
}

.site-nav
{
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}


:root 
{
  --bgrojo:#FA4270;
  --textoClaro: #fff;
}

.topnav {
    overflow: visible;
    background-color: #1e2937;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 95%;
    position: relative;

  }
  
  .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: 1rem;  
  }  
  
  .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: #328399;
    color: #fff;
    border-radius: 3px;
  }
  
  .dropdown-content a:hover {

    background-color: #328399;
    color:var(--textoClaro);
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  .mobile-menu 
  {
    display: none;
  }

  #pc-menu 
  {
    display:flex;
    justify-content: flex-end;
    width:300px;
  }
  .pc-menu 
  {
    color:var(--textoClaro);
  }
  
  @media screen and (max-width: 1230px) 
  {
    .topnav a, .dropdown .dropbtn 
    {
      display: none;
    }

    .icon {
        display: block;
        font-size: 2.3rem;
        color: var(--textoClaro);
        margin-left: auto;
        line-height: 1;
      }

    #pc-menu 
    {
      display: none;
    }

  }

  @media screen and (max-width: 1230px) 
  {
    .topnav.responsive {
      position: fixed;
      top: 85px;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      overflow-y: auto;
      overflow-x: hidden;
      background-color: #1c242f;
      border-bottom: 0;
      box-shadow: 0 18px 40px rgba(0,0,0,0.35);
      padding: 16px 0 24px;
      width: 100%;
    }

    .topnav.responsive a {
      display: block;
      text-align: left;
    }

    .topnav.responsive .dropdown {
      float: none;
      width: 100%;
    }

    .topnav.responsive .dropdown-content {
      position: static;
      min-width: 100%;
      width: 100%;
      box-shadow: none;
      background-color: #17202b;
    }

    .topnav.responsive .dropdown .dropbtn {
      display: flex;
      width: 100%;
      text-align: left;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
    }

    .topnav.responsive .dropdown-content a {
      padding-left: 28px;
    }

  }
