@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=TASA+Orbiter:wght@400..800&display=swap');

:root {
    --primary-color: #ab391f;
    --secondary-color: #dc7997d6;
    --h1-color: #f8f8f8;
    --font-color: #000000;
    --background-color: #ffe0c2;
    --link-color: #e43066d6;
    --link-glow: #e2001e;

    --fonte-principal: 'Outfit', sans-serif;
    --font-titulo: 'TASA Orbiter', serif;
}


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

html{
    font-size: 70%;
}


@keyframes link-pulse {
    0% {
        color: var(--link-color);
    }

    50% {
        color: var(--link-glow);
        text-shadow: 0px 0px 4px #e7729345;
    }

    100% {
        color: var(--link-color);
    }
}

@keyframes reverse-pulse {
    0% {
        color: var(--link-glow);
        text-shadow: 0px 0px 4px #e7729345;
    }

    50% {
        color: var(--link-color);
    }

    100% {
        color: var(--link-glow);
        text-shadow: 0px 0px 4px #e7729345;
    }
}

body {
    font-family: var(--fonte-principal);
    background-color: var(--primary-color);
    line-height: 0.7;
    text-align: center;
    margin: auto;
    max-width: 470px;
}

p {
    margin: auto;
    font-size: 0.8rem;
    width: 90%;
    text-align: center;
}

li {
    text-align: left;
    list-style: inside;
    font-size: 0.7rem;
    list-style-position: inside;
    margin-left: 10px;
}

#first-options li {
    list-style: none;
    text-align: center;
    margin: 10px 0;
    background-color: var(--link-color);
    padding: 8%;
    border: 1px solid var(--primary-color);
    border-radius: 15px;

}


#first-options li:hover {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: 0.3s all ease;
    scale: 1.03;
}

#first-options li p {
    font-family: var(--fonte-principal);
    font-size: 1.3rem;
}

#first-options a {
    text-decoration: none;
    color: var(--font-color);
    animation: none;
}

a {
    text-decoration: none;
    animation: link-pulse 4s infinite;
}


a:visited {
    text-decoration: none;

}

/*======================MODELOS======================*/

h1 {
    color: var(--h1-color);

    font-family: var(--font-titulo);
    font-size: 1.8rem;

    margin: 20px 0px;

    text-shadow: 2px 2px black;
}

#contatos > ul {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 15px;
}

#contatos>ul>li {
    list-style: none;
}



main {
    margin: auto;
    margin-top: 20px;
    width: 99%;
    padding: 20px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 4px 3px 10px 1px rgba(0, 0, 0, 0.38);

}

main > h2 {
    font-family: var(--font-titulo);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

#proposito-paragrafo {
    margin-bottom: 15px;
    padding: 8px;
    width: 100%;
}

#proposito-paragrafo a {
    font-size: 1.1rem;
}

h2 {
    text-align: center;
    font-size: 1.3rem;
}

#sites-lucrativos {
    width: 100%;
}

.info-box {
    margin: auto;
    border: 1px solid #000000;
    list-style: none;
    line-height: 1.8;
    padding-bottom: 15px;
    background-color: var(--background-color);
    border-radius: 10px;
}


.titulo-interativo {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


h3 {
    text-align: center;
    font-size: 1rem;
    color: var(--font-color);
    
    margin-bottom: 4px;

    max-width: 80%;

}

.info-box > h3 {
    margin: auto;
}

.privacidade li {
    text-align: left;
    margin: auto;
    font-size: 0.7rem;
    width: 85%;

}


.seta-menu img {
    display: block;
    height: auto;
}


.aba-info {
    display: none;
}

.seta-menu {
    background-image: url(assets/seta-menu-sites-24px.png);
    background-repeat: no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;

}

h4 {
    text-align: center;
    font-size: 1rem;
}




.info {
    max-height: 0;
    overflow: hidden;
    transition: 1s all ease;

    margin: auto;
    font-size: 0.8rem;
}

.caixa-interativa:has(.aba-info:checked) .info {
    max-height: 3000px;
}


hr {
    border: 2px solid var(--primary-color);
}

.citaçao > p {
    margin: auto;
    font-size: 0.6rem;
    padding: 10px 0;
}

.imagens-aplicacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.imagens-aplicacao img {
    width: 80%;
    border: 1px solid var(--primary-color);
    border-radius: 8px;

}

.animacao-contraria {
    animation: reverse-pulse 4s infinite;
}


/*===============================*/

#webcammodels-tutorial h1 {
    font-size: 1.3rem;
}

.imagens-aplicacao li {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    background-color: var(--background-color);
    padding: 10px;
    border-radius: 8px;
}

.imagens-aplicacao li p {
    max-width: 250px;
}

.botao-voltar {
    margin-top: 10px;
    width: 36px;
    height: 36px;
    cursor: pointer;
}
@media(min-width: 330px) {
    html {
        font-size: 100%;
    }

    body{
        line-height: 1.1;
    }
}


@media (min-width: 768px) {

    .imagens-aplicacao {
        flex-direction: row;
        justify-content: center;
        align-items: start;
        flex-wrap: wrap;

    }

    .imagens-aplicacao img {
        width: 40%;
        height: auto;
    }

}



