body{
    font-family: "Poppins", sans-serif;
}

.tituloSol{
    text-align: center;
    margin-bottom: 20px;
    font-size: 33px;
    font-weight: 500;
    color: #333;
    padding: 30px;
    letter-spacing: -2px;
}
.spcrio{
    color: #05428E;
    font-style: italic;
    font-weight: 800;
}
#destaque .card{
    border: 0;
    max-height: 240px;
}
#destaque .certificado{
    background-image: url('images/certificado.jpg');
    background-size: cover;
    transition: background-image 0.5s ease;
    background-position: right;
}
#destaque .title-certificado{
    font-size: 26px;
    font-weight: 700;
    color: #05428E;
}

#destaque .text-certificado{
    color: #00A04E;
    font-weight: 700;
}

#destaque .title-robo{
    color: #fff;
    font-weight:700;
    font-size: 22px;
    text-shadow: 1px 1px 1px #333;
}
#destaque .text-robo{
    color: #fff;
    font-weight: 600;
    text-shadow: 1px 1px 1px #333;
}
#destaque .btn{
    border-radius: 3px;
}
#destaque .robo{
    background-image: url('images/robo.jpg');
    background-size: cover;
    transition: background-image 0.5s ease;
    background-position: right;
}
#destaque .robo:hover{
    background-image: url('images/robo-hover.jpg');
    background-position: right;
}
#destaque .msg{
    background-image: url('images/msg.jpg');
    background-size: cover;
    background-position: right;
}
#destaque .msg .card-title{
    font-weight: 700;
    color:#05428E;
}
#destaque .msg .card-text{
    font-weight: 600;
    color: #333;
}
#cards{
    font-family: "Poppins", sans-serif;
    padding: 50px;
    padding-top: 0;
}
#cards .material-symbols-outlined{
    font-size:52px;
    color: #00A04E;
    transition: color 0.5s ease;
}
#cards .card{
    border-bottom: 5px solid #FECC0D;
    transition: background-color 0.5s ease;
}
#cards .card-text{
    color: #333;
    transition: color 0.5s ease;
}
#cards .card:hover{
    background-color: #05428E;
}
#cards .card-title{
    color: #05428E;
    font-weight: 800;
    transition: color 0.5s ease;
}
#cards .btn{
    transition: background-color 0.5s ease;
    border: 0;
    font-weight: 500;
}

#cards .card:hover .card-title,
#cards .card:hover .material-symbols-outlined,
#cards .card:hover .card-text
{
    color: #FFF; /* Nova cor do título durante o hover */
}

#cards .card:hover .btn{
    background-color: #FECC0D;
    color: #05428E;
}

#cards .card-body a{
    border-radius: 3px;
}
#cardsInfo{
    padding: 30px;
    padding-top: 0;
}
#cardsInfo .btn{
    border-radius: 3px;
    background-color: #00A04E;
    border: 0;
    transition: background-color 0.5s ease;
}
#cardsInfo .btn:hover{
    background-color: #05428E;
    color: #fff;
}
#cardsInfo .card-title{
    font-weight: 600;
    color: #05428E;
}

@media screen and (max-width: 768px){
        
    .tituloSol{
        text-align: center;
        margin-bottom: 20px;
        font-size: 26px;
        font-weight: 500;
        color: #333;
        padding:15px;
        letter-spacing: -2px;
    }
    #cards{
        padding: 15px;
    }
    #cards .col-md-4{
        width: 100%;
    }
    #destaque .w-50{
        width: 100% !important;
    }
    #destaque .card{
        border: 0;
        max-height:inherit;
    }
}

/*///////////////*/
.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

h2 {
    margin-top: 0;
    color: #333;
    margin-bottom: 30px;
}

.border-right {
    border-right: 2px dashed #ccc;
}

i.bi {
    font-size: 48px;
    color: #0120a8;
    transition: color 0.3s, transform 0.5s;
}

.container li:hover .bi {
    transform: scale(1.2);
    color: #fff; /* Cor branca no hover */
}

.container a {
    text-decoration: none;
    color: #333; /* Cor inicial do link */
    transition: color 0.3s; /* Transição suave */
}

.container li:hover a {
    color: #fff; /* Cor branca no hover */
}

#grade ul {
    padding: 0;
}

#grade ul li {
    list-style: none;
    padding: 20px;
    height: 200px;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Transição do background */
}

ul li:hover {
    background-color: #0120a8; /* Cor do background no hover */
}

#grade h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    color: #333; /* Cor inicial dos cabeçalhos */
    text-transform: uppercase;
    font-weight: 800;
    transition: color 0.3s; /* Transição suave */
}

#grade ul li:hover h3 {
    color: #fff; /* Cor branca no hover */
}

#grade p {
    color: #666; /* Cor inicial dos parágrafos */
    transition: color 0.3s; /* Transição suave */
}

#grade ul li:hover p {
    color: #fff; /* Cor branca no hover */
}

#grade .col-1, .col-2, .col-3 {
    border: 0;
    border-right: 2px solid #ccc;
    border-style: dashed;
}


/*///////////////////*/
li.logo {
    display: flex;
    align-items: center;
}

li.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

li.logo a .mb-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efeito hover para trocar a imagem */
li.logo a .mb-3 img {
    content: url('images/logo-help-micro.svg');
}

li.logo:hover a .mb-3 img {
    content: url('images/logo-help-micro-branca.svg');
}
/*///////////////////*/

@media (max-width: 768px) {
    #grade ul li{
        width: 100%;
        border: 0;
        border-bottom: 1px solid #666;
        border-style:dashed;
        border-radius: 0;
    }

    .col-md{
        width: 100%;
    }

    #grade .col-1, .col-2, .col-3 {
        border: 0;
        border-right: 0px;
    }
}

/*//////////////////////////*/


@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');


.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

h2 {
    margin-top: 0;
    color: #333;
    margin-bottom: 30px;
}

.border-right {
    border-right: 2px dashed #ccc;
}

i.bi {
    font-size: 48px;
    color: #0120a8;
    transition: color 0.3s, transform 0.5s;
}

.container li:hover .bi {
    transform: scale(1.2);
    color: #fff; /* Cor branca no hover */
}

.container a {
    text-decoration: none;
    color: #333; /* Cor inicial do link */
    transition: color 0.3s; /* Transição suave */
}

.container li:hover a {
    color: #fff; /* Cor branca no hover */
}

#grade ul {
    padding: 0;
}

#grade ul li {
    list-style: none;
    padding: 20px;
    height: 200px;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Transição do background */
}

ul li:hover {
    background-color: #0120a8; /* Cor do background no hover */
}

#grade h3 {
    margin: 10px 0 5px;
    font-size: 16px;
    color: #333; /* Cor inicial dos cabeçalhos */
    text-transform: uppercase;
    font-weight: 800;
    transition: color 0.3s; /* Transição suave */
}

#grade ul li:hover h3 {
    color: #fff; /* Cor branca no hover */
}

#grade p {
    color: #666; /* Cor inicial dos parágrafos */
    transition: color 0.3s; /* Transição suave */
}

#grade ul li:hover p {
    color: #fff; /* Cor branca no hover */
}

#grade .col-1, .col-2, .col-3 {
    border: 0;
    border-right: 2px solid #ccc;
    border-style: dashed;
}

li.logo {
    display: flex;
    align-items: center;
}

li.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    text-decoration: none;
}

li.logo a .mb-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efeito hover para trocar a imagem */
li.logo a .mb-3 img {
    content: url('images/logo-help-micro.svg');
}

li.logo-grafeno a .mb-3 img {
    content: url('images/logo-grafeno.svg');
}

li.logo-grafeno:hover a .mb-3 img {
    content: url('images/logo-grafeno-branca.svg');
}

li.logo:hover a .mb-3 img {
    content: url('images/logo-help-micro-branca.svg');
}

li.icon-estagio a img {
    content: url('images/icon-estagio.svg');
}

li.icon-estagio:hover a img {
    content: url('images/icon-estagio-branca.svg');
}

li.balanca a img {
    content: url('images/balanca-azul.svg');
}

li.balanca:hover a img {
    content: url('images/balanca-branca.svg');
}

@media (max-width: 768px) {
    #grade ul li{
        width: 100%;
        border: 0;
        border-bottom: 1px solid #666;
        border-style:dashed;
        border-radius: 0;
    }

    .col-md{
        width: 100%;
    }

    #grade .col-1, .col-2, .col-3 {
        border: 0;
        border-right: 0px;
    }
}
