@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root{
    --BlueBase: #1F5C99;
    --BlueDark: #153D66;
    --BlueLigth: #297BCC;
    --White: #EFEFEF;
    --Black: #0E0E0E;
    --WhiteOpacity: rgba(85, 85, 85, 0.3);
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: Figtree;
    text-decoration: none;
    list-style: none;
}

body, html{ /* Alterar!!!!!!!!!!!!!!!!!!!!!!!!!! */ 
    height: 100%;
}

.container{
    max-width: 1280px;
    margin: auto;
    padding: 0 50px;
}

.relative{
    position: relative;
}

/* Header */

header{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url(../images/Principal.webp) lightgray 0% 0% / 57.9833984375px .9833984375px repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px;
}

/* DropMenu */

.drop-menu{
    height: 100vh;
    width: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #eceef0;
    overflow: hidden;
    padding-top: 60px;
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
}

.drop-menu.open{
    width: 260px;
}

.drop-menu-btn{
    position: absolute;
    right: 30px;
    top: 30px;
    opacity: 0.75;
    font-size: 1.5rem;
    color: var(--Black);
    opacity: 0.5;
}

.drop-menu ul{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px 0px;
}

.drop-menu a{
    color: var(--BlueDark);
    font-weight: 500;
}

.menu-btn{
    display: none;
    color: var(--White);
    opacity: 0.75;
    font-size: 1.5rem;
}

/* NavBar */

nav{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a{
    color: var(--BlueBase);
    font-size: 1.5rem;
    font-weight: 800;
}

.links{
    display: flex;  
    align-items: center;
    gap: 30px;
}

.links ul{
    display: flex;
    align-items: center;
    gap: 30px;
}

.links a{
    color: var(--White);
    opacity: 0.75;
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
}

.links a:hover{
    opacity: 1;
}

.action-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 45px;
    margin: auto;
    border: 2px solid var(--BlueLigth);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
}

.action-btn:hover{
    background-color: var(--BlueLigth);
}

.links > a{
    padding: 10px 20px;
    border: 2px solid var(--BlueLigth);
}

/* Title */

.title{
    margin-top: 200px;
    max-width: 600px;
}

.title h1{
    color: var(--White);
    margin-bottom: 20px;
    font-size: 3rem;
    text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
}

.title p{
    color: var(--White);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 25px;
}

.blue-btn{
    color: var(--White);
    background-color: var(--BlueLigth);
    width: 200px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
}

.blue-btn:hover{
    background-color: var(--BlueBase);
}

/* ProfileContent */

.profile{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 75px;
    padding: 75px 0px;
}

.profile-content{
    display: flex;
    flex-direction: column;
}

h2{
    margin-bottom: 20px;
    font-size: 2rem;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

.profile-content p{
    max-width: 525px;
}

.sub-title{
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 25px;
}

aside{
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 25px;
    margin-bottom: 50px;
    line-height: 25px;
}

aside h5{
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* ImgProfile */

.profile img{
    width: 500px;
    height: 500px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    transition: .2s ease;
    -webkit-transition: .2s ease;
    -moz-transition: .2s ease;
    -ms-transition: .2s ease;
    -o-transition: .2s ease;
}

/* CardsContent */

.cards-content{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 50px;
    padding: 75px 0;
}

.card{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.card h3{
    font-size: 1.5rem;
}

.card p{
    font-size: 1rem;
    line-height: 25px;
}

/* Blue */

.blue{
    background-color: var(--BlueDark);
    width: 100vw;
    padding: 75px 0px;
}

.blue > .container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.blue h2{
    max-width: 650px;
    margin-bottom: 25px;
    color: var(--White);
    font-size: 2rem;
}

.blue p{
    max-width: 650px;
    line-height: 25px;
    color: var(--White);
    font-size: 1rem;
}

/* CardsTitleContent */

.cards-title-content{
    padding: 75px 0px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.card-title{
    max-width: 700px;
    margin-bottom: 50px;
}

.card-content{
    display: flex;
    align-items: start;
    gap: 50px;
}

.card{
    width: 50%;
}


.card-title .tag{
    font-weight: 600;
    margin-bottom: 15px;
}

/* BackImage */

.back-img{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%), url(../images/Piano.webp) lightgray 50% / cover no-repeat;
    padding: 75px 0;
    color: var(--White);
}

.back-img > .container{
    display: flex;
    gap: 50px;
    align-self: stretch;
}

.back-content{
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

.back-content p{
    margin-bottom: 30px;
    line-height: 25px;
}

/* FAQs */

.faqs{
    padding: 75px 0px;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.faq-title{
    max-width: 530px;
}

.faq-title p{
    line-height: 25px;
    font-size: 1rem;
    margin-bottom: 30px;
}

.faq-cards{
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.faq-card{
    max-width: 600px;
    height: 75px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--Black, #000);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
}

.faq-card:hover{
    height: 240px;
}

.question{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 25px;
    font-weight: 600;
}

.question img{
    cursor: pointer;
}

.answer{
    line-height: 25px;
    overflow: hidden;
}


/* Footer */

footer{
    padding: 75px 0px;
}

.footer-content{
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-content a{
    color: var(--BlueBase);
    font-size: 2rem;
    font-weight: 800;
}

.footer-link{
    display: flex;
    gap: 10px;
}

.footer-link img{
    width: 28px;
    height: 28px;
}

hr{
    border: 0.5px solid black;
}

footer p{
    margin-top: 25px;
    text-align: center;
    font-weight: 600;
}

