@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');

/* Criando varávies globais de cor */
:root {
    --norte-color: #438847;
    --sudeste-color: #294E8F;
    --sul-color: #8C8CC3;
    --nordeste-color: orange;
    --centro-oeste-color: #BC9B1A;
  }

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Poppins;
    background-image: url(../imagens/MDR-E-SITE.png);
    background-repeat: repeat;
}

header{
    width: 100%;
    height: 20vh;
    background-color: #2b344a;
    display: flex;
    padding: 2vw;
    box-sizing: border-box;
    margin-bottom: 2vh;
}

.container-logo{
    width: 8%;
    align-items: center;
    display: flex;
}

.logo{
    width: 100%;
}

.logo-mdr{
    width: 100%;
    height: 100%;
}

nav{
    width: 50%;
    height: 100%;
}

nav ul{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav li{
    cursor: pointer;
    color: white;
}

main{
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}


.page-footer{
    width: 100%;
    height: 10vh;
    background-color: #2b344a;
    display: grid;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 0 10px;
}

.social-media{
    display: flex;
    justify-content: center;
    margin: 0 10px;
}

.p-footer{
    font: montserrat;
    font-style: italic;
    font-size: small;
    text-decoration: none;
    color: white;
}

.a-header{
    text-decoration: none;
    color: white;
    background-color: #2b344a;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
}
.a-header:hover{
    background-color: #3e4a63;
}

.menu{
    position: relative;
    display: inline-block;
}

.menu-button{
    background-color: #2b344a;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.menu-button:hover{
    background-color: #3e4a63;
}

.dropdown{
    display: none;
    position: absolute;
    background-color: #2b344a;
    min-width: 150px;
    box-shadow:0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown a{
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover{
    background-color: #3e4a63;

}

.menu:hover .dropdown{
    display: block;
}

.icon-social-media{
    width: 30px;
    height: 30px;
    margin: 0 10px;
}
.icon-social-media:hover{
    background-color: #3e4a63;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Poppins;
    background-image: url(../imagens/background.png);
    background-repeat: repeat;
}

.item {
    display: flex;
    align-items: center;
    border-radius: 4px;
    transition: transform 0.3s ease

}


.item:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); 
    background-color: #3e4a63;
}

.clientes{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    padding: 20px;
}

img{
   border-radius: 8px;
}

#clientes {
    background-color: #4a4a4a; /* Cor de fundo diferente */
    color: white; /* Cor do texto */
    padding: 10px; /* Espaçamento interno */
    border-radius: 5px; /* Bordas arredondadas */
    font-weight: bold; /* Texto em negrito */
}


/*ESTRUTURA DOS MODAIS*/

.modal-portais-ativos{
    width: 80%;
    height: 80%;
    top: 1;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
}


.portais-container{
    width: 30%;
    height: 80%;
    background-color: rgba(43, 52, 74, 0.9);
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 2vw;
    
}

.portais-container h1{
    font-size: 2vw;
}

.portal-item{
    width: 80%;
    height: 15%;
    margin-top: 2vh;
}

.fechar-modal{
    align-self: end;
    background: none;
    border: none;
    color: white;
    font-size: 1vw;
    cursor: pointer;
    transition: transform 0.3s ease
}

.fechar-modal:hover{
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); 
    color: #ff0000;
}

.portal-item button{
    width: 100%;
    height: 100%;
    border: 1px solid white;
    color: #2b344a;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease
}
.portal-item button:hover{
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); 
    background-color: #c1c7d4;
}

.botoes-opcao-visualizacao{
    margin-bottom: 2vh;
}

.botoes-opcao-visualizacao button{
    background-color: #2B344A;
    color: white;
    border: none;
    padding: 1vw;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease
}

.botoes-opcao-visualizacao button:hover{
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); 
    background-color: #3e4a63;
}
