/* GERAL */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
    font-family: "Inter", sans-serif;
    
}

@keyframes brilho {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

.btn-warning-custom{
    box-shadow: 0px 0px 13px 1px #ffc107c2;
    transition: transform 0.5s, box-shadow 0.5s;
    
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #d6a206;
    --bs-btn-border-color: #d6a206;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #d6a206;
    --bs-btn-hover-border-color: #ffc720;
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #dda600;
    --bs-btn-active-bg: #d6a10077;
    --bs-btn-active-border-color: #ffc720;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #ffc107;
    --bs-btn-disabled-border-color: #ffc107;
}

.btn-warning-custom:hover{
    box-shadow: 0px 0px 0px 0px #ffc107ad;
    transform: scale(0.95);
}

.header-span{
    background-color: rgba(245, 245, 245, 0.144)
}


.mh-100vh{
    min-height: 101vh;

}

.text-content{
    font-size: 19px;
    font-weight: lighter;
    
}

.headline{
    font-size: 26px;
    font-weight:bold;
}

.sub-headline{
    font-size: 21px;
    
    font-weight:bold;
}


.text-justify{
    text-align: justify;
}

.centralize-content{
    justify-content: center;
    align-content: center;
}

.centralize-self{
    justify-self: center;
    align-self: center;
}

.rounded-custom{
    border-radius: 18px;
}

.brilho-animated{
    animation: 3.4s linear infinite brilho;
    background-image: linear-gradient(45deg, #c99807, #ffe38e, #c99807, #ffe38e);
    background-size: 400% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    will-change: background-position;
}

.icon {
    font-size: 3rem;
    transition: background-position 3s ease-in-out;
}

.hidden{
    display: none;
}


/* GERAL */



/* HEADER */


header{
    background-image:url(../img/bg-header.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    
}

.bg-header{
    display: flex;
    background-color: rgba(0, 0, 0, 0.700);
    background-size: cover;
    align-self: center;
}

/* conhecimento */

.knowledge-container{
    align-items:center;
}

.knowledge-hover:hover .icon, 
.knowledge-hover:hover .knowledge-txt-bright {
    animation: 3.4s linear infinite brilho;
    background-image: linear-gradient(45deg, #c99807, #ffeebb, #c99807, #ffeebb);
    background-size: 400% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent;
    will-change: background-position;
    background-position: 100% 0; /* Movimento do gradiente para dar o efeito */
}

.knowledge-hover:hover{
    transform: scale(1.05);
    box-shadow: 0px 0px 10px 0px #ffffff4f;
    
}


.knowledge-headline-bright{
    transition: background-position 3s ease-in-out;

}

.knowledge-hover{
    transition: transform 1s, box-shadow 1s;
}


/* contato */

#contact{
    
    background-image:url(../img/bg-contact2.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

}

#contact-content{
    box-shadow: 0px 0px 20px 1px black;

}




/* responsividade  */

@media (min-width: 576px) {
   
  }
  
  @media (min-width: 768px) {
    
}


  @media (min-width: 992px) {
    .headline{
        font-size: 34px;
    }

    .knowledge-container{
        align-items:baseline;
    }
}

@media (min-width: 1200px) {
    .text-content{
        font-size: 22px;
        
    }
  }
  