:root{
    --cor-1:#0540F2;
    --cor-2:#F7941E;
    --cor-3:#FFC60B;
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}



.content{
    width: 100%;    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.header{
    width: 100%;
    color: #fff;

    padding: 20px;
    gap: 20px;
    cursor: pointer;
    background-color:var(--cor-1) ;
}

.header-area{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 950px;
    margin: auto;
    
}

.area-logo img{
    border-radius: 100%;
    width: 100px;
    border: 5px solid var(--cor-2);
}

.header a{
    display: flex;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    padding: 8px;
    color: #fff;
    transition: 0.8s;
}

.header a:hover{
    background-color: var(--cor-2);
    color: blue;
    border-radius: 5px;
}



.main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

h1{
    padding: 20px 0;
    text-align: center;
}

.onibus-area{
    width: 100%;
    max-width: 950px;
    gap: 20PX;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}

.onibus-item{
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.img-principal{
    display: flex;
    overflow: hidden; 
    gap: 3px;   
    position: relative;
    object-fit: contain;
    width: 300px;
}

.img-principal img{
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0 ;  
    padding: 5px;
}

.onibus-item-title{
    padding: 5px;
}

.onibus-item-title h3{
    color: var(--cor-1);
}

.onibus-item-title h4{
    color: var(--cor-2);
}

.onibus-item-descricao{
    padding: 5px;
    font-size: 14px;
    flex: 1;
}

.onibus-item-descricao i{
    width: 20px;
    color: var(--cor-2);
    text-align: center;
}

.onibus-item-descricao div{
    display: flex;
    gap: 5px;
    
}

.onibus-btn{
    background-color: greenyellow;
    padding: 10px;
    border-radius:10px;
    cursor: pointer;
    text-align: center;
    color: var(--cor-1);
    font-weight: bold;
    width: 100%;
    margin-top: 10px;    
}

.onibus-btn i {
    font-weight: bold;
}

.form-orcamento{
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.card input, select{
    border: none;
    border-bottom: 2px solid var(--cor-1);
    outline: none;
    padding: 5px;
    border-radius: 5px;
    width: 250px;
}

.formulario-area{
    padding: 50px;    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    background-color: var(--cor-1);
    margin-top: 30px;
    
}

.formulario-area h2{
    color: #fff;
}

.area-orcamento{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card{
    width: 300px;
    max-width: 300px;
    display: flex;
    color: #fff;
    padding: 20px 10px;
    border-radius: 10px;
    gap: 10px;
    background-color: var(--cor-2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 300px;
}
