@font-face {
    font-family: 'Bebas';
    src: url('../fontes/bebas/bebas.woff2') format('woff2'),
        url('../fontes/bebas/bebas.woff') format('woff'),
        url('../fontes/bebas/bebas.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.font-1 {
    font-family: 'Bebas';
}

:root {
    --preto: #000000;
    --dourado: #A08F4F;
    --verde: #2DD544;
}

.cor-dourado {
    color: var(--dourado) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--preto) !important;
    color: #fff !important;
}


/* ================================ GERAL ================================ */
.fundo {
    position: relative;
}

.fundo::before {
    content: "";
    background-image: url('../img/logos/rodolfo.webp');
    background-size: cover;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(120px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.img-rodolfo {
    width: 100%;
    height: auto;
    max-width: 450px;
}

.btn-botao {
    background-color: var(--dourado) !important;
    width: 50%;
    color: #fff !important;
}

/* EFEITO DO BOTÃO, QUE SERÁ APLICADO SOMENTE O PRIMEIRO */
#pulsar {
    animation-name: infinity;
    transform-origin: center;
    animation-duration: 4s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.btn-botao:hover {
    color: var(--preto) !important;
}

/* EFEITO QUE SERÁ USADO NO BOTÃO */
@keyframes infinity {
    0% {
        transform: scaleX(1);
    }

    25% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    50% {
        transform: scaleX(1);
    }
}

.img-projetos {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .btn-botao {
        width: 100%;
    }
}