@font-face {
    font-family: 'breeBold';
    src: url(../fonts/Lato-Bold.ttf);
}

@font-face {
    font-family: 'bree';
    src: url(../fonts/Lato-Regular.ttf);
}

* {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 0;
    color: #FFF;
    font-family: 'bree';
    font-size: 16px;
    text-decoration: none;
    box-sizing: border-box;
    /* user-select: none; */
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-color: #B9001F;
    --secondary-color: #F9D33D;
    --background-light: #fff;
}

html, body {
    font-family: 'Lato', sans-serif;
    max-width: 100vw !important;
    height: 100vh !important;
    overflow-x: hidden;
}

.arrow-footer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -14%;
    cursor: pointer;
}

.barra-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.barra-search form {
    position: relative;
}

.barra-search form input {
    width: 400px;
    height: 50px;
    color: #000;
    border-radius: 35px;
    text-align: center;
    border: 0.5px solid #A3A3A3;
    outline: 0;
}

.barra-search form input::placeholder{
    text-align: center;
    color: #D8D8D8;
}

.barra-search form button {
    position: absolute;
    background-color: transparent;
    right: 20px;
    top: 13px;
}

