:root {
    --verde-claro: #6abf4b;
    --verde-escuro: #08461f;
    --verde: #25783a;
    --cinza-claro: #d9d9d9;
    --cinza: #737373;
    --amarelo: #ffe600;
    --branco: #fff;
    --laranja: #ff8a2a;
}

@font-face {
    font-family: 'MatrixType-Regular';
    src: url('../../fonts/matrixtype/MatrixType-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* FONTES */
.barlow-regular {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.barlow-semibold {
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.barlow-bold {
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.audiowide-regular {
    font-family: "Audiowide", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.aldrich-regular {
    font-family: "Aldrich", sans-serif;
    font-weight: 400;
    font-style: normal;
}




/* --------------------- GLOBAL STYLES --------------------- */
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../img/background.JPG');
    background-repeat: no-repeat;
    background-size: cover;
}



/* --------------------- ANUNCIANTE --------------------- */
.contato {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.form-box {
    background-color: rgba(217, 217, 217, 0.8);
    padding: 20px;
    border: 1px solid var(--verde-escuro);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-height: 130px;
}

.form-control {
    border: 1px solid var(--cinza);
}

.form-control:focus {
    border-color: #fcaf70;
    box-shadow: 0 0 0 .25rem #ff8a2a49;
}

.btn-formAnunciante {
    --bs-btn-color: white;
    --bs-btn-bg: var(--laranja);
    --bs-btn-border-color: #111;
    --bs-btn-hover-color: white;
    --bs-btn-hover-bg: #e06f12;
    --bs-btn-hover-border-color: #111;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
    font-weight: bold;
}

/* --------------------- RODAPÉ --------------------- */
footer .rodape {
    font-family: 'MatrixType-Regular', sans-serif;
    color: var(--laranja);
    background-color: #111;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

footer .rodape {
    margin-top: auto;
    padding: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

/* --------------------- RESPONSIVO --------------------- */
@media screen and (max-width: 576px) {
    .logo {
        scale: 0.9;
    }

    footer {
        font-size: 0.6rem;
    }
}