/* INICIO */

* {
    padding: 0;
    margin: 0;
}

html {
    padding: 0px;
    margin: 0px;
}

body {
    /*background: rgb(63, 60, 60);*/
    background-image: url("/img/fundo-home.jpg");
    text-shadow: 1px 1px 1px rgb(0, 0, 0);
    /*mudar o tamanho da escolha da imagem*/
    background-position: 50%;
    /*overflow: hidden;*/
    margin: auto;
    padding: auto;
}


/* /////// COR DAS DAS LETRAS ///// */

a,
h1,
h2,
.rodape-01,
.rodape-02,
.rodape-03,
.botao-insta a {
    color: rgb(189, 78, 58);
}


/* /////// TAMANHO DAS LETRAS ///// */


/* texto primário */

h1 {
    font-size: 25px;
    font-family: 'Julius Sans One', sans-serif;
}


/* letras secundário e os 2 rodapé  */

.nome-inicio h2 {
    font-size: 10px;
    font-family: 'Julius Sans One', sans-serif;
}

.rodape-01 h2 {
    font-size: 14px;
    font-family: 'Julius Sans One', sans-serif;
}

.rodape-02 h3 {
    font-family: 'Rambla', sans-serif;
    font-size: 16px;
}

.rodape-03 {
    font-size: 8px;
    font-family: 'Julius Sans One', sans-serif;
}


/* letras dos links */

.txt-links {
    font-size: 13px;
    font-family: 'Julius Sans One', sans-serif;
}


/* letras icones das midias  */

.icones-midias {
    font-size: 20px;
}

.botao-insta {
    font-size: 16px;
}


/* /////// VIDEO DE FUNDO ///// */


/*.video-fundo {
    display: flex;
    top: 0px;
    bottom: 0px;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}*/


/*   QUADRO TRANSPARENTE */

main {
    display: block;
    background: rgba(226, 216, 216, 0.14);
    border-radius: 10px;
    padding: 20px 0px 10px 0px;
    margin: 40px 20px;
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(7.5px);
    /*backdrop-filter: blur(5.7px); menos FOSCO*/
    -webkit-backdrop-filter: blur(5.7px);
    /*BORDA DO CARD*/
    border: 1px solid rgba(146, 22, 0, 0.3);
}


/*    LOGO   */

img {
    border-radius: 50%;
    border-width: 1.3px;
    border-color: rgb(189, 78, 58);
    border-style: solid;
    width: 100px;
    height: 100px;
    padding: 5px;
    align-items: center;
    animation: circulo-03 0.3s infinite;
    -webkit-animation: circulo-03 0.3s infinite;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-iteration-count: 4;
    -webkit-animation-iteration-count: 4;
    animation-delay: 1.5s;
    -webkit-animation-delay: 1.5s;
    ;
}


/*  ////////////////////////  animacão da logo ///////////////////////////////*/

.degrade-imagem::before {
    align-items: center;
    border-radius: 100px;
    content: '';
    z-index: -1;
    position: absolute;
    background: rgb(147, 11, 11);
    background: linear-gradient(90deg, rgb(201, 86, 86) 0%, rgb(201, 86, 86) 45%, rgb(255, 234, 159) 50%, rgb(201, 86, 86) 55%, rgba(201, 86, 86, 1) 100%);
    /* 221, 207, 155 */
    background-size: 700%;
    width: 111px;
    height: 111px;
    margin: auto;
    animation: AnimacaoBorda-03 3s infinite;
    -webkit-animation: AnimacaoBorda-03 3s infinite;
    animation-iteration-count: 0.8;
    -webkit-animation-iteration-count: 0.8;
    animation-delay: 1.3s;
    -webkit-animation-delay: 1.3s;
}


/* background: linear-gradient(45deg, #ffff00, #ad0000, #c0f309e7, #ad0000, #ffff00); */


/* seleção brasileira 
    background: rgb(253, 255, 0);
    background: linear-gradient(90deg, rgba(253, 255, 0, 1) 0%, rgba(0, 163, 255, 1) 49%, rgba(253, 255, 0, 1) 100%);
    background-size: 10%; */


/*///////////////////////////////*/

.degrade-imagem::after {
    filter: blur(20px);
    -webkit-filter: blur(20px);
}

@keyframes AnimacaoBorda-03 {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 700%;
    }
}

@-webkit-keyframes AnimacaoBorda-03 {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 700%;
    }
}

.imagem-inicio {
    display: flex;
    margin: 0px;
    align-content: center;
    justify-content: center;
}

@keyframes circulo-03 {
    0% {
        transform: perspective(0px) scaleX(1);
    }
    50% {
        transform: perspective(500px) scaleX(-1);
    }
}

@-webkit-keyframes circulo-03 {
    0% {
        -webkit-transform: perspective(0px) scaleX(1);
    }
    50% {
        -webkit-transform: perspective(500px) scaleX(-1);
    }
}


/*    NOMES INICIAL   */

.nome-inicio {
    text-align: center;
    align-content: center;
    padding: 10px 0px;
}

h1 {
    text-transform: uppercase;
    margin: 10px 0px;
}

h2 {
    text-transform: capitalize;
    margin-bottom: 20px;
}


/*  LINKS DO MEIO */

.links-geral a {
    text-decoration: none;
    transition: color 1.2s;
    padding: 20px;
    transition: 200ms linear;
    transition: all 0.8s ease;
    border: 2px solid #dac7838c;
    /*FONTE FAMILY*/
}

.links-geral a:hover {
    color: #ffea9c;
    border-color: #dac783c0;
    background: rgba(80, 0, 0, 0.425);
    box-shadow: 0 4px 30px rgba(128, 0, 0, 0.836);
    backdrop-filter: blur(9.9px);
    -webkit-backdrop-filter: blur(9.9px);
    letter-spacing: 1px;
}


/* .links-geral a:hover {
    color: #dac783c0;
    border-color: #dac783c0;
    background: rgba(4, 4, 4, 0.3);
    box-shadow: 0 4px 30px rgba(218, 199, 131, 0.836);
    backdrop-filter: blur(9.9px);
    -webkit-backdrop-filter: blur(9.9px);
    letter-spacing: 1px;
    transition: color 1s;
    transition: 200ms linear;
    transition: all 0.8s ease;
} */

.txt-links {
    font-weight: bold;
    text-align: center;
    width: 80%;
    display: block;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    border-width: 2px;
    border: 1px solid rgb(184, 28, 0);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5.4px);
    -webkit-backdrop-filter: blur(5.4px);
    box-shadow: 0 0 5px #521216, 0 0 5px #521216, 0 0 5px #521216, 0 0 5px #521216;
    -webkit-box-reflect: below 1px linear-gradient(transparent);
}


/* .txt-links {
    animation: txt-links 3s ease-out infinite;
    transform-origin: 50% 50%;
}

@keyframes txt-links {
    0% {
        transform: translate(0, 0)
    }
    1.78571% {
        transform: translate(5px, 0)
    }
    3.57143% {
        transform: translate(0, 0)
    }
    5.35714% {
        transform: translate(5px, 0)
    }
    7.14286% {
        transform: translate(0, 0)
    }
    8.92857% {
        transform: translate(5px, 0)
    }
    10.71429% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(0, 0)
    }
} */


/*  BOTÕES DAS REDES SOCIAIS */

.icones-midias {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 30px;
}

.icones-midias a {
    transition: color 1s;
    transition: 200ms linear;
    transition: all 0.8s ease;
}

.icones-midias a:hover {
    color: #dac783;
    transition: color 1s;
    transform: scale(1.6);
    transition: 200ms linear;
    transition: all 0.8s ease;
    /*box-shadow: 0 0 5px rgb(15, 15, 14), 0 0 5px #1c1d14, 0 0 20px tomato, 0 0 50px #ce7a7a;
    -webkit-box-reflect: below 1px linear-gradient(transparent), #26272b;*/
}


/* RODAPE DO CARD */

.card-geral {
    padding: 10px;
    margin: 20px;
    align-items: center;
    align-content: center;
}

.container {
    margin: auto;
    display: block;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.botao-insta {
    text-align: center;
}

.botao-insta a {
    text-decoration: none;
    color: rgb(216, 116, 99);
    transition: color 1.2s;
}

.botao-insta a:hover {
    text-decoration: none;
    color: #dac783;
    transition: color 1s;
}

.rodape-01 {
    margin: 10px 0px;
    text-align: center;
}

.rodape-03 {
    margin: 25px 0px 10px 0px;
    text-align: center;
}