@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;


    text-decoration: none;
    outline: none;
}




body{
    padding: 0;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    padding: 1rem 2%;
    font-family: "Google Sans", sans-serif;
    background: linear-gradient(135deg, #F8FBFF 0%, #EAF4FF 30%, #D8E8FF 65%, #CFE0FF 100%);
    color: #24345D;
}


/* ------------------------------------ LOGO -------------------------------------------*/
.logo-img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    cursor: pointer;
}
/* ------------------------------------ LOGO -------------------------------------------*/


/* nav INTEIRA e MINHOQUINHA !!!! */
nav{
    background-color: #ffffff; /* Fundo da navbar branco */
    padding: 15px 30px;
    border-radius: 60px;
    display: flex;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); /* Sombra leve pra separar do fundo */

    width: 95%;
    max-width: 1200px;
    margin: 20px auto;
}


nav a{
    display: inline-block;
}

.main-menu{
    position: relative;
    display: flex;
    justify-content: space-between; /*Eixo e colunas horizontal*/
    align-items: center;
    width: 100%;
}


.main-menu ul{
    width: auto;
    padding: 1rem 5%;
    margin-left: auto;




    display: flex;
    list-style: none;
    margin: 0;
    gap: 40px;
    margin-top: 0;
    margin-bottom: 0;
}


.main-menu ul li a{
    white-space: nowrap;
    position: relative;




    color: rgb(101, 128, 218);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3 ease;
}


.main-menu ul li a,
.main-menu ul li a:visited,
.main-menu ul li a:hover,
.main-menu ul li a:active {
    text-decoration: none;


}

/* -------------------------  MINHOQUINHA !!!!!!!!!! :DDDD ------------------------------*/
.main-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background-color: #6C8FB5;
    transition: width 0.4s ease;
}


.main-menu ul li a:hover::after {
    width: 100%;
}


/* cor ao passar o mouse */
.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #2a4663;
    transition: color 0.3s ease;
}
/* ---------------------- FECHA NAV E MINHOQUINHA!!!!!!!!!! ----------------------------*/

/* ------------------------------------ MAIN ------------------------------------------*/

.hero-main{
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
}

.main-topo{
    background-color: #ffffff;
    width: 100%;
    min-height: 400px;

    border-radius: 30px;
    padding: 30px;

    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.secao-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 40px 0;
}

.texto-conteudo, .imagem-conteudo{
    flex: 1;
}

.imagem-conteudo img{
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

.secao-flex.invertido{
    flex-direction: row-reverse;
}

.linha-horizontal{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 2px;
    background-color: #6C8FB5;
    opacity: 0.4;
}

.artigo h2{
    font-size: larger;
    margin-bottom: 1rem;
    color: #6C8FB5;
}

/* --------------------------------------------------------------------------------------------------*/


/* -------------------------------    RODAPÉ    ----------------------------------------*/

.gatinhos-gif{
    border-radius:200px;
    width: 300px;
    margin-bottom: 1rem;
}

.last-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 40px 0;

    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    background-color: #cedfff;
}

.footer-conteudo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
    max-width: 900px;
}

.socials{
    font-size: 30px;

    display: flex;
    gap: 10px;
    justify-content: center;

    list-style: none;
    padding: 0;
    margin-top: 1vh;
}

.socials li{
    margin-bottom: 8px;
}

.socials li a{
    color: #6580DA;
    font-weight: bolder;
    transition: color 0.3s ease;
    
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.socials li a:hover{
    color: #2a4663;
}

/* blocos */

.bloco-1, .bloco-2{
    flex: 1;
    text-align: center;
}

.linha-vertical{
    width: 2px;
    height: 80px;
    background-color: #6C8FB5;
    opacity: 0.4;
}