@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #ededed;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}

header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

main{
    padding-top: 138px;
}

.texto_nav.ativo {
    color: #cfbc70;
    border-bottom: 2px solid #cfbc70;
}

.img_nav_mobile{
    height: 100%;
    display: none;
}


.header_login{
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
}

.div_acesso{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header_nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
    height: 70px;
    background-color: white;
}

.header_login{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    height: 70px;
}

.hero_img{
    width: 100%;
    max-height: 600px;
}

.titulo_header_login {
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 0.1rem;
}

.titulo_header_login::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; 
    width: 50%;
    border-bottom: 2px solid black;
}

.texto_acesso{
    font-size: 16px;
    color: #cfbc70;
    margin: 0;
    font-weight: 500;
}

.input_box {
    display: inline-block;
    margin: 5px;
    padding: 6px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: left;
    width: 100px;
}

body::-webkit-scrollbar {
    display: none;
}

.input_label {
    display: block;
    font-size: 12px;
    color: gray;
}

.input_estilizado {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    width: 100%;
}

.texto_lembrar{
    font-size: 14px;
}

.btn_login{
    color: white;
    font-size: 14px;
    background-color: #000238;
    border-radius: 8px;
    padding: 0.2rem 0.4rem;
    font-weight: 600;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.btn_abrir_conta{
    color: #000238;
    font-size: 14px;
    background-color: #cfbc70;
    border-radius: 8px;
    padding: 0.4rem;
    font-weight: 600;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.texto_nav{
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

footer{
    display: flex;
    justify-content: space-around;
    background-color: #1a2833;
    flex-wrap: wrap ;
    padding: 1rem;
}

.titulo_footer{
    color: #cfbc70;
    font-size: 18px;
    font-weight: 500;
}

.texto_footer{
    font-size: 14px;
    color: white;
    font-weight: 400;
    margin: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.img_plataformas{
    width: 180px;
    object-fit: contain;
}

.div_plataformas{
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

a{
    text-decoration: none;
    color: black;
}

a:visited{
    text-decoration: none;
    color: black;
}


.menu-lateral {
    position: fixed;
    top: 69px;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
}

.menu-lateral.ativo {
    right: 0;
}

.menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.menu-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.icone_menu {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.logo_deitada_header{
    height: 100%;
}

.div_nav_header{
    display: flex;
    margin-left: 2rem;
    width: 100%;
    justify-content: space-evenly;
}

.img_nav{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#abrirMenu{
    display: none;
}


#select_safeting{
    font-family: 'Poppins', sans-serif;
    -webkit-appearance: none;
    margin-top: 5px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-sizing: border-box;
    resize: none;
    padding-right: 2rem;
    background: #fff url(/img/down-arrow.png) no-repeat right 10px center;
    background-size: 16px;
    color: #333;
}

#select_btn{
    -webkit-appearance: none;
    margin-top: 5px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    padding-right: 2.5rem;
    box-sizing: border-box;
    resize: none;
    background: #fff url(/img/down-arrow.png) no-repeat right 10px center;
    background-size: 16px;
    color: #333;
    outline: none;
}

#menu-whatsapp {
    position: fixed;
    z-index: 999999;
    right: 10px;
    bottom: 10px;
    border-radius: 100%;
    background-color: transparent;
    border: none;
    animation: glowing 1500ms infinite;
}


@keyframes glowing{
    0% {
        transform: scale(1);
        background: rgba(0, 208, 69, 0);
        padding: 20px;
        border: 1px rgba(1, 208, 76, 0.00) solid;
    }

    50% {
        transform: scale(1.2);
        background: rgba(0, 208, 69, 0.40);
        padding: 20px;
        border: 1px rgba(1, 208, 76, 0.50) solid;
    }
    100% {
        transform: scale(1);
        background: rgba(0, 208, 69, 0);
        padding: 20px;
    }
}


@media (max-width: 750px){
    .header_login{
        display: none !important;
    }

    main{
        padding-top: 68px;
    }

    footer{
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 2rem;
    }

    .div_nav_header{
        display: none !important;
    }

    .img_nav_mobile{
        display: block;
    }

    #abrirMenu{
        display: flex;
    }
}
