@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

body {
    height: 100vh;
    margin: 0;
    font-family: "Poppins", serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

header{
    background-color: #262626;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

main {
    display: flex;
    flex-direction: column;
    flex: 1; 
    overflow-y: auto;
    scrollbar-width: none;
}

.logo-empresa{
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.icone-notificacao{
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icone-usuario{
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.div-header-icones{
    display: flex;
    align-items: center;
}

.hero-section{
    flex: 0;
    display: flex;
    flex-direction: column;
    background-image: url(../imagens/fundoCabecalho.jpg);
    background-size: cover;
}

.div-motores{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.img-motores{
    width: 40%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.div-motores-radio{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    background-color: rgba(148, 148, 148, 0.801);
    backdrop-filter: blur(8px);
}

.div-radio{
    width: 40%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.texto-radio{
    font-size: 1.2rem;
    font-weight: 500;
}

.input-radio {
    width: 20px;
    height: 20px;
    border: 2px solid black;
    background-color: transparent;
    appearance: none;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.input-radio:checked::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: black;
    border-radius: 50%; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-section {
    flex: 1;
    background: linear-gradient(180deg, black 0%, #4D2C17 40%, #D87C2B 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    border: none;
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 16px;
    color: black;
    box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5); 
    text-indent: 10px; 
    border-radius: 5px;
}

.custom-select-wrapper::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    font-size: 16px;
    color: white;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: 5px;
}

.div-select{
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.custom-select:focus {
    outline: none;
}

.texto-select{
    margin: 0;
    color: white;
    font-weight: 200;
    font-size: 1.4rem;
}

.container-select{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.icone-busca{
    width: 110px;
}

.div-btn-busca{
    width: 100%;
    display: flex;
    justify-content: center;
}




