@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    align-items: center;
    text-align: center;
    background: linear-gradient(to top, #000 50%, rgba(12, 12, 12, 0.8));
    color: rgb(207, 212, 196);
}

#imgjose {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-top: 10px;
    margin-bottom: 30px;
    box-shadow:0 0 0 5px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(192, 192, 192, 0.5);
}

#nomeprincipal{
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

#logo{
    margin-top: 0px;
    height: 400px;
    width: 400px;
}

.especificacoes {
    margin-top: 40px;
    font-size: 10px;
}

#texto01 {
    letter-spacing: 2px;
    font-family: 'Courier New', Courier, monospace;
}


#texto2{
    font-size: 10px;
    font-style: normal;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 300;
}

/* Estilo para os botões */

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    margin-top: 50px; 
}

.container a {
    text-decoration: none;
    color: black;
    font-family:'Courier New', Courier, monospace;
    font-size: 12px;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-on-hover {
    width: 430px;
    height: 40px;
    border: 0.1px solid white;
    outline: none;
    color: #161515;
    cursor: pointer;
    position: relative;
    /* z-index: 0; */
    border-radius: 10px;
    margin-top: 20px;
    background-color: rgba(221, 209, 209, 0.824); 
    transition: transform 0.5s ease;
    font-family: 'Courier New', Courier, monospace;
}
.glow-on-hover:hover {
    transform: scale(1.1); 
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #7c7373, #605c5a, #3c3c39, #252624, #00ffd5, #002bff, #7a00ff, #ff00c8, #0f0f0f);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #afa8a8;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

#face{
   width: 50px;
   height: 50px;
}

#insta{
    width: 50px;
    height: 50px;
 }
 
 /* Botão flutuante whatsapp */

 .whatsapp-float {
    position: fixed;
    width: 10px;
    height: 10px;
    bottom: 100px;
    right: 100px;
    border-radius: 50px;
    text-align: center;
}

#iconeflu{
    width: 80px;
}

.whatsapp-float:hover::before {
    content: "Tire dúvidas no Whatsapp"; 
    position: absolute;
    width: 100px;
    height: 33px;
    top: -30px;
    left: 100px; 
    transform: translateX(-120%);
    background-color:  #25D366; 
    color: white;
    border-radius: 5px; 
    font-size: 12px; 
}

#iconerotatorio{
    margin-top: 30px;
}


@media only screen and (max-width: 767px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .princip {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 50px;
    }

    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        max-width: 70%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .container a {
        width: 100%;
        margin: 10px 0;
    }

    /* Adicionando estilos específicos para os elementos desaparecidos */
    #imgjose {
        width: 80px; /* Ajuste conforme necessário */
        height: 80px; /* Ajuste conforme necessário */
        margin-top: 10px;
        margin-bottom: 20px;
    }

    #nomeprincipal {
        font-size: 1.5em; /* Ajuste conforme necessário */
        margin-top: 10px;
        margin: auto;
    }

    .especificacoes {
        margin-top: 50px;
        font-size: 0.7em; /* Ajuste conforme necessário */
        margin: auto;
    }

    #iconerotatorio {
        margin-top: 50px;
        width: 40px; /* Ajuste conforme necessário */
        height: 40px; /* Ajuste conforme necessário */
    }

    #texto2{
        margin-top: 50px;
        font-size: 1.2em; 
        margin: auto;
    }
}


