




body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #303030;
    
}

p {
    font-family:  'Inter';
}
  
/* header */
/* Header */
.cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 20px;
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Botão hamburguer */
.hamburguer {
    width: 45px;
    height: 45px;
    background: #791dcf;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition:  transform 0.3s ease;
}

.hamburguer span {
    width: 30px;
    height: 5px;
    background: #fff;
    border-radius: 2px;
}

/* Efeito de girar */
.hamburguer:hover {
     transform: scale(1.1);
}

/* Overlay escuro */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1500;
}


/* Menu Flutuante */
.menu-flutuante {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 25px;
    width: 200px;
    display: none;
    flex-direction: column;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding-bottom: 35px;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-flutuante ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.menu-flutuante ul li {
    margin: 15px 0;
}

.menu-flutuante ul li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    color: #222;
    transition: color 0.3s;
}

.menu-flutuante ul li a:hover {
    color: #791dcf;
}

.redes-sociais {
    display: flex;
    gap: 35px;
    margin-top: 7px;
}

.redes-sociais a {
    font-size: 29px;
    color: #791dcf;
    transition: transform 0.3s, color 0.3s;
}

.redes-sociais a:hover {
    transform: scale(1.2);
}

.menu-flutuante .fechar {
    background: none;
    border: none;
    position: absolute;
    top: 20px;      /* distância do topo */
    right: 20px;  
    cursor: pointer;
    color: #303030;
    padding: 0;
}

.menu-flutuante .fechar .material-icons-round {
    font-size: 31px;
}

.menu-flutuante .fechar:hover {
    color: #791dcf;
    transform: scale(1.1);
}

.menu-flutuante.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Botão Entrar */
.botao-entrar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background-color: #ffffff;
    color: #313131;
    border: 2px solid #c8c8c8;
    border-bottom: 5px solid #c8c8c8;
    text-decoration: none;
    border-radius: 10px;
    font-size: 19px;
    font-weight: bold;
    transition:  transform 0.3s ease;
}

.botao-entrar:hover {
    transform: scale(1.1); 
}


.botao-entrar img {
    width: 14px;
    height: auto;
}

.icone-menu img {
    width: 45px;
    height: auto;
    cursor: pointer;
}


/* Fonte e cores gerais do box inicial */
.termos-intro {
    max-width: 900px;
    margin: 50px auto 30px auto;
    font-family: 'Inter', sans-serif;
    margin-bottom: 120px;
}

.termos-intro .titulo {
    font-family: 'Poppins', sans-serif; /* mesma fonte do site */
    font-weight: 700; /* negrito */
    font-size: 50px; /* aumentei para ficar mais parecido com o site */
    color:#032c4e;
    margin-bottom: 10px;
    letter-spacing: 0.5px; /* espaçamento parecido com o site */
}


.termos-intro .data {
    font-size: 20px;
    font-weight: 600;
    color: #1a89e5; /* Azul da data */
    margin-bottom: 20px;
}

.termos-intro .box {
    background: #f1f3ff; /* leve azul claro */
    padding: 20px;
    border-radius: 15px;
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.termos-intro .box a {
    color: #1a89e5; /* coloque a cor que quiser */
    text-decoration: none; /* remove o sublinhado, se quiser */
}

.termos-intro .box a:hover {
    color: #051a5e; /* cor ao passar o mouse */
    text-decoration: underline; /* opcional, se quiser destacar no hover */
}










.rodape {
    background: linear-gradient(90deg, #6C2BD9, #9414b8);
    color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
    flex-wrap: wrap; /* Permite que fique responsivo */

}

.rodape a {
    color: #fff;
    display: block;
    margin: 5px 0;
    text-decoration: none;
}
.logo-rodape {
    display: flex;
    align-items: center;
}
.logo-rodape img {
    height: 200px;
    width: auto;
    margin-right: 10px;
}

.rodape a {
    line-height: 2.2;
    font-weight: bold;
}

.redes-rodape a {
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 7px;
   
}

.redes-rodape img {
    width: 20px;
    height: auto;
}

.links-rodape a {
    color: #fff;
    display: block;
    margin: 8px 0;      
    text-decoration: none;
    flex-direction: column; /* Alinha links verticalmente */
   
}

.redes-rodape img {
    width: 20px;
    height: auto;
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 768px) {
    .cabecalho {
        padding: 15px 20px;
    }

    .termos-intro .titulo {
        font-size: 36px;
        text-align: center;
    }

    .termos-intro .data {
        text-align: center;
    }

    .termos-intro {
        margin: 40px 15px 100px 15px;
    }

    .rodape {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

    .redes-rodape {
        text-align: center;
    }

    .logo-rodape img {
        height: 150px;
    }

        .redes-rodape {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .redes-rodape a {
        justify-content: center;
    }
}

/* ===== Cabeçalho responsivo ===== */
@media (max-width: 600px) {
    .logo img {
        height: 45px; /* logo menor */
    }

    .botao-entrar {
        padding: 6px 10px;  /* diminui o tamanho do botão */
        font-size: 16px;    /* diminui o texto */
    }

    .hamburguer {
        width: 35px;  /* menor */
        height: 35px;
    }

    .hamburguer span {
        width: 25px;
        height: 4px;
    }
}
