@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url(header.css);
@import url(home.css);
@import url(itens_projetos.css);
@import url(footer.css);
@import url(sobre.css);
@import url(parceiros.css);


* {
    font-family: 'Poppins', sans-serifs;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body{
    background-color: #00294b;
    overflow-x: hidden;
}

section{
    padding: 28px 8%;
}

.botao-header{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.botao-header:hover{
    transform: scale(1.05);
    cursor: pointer;
}

.botao-header a {
  text-decoration: none;
  color: inherit;
}

.botao-header a:visited,
.botao-header a:active,
.botao-header a:hover {
  color: inherit;
  text-decoration: none;
}

.btn-default{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#0c1955;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover{
    background-color: rgb(153, 194, 255);
}

.botao-header:hover{
    background-color: rgb(153, 194, 255);
}

.social-media-button{
    display: flex;
    gap: 18px;
    
}

.social-media-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #fff;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: #1d1d1d;
    box-shadow: 0px 0px 12px 4px rgba(0,0,0,0.1);
    transition: box-shadow .3s ease;
}

.social-media-button a:hover{
    width: 50px;
    height: 45px;
    box-shadow: 0px 0px 12px 8px rgba(0,0,0,0.1);
}

.section-title{
    color:mediumslateblue;
    font-size: 1.563rem;
}

.section-subtitle{
    font-size: 2.1875rem;
}