@font-face{
    font-family: "Nunito";
    src: url('./Fonts/Nunito/Nunito-Light.ttf');
}

@font-face{
    font-family: "Nunito";
    src: url('./Fonts/Nunito/Nunito-Regular.ttf');
    font-weight: 400;
}

@font-face{
    font-family: "Nunito";
    src: url('./Fonts/Nunito/Nunito-SemiBold.ttf');
    font-weight: 600;
}

body {
    font-family: "Nunito", sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color: #333;
    overflow-x: hidden;
}

.noColor, .noColor:hover, .noColor:visited, .noColor:focus, .noColor:active{
    text-decoration: none; 
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.LogoRubia{
    max-width: 250px;
    margin-right: 30px;
}

header {
    background-color: transparent;
    color: black;
    padding: 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
    transition: all 0.5s ease-in-out;

    display: flex;
    align-items: center;
    height: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.li_contato{
    border-radius: 50px;
    background-color: #13417f;
    padding: 5px 30px;
    color: white;
}

.section {
    /*padding: 80px 50px 50px;  Ajustado para compensar o header fixo */
    text-align: center;
    background: white;
    
    /* max-width: 800px; */
    /* border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.section.first{
    height: 100dvh;
    position: relative;
    background-image: url(./Imagens/textura1.jpg);
    background-position: center center;
    display: flex;
    justify-content: center;
}
.section.first p{
    margin: 0px;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.AreaInfoRubia{
    color: #13417e;
    text-align: left;
    font-size: 23px;
    padding: 0px 150px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.FotoRubia{
    display: flex;
    align-items: flex-end;
}
.FotoRubia img{
    height: 90%;
}

.btSolCons{
    border-radius: 8px;
    height: 45px;
    width: 200px;
    background-color: #13417e;
    color: white !important;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    cursor: pointer;
}
.icoSolCons{
    font-weight: 400;
    font-size: 16px;
    padding-right:5px;
}

.areaSobre{
    display: flex;
    justify-content: center;
}
.cardFotoSobre{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cardFotoSobre img{
    max-width: 400px;
}
.cardTextoSobre{
    max-width: 500px;
    padding-left: 20px;
}


.ClickHeader, .ClickHeader:hover, .ClickHeader:visited{
    color: #13417e;
    text-decoration: none;
}

.TitleSection{
    color: #13417f;
    font-size: 28px;
}
.TitleSectionWhite{
    color: white;
    font-size: 28px;
}

#especialidades{
    background: #173e7f;
}

.AreaEspecialidade{
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    padding: 20px;
}
.cardEspecialidade{
    background: white;
    color: #13417f;
    border-radius: 25px;
    padding: 10px;
    height: 140px;
    display: flex;
    align-items: center;
}

.cardEspecialidade ul{
    width:100%;
}

.AreaDuvidas{
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    padding: 20px;
}
.cardDuvidas{
    background: #13417f;
    color: white;
    border-radius: 25px;
    padding: 10px;
    /* height: 140px; */
    display: flex;
    align-items: center;
    flex-direction: column;
}
.cardDuvidas h2{
    font-size: 20px;
}
.cardDuvidas p{
    font-size: 14px;
}

.AreaContato{
    display: flex;
    width: 100%;
    color: #13417e;
}
.CardContato{
    text-align: left;
    width: 50%;
}
.CardContato div{
    margin-bottom: 20px;
}

.icoContato{
    font-size: 18px;
    font-weight: 600;
}

.CardRubia{
    width: 50%;

}
.CardRubia p{
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 18px;
}


footer {
    background-color: #13417f;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

#timelineFormAcad{
    max-width: 90%;
}
.roadmap__events .event{
    color: #13417f;
}
.roadmap.roadmap--orientation-auto .roadmap__events__event:after, .roadmap.roadmap--orientation-auto .roadmap__events__event:before{
    background-color: #173e7f;
}
.roadmap.roadmap--orientation-auto .roadmap__events:after{
    background-color: #173e7f;
}
.roadmap__events .event__content{
    font-size: 13px;
}

.HeaderMobile{
    display: none;
}
.menuMobile{
    border: 2px solid #13417e;
    border-radius: 8px;
    padding: 6px 12px;

    float: left;
    font-size:25px;
    margin-right: 5px;
    cursor: pointer;
    color: #13417e;
}
.FotoRubiaMobile{
    display: none;
    margin-top: 60px;
}

.bgsidenav{
    transition: 0.5s;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.64);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 0;
}
.sidenav {
    visibility: hidden;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    /* padding-top: 60px; */

    background-color:#13417e;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 5px;
    padding-right: 5px;
    color: white;

    max-width: 300px;
}

.sidenav ul{
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
    margin-top: 50px;
    width: 100%;
}
  
.sidenav a {
    padding: 8px 8px 8px 15px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
}
  
.sidenav a:hover {
    color: #f1f1f1;
}
  
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* estilo para parte mobile */
/*@media screen and (max-height: 640px) {*/
@media screen and (max-width: 895px) {
    .HeaderWeb{
        display: none;
    }
    .HeaderMobile{
        display: block;
    }
    .HeaderMobile img{
        max-width: 13em;
    }
    .areaSobre{
        flex-direction: column;
    }
    .cardTextoSobre{
        max-width: 100%;
        padding-left: 0px;
    }

    .section.first{
        flex-direction: column;
        height: 100%;
        min-height: 100dvh;
    }

    .AreaInfoRubia{
        font-size: 1.1em;
        padding: 0px 2em;
        width: 100%;
        margin-bottom: 20px;
    }

    .FotoRubia{
        display: none;
    }

    .FotoRubiaMobile{
        display: block;
    }
    .FotoRubiaMobile img{
        max-height: 300px;
    }
    .cardFotoSobre{
        display: none;
    }

    .btSolCons{
        height: 40px;
        width: 250px;
        font-size: 1em;
    }
    .icoSolCons{
        font-size: 1em;
    }

    .AreaContato{
        flex-direction: column;
    }
    .CardRubia{
        width: 100%;
        text-align: left;
        margin-bottom: 35px;
    }
    .CardContato{
        width: 100%;
    }
    .CardContato div{
        margin-left: 15px;
    }
    .CardRubia div{
        margin-left: 35px;
    }
    .CardRubia p{
        margin-left: 15px;
    }
}