:root {
    --cor-padrao: #0000FF;
    --cor-padrao-hover: #3B3BFF;
    --cor-h1: #1C244B;
}

.bg-gray-900 {
    background-color: var(--cor-padrao);
}

.bg-gray-900:hover {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-400 {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-400:hover {
    background-color: var(--cor-padrao-hover);
}

.bg-gray-300 {
    background-color: var(--cor-h1);
    color: white;
}

.bg-gray-100 {
    background-color: #fff;
}

/* Font and Basic Settings */
html {
    height: 100%;
}

body {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--cor-h1);
    line-height: 1.6;
    background: #fff;
    /* background: rgb(236, 234, 253);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(236, 234, 253, 1)), to(rgba(255, 255, 255, 1))) fixed; */
}

a {
    text-decoration: none;
    color: var(--cor-h1);
}

p {
    padding: 0px;
    margin: 0;
}

.content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0px;
}


/* Animação de confetes caindo */
@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        /* Confetes começam acima da tela */
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        /* Confetes rodam e caem até a parte inferior */
        opacity: 0;
    }
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #ff0;
    /* Cor padrão para os confetes */
    border-radius: 50%;
    opacity: 1;
    animation: confettiFall 6s ease-out forwards;
    /* Animação de 6 segundos */
    animation-delay: calc(0.1s * var(--index));
    /* Diferente animação para cada confete */
}

/* Adicionando a classe de confete ativa ao body para melhorar a animação */
body.confetti-active {
    overflow: hidden;
    /* Para esconder os confetes que saem da tela */
}





.banner-google-top {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    overflow: hidden;
}

.banner-google {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 728px;
    height: 90px;
    margin: 20px auto;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    overflow: hidden;
}






/* Header */
.header {
    background-color: #fff;
    padding: 0px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: relative; */
    border: 2px solid var(--cor-padrao);
    padding: 5px 10px;
    border-radius: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--cor-h1);
    font-weight: bold;
}

.nav-links a:hover {
    color: var(--cor-padrao);
}


.logo {
    cursor: pointer;
    min-width: 150px;
    max-width: 200px;
    max-height: 90px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

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

.btn-criar-conta {
    background-color: var(--cor-padrao);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 10px;
}

.btn-criar-conta:hover {
    background-color: var(--cor-padrao-hover);
    transition: 0.3s;
}

/* Estilos para o ícone de menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



.ptbr {
    padding: 0px 3px 0px 3px;
    border: 3px solid var(--cor-padrao);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}

.en {
    padding: 0px 3px 0px 3px;
    border: 3px solid transparent;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}

.es {
    padding: 0px 3px 0px 3px;
    border: 3px solid transparent;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 37px;
        right: 35px;
        background-color: #fff;
        width: 155px;
        padding: 15px 0px 15px 9px;
        /* border: 1px solid var(--cor-padrao); */
        border-radius: 10px;
        flex-direction: column;
        box-shadow: 0 0 5px var(--cor-padrao);
    }

    .logo img {
        max-width: 200px;
        max-height: 200px;
    }


    .menu-icon {
        display: block;
    }

    /* Quando o checkbox está marcado, mostra o menu */
    .menu-toggle:checked~.nav-links {
        display: flex;
    }

}





.div-agenda-lembretes {
    display: flex;
    flex-direction: column;
    /* width: 30%; */
    height: 87vh;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
}

.botao-segmentado-lembrete {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efefef;
    border-radius: 8px;
    margin: 20px 0px 10px 0px;
    padding: 6px 7px;
}

.botao-segmentado-lembrete button {
    background-color: transparent;
    border: none;
    border-radius: 7px;
    padding: 8px 20px;
    cursor: pointer;
    margin: 0;
    width: 50%;

}

.botao-segmentado-lembrete button.selecionado {
    background-color: var(--cor-padrao);
    /* Cor do botão selecionado */
    color: white;
    /* Cor do texto do botão selecionado */
    margin: 0;
    font-size: 14px;
}

.botao-segmentado-lembrete button:not(.selecionado) {
    background-color: #efefef;
    color: var(--cor-padrao);
    margin: 0;
    font-size: 14px;
}

#div2-lembrete {
    display: none;
}

.div1-lembrete1 {
    width: 100%;
}


#div2-lembrete {
    margin-top: 20px;
    padding: 10px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

#div2-lembrete p {
    margin: 5px 0;
    font-size: 16px;
}


:root {
    --size: 300px;
}


.div1 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-self: center;
    align-items: center;
    max-width: 1200px;
    padding: 20px;
    gap: 20px;
}

.into {
    text-align: center;
    position: relative;
    width: var(--size);
    /* <<<<< Aqui! */
}

.wheel-container {
    position: relative;
}

canvas#wheel {
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #fff;
}

.div-pointer {
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 11;
    position: absolute;
    top: 44%;
    left: 46%;
    box-shadow: 0 4px 17px 5px rgba(0, 0, 0, 0.25);
}

.div-pointer p {
    font-size: 15px;
    padding-top: 15px;
    font-weight: 900 !important;
}

.pointer {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid white;
    position: absolute;
    top: 82%;
    left: 51%;
    transform: translateX(-50%) rotate(180deg);
    z-index: 10;
    /* box-shadow: 0 4px 17px 5px rgba(0, 0, 0, 0.25); */
}

.into-img {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.into-img textarea {
    width: 95%;
    height: 300px;
    font-size: 16px;
    padding: 10px;
    resize: none;
    border: 2px solid #ccc;
    border-radius: 8px;
}

.div1 button {
    margin-top: 60px;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: var(--cor-padrao);
    color: white;
    cursor: pointer;
    transition: background 0.9s;
    /* box-shadow: 0 5px 15px rgba(103, 18, 255, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite; */
}

.button-container button {
    margin-top: 60px;
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: var(--cor-padrao);
    color: white;
    cursor: pointer;
    transition: background 0.9s;
    box-shadow: 0 5px 15px rgba(103, 18, 255, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    width: calc(100% - 200px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(103, 18, 255, 0.7);
    }

    50% {
        transform: scale(1.09);
        box-shadow: 0 0 20px 10px rgba(103, 18, 255, 0.2);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(103, 18, 255, 0.7);
    }
}

.button-container button:hover {
    background-color: #5512d6;
    box-shadow: 0 8px 20px rgba(85, 18, 214, 0.6);
}

/* .div1 button:hover {
    background: var(--cor-padrao-hover);
} */

.button-container {
    position: relative;
    /* Permite o posicionamento do pointer abaixo do botão */
    margin-top: 20px;
}

.div1 h2 {
    margin-top: 20px;
    font-size: 24px;
    color: var(--cor-padrao);
}


/* ------------- DIV 1 ------------*/



.div1 h1 {
    margin-top: 10px;
    font-size: 34px;
    color: var(--cor-padrao);
    font-weight: 900;
}


.into {
    padding: 20px 10px;
    /* border: 5px solid var(--cor-padrao);
    border-radius: 20px; */
    width: 50%;
}

.into-img {
    padding: 5px 10px;
    width: 50%;
}

.into-img img {
    width: 100%;
    height: auto;
}






.div1 p {
    font-size: 17px;
    font-weight: 400;
    color: #34495e;
}

.div1 label {
    font-weight: 600;
    color: #34495e;
}









@media (max-width: 768px) {

    .div1 {
        display: flex;
        flex-direction: column;
    }

    .into {
        width: 100%;
    }

    .into-img {
        width: 100%;
    }
}


/* ------------- DIV 2 ------------*/

.div2 {
    display: flex;
    flex-direction: column;
}

.titulo-type {
    display: flex;
    justify-content: center;
}

.titulo-type h2 {
    font-size: 34px;
    color: var(--cor-h1);
    padding-bottom: 20px;
}

.into-2 {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.into-type {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 170px;
    padding: 10px;
    border-radius: 20px;
}

.into-type h3 {
    padding: 0px;
    margin: 0;
}

.type-img {
    display: flex;
    justify-content: center;
}

.into-type img {
    width: 120px;
    height: 270px;
}

.type-p-faixa {
    color: grey;
    font-size: 14px;
    font-weight: bold;
    padding-top: 5px;
}

.type-p-desc {
    font-size: 17px;
    padding-top: 5px;
    line-height: 17px;
}




/* ------------- DIV 3 ------------*/


.div3 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    padding: 20px;
    /* margin-top: 100px;
    margin-bottom: 100px; */
}

.div3 h4 {
    font-size: 34px;
    color: var(--cor-padrao);
    margin-top: 0;
}

.into-3 {
    padding: 5px 10px;
    width: 50%;
}




@media (max-width: 768px) {

    .div3 {
        display: flex;
        flex-direction: column;
    }

    .into-3 {
        padding: 5px 10px;
        width: 100%;
    }

    .div3 h4 {
        margin-top: 0;
    }
}





/* ------------- DIV 4 ------------*/


.div4 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
}

.div4 h4 {
    font-size: 34px;
    color: var(--cor-padrao);
}

.into-4 {
    padding: 5px 10px;
    width: 50%;
}




@media (max-width: 768px) {

    .div4 {
        display: flex;
        flex-direction: column;
    }

    .div1 {
        margin-top: 0px;
    }

    .into-4 {
        padding: 5px 10px;
        width: 100%;
    }

    .div4 h4 {
        margin-top: 0;
    }
}

/* section {
    margin-top: 50px;
} */



/* ------------- DIV 5 SOBRE ------------*/


.div5 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div5 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
    margin-top: 0;
}


@media (max-width: 768px) {

    .div5 {
        display: flex;
        flex-direction: column;
    }

    .div5 {
        margin-top: 0px;
    }

    .div5 h4 {
        margin-top: 0;
    }
}






/* ------------- DIV 6 Políticas ------------*/


.div6 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div6 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
}

.div6 h5 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--cor-h1);
}


@media (max-width: 768px) {

    .div6 {
        display: flex;
        flex-direction: column;
    }

    .div6 {
        margin-top: 0px;
    }
}






/* ------------- DIV 7 TERMOS ------------*/


.div7 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div7 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
}

.div7 h5 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--cor-h1);
}


@media (max-width: 768px) {

    .div7 {
        display: flex;
        flex-direction: column;
    }

    .div7 {
        margin-top: 0px;
    }
}







/* ------------- DIV 8 Contato ------------*/


.div8 {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-self: center;
    padding: 20px;
    margin-top: 5px;
}

.div8 h4 {
    font-size: 34px;
    margin-top: 10px;
    color: var(--cor-h1);
}


@media (max-width: 768px) {

    .div8 {
        display: flex;
        flex-direction: column;
    }

    .div8 {
        margin-top: 0px;
    }
}






























.navbar-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
}

.nav-links-footer {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links-footer a {
    text-decoration: none;
    color: var(--cor-h1);
    font-weight: bold;
    font-size: 14px;
}

.nav-links-footer a:hover {
    color: var(--cor-padrao);
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-social {
    width: 24px;
    margin-right: 5px;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    color: #fff;
    text-align: center;
    /* padding: 20px 0; */
    /* margin-top: 100px; */
}

.footer p {
    color: var(--cor-h1);
}

.content-footer {
    padding: 10px 0px 10px 0px;
}

@media (max-width: 768px) {
    .navbar-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        padding-bottom: 5px;
    }

    .nav-links-footer {
        list-style: none;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        padding: 0;
        gap: 0px;
    }

}

/* Estilo para modal ou popup com scroll */
body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--cor-padrao);
    border-radius: 6px;
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

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