.contenedor_vuelos {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem;
}

.row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.card_vuelo {
    width: 30%;
    background-color: #7a2e2e;
    border-radius: 2rem;
    padding: 1.2rem;
    box-sizing: border-box;
}

.img_vuelo img {
    width: 100%;
    height: 50%;
    display: block;
    border-radius: 1rem;
}

.info_vuelo {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background-color: white;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
}

.info_vuelo p {
    font-size: 1rem;
    font-weight: bold;
    color: #7a2e2e;
}

.info_vuelo strong {
    display: block;
    color: #3a1414;
    font-size: 1.2rem;
}

.info_vuelo button {
    width: 30%;
    background-color: #7a2e2e;
    border: none;
    color: #fff;
    font-size: 1rem;
    align-self: center;
    margin-top: 0.5rem;
    padding: 0.3rem;
    border-radius: 1rem;
    cursor: pointer;
}

.busqueda{
    display:flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.busqueda input{
    border: 2px solid #7a2e2e;
    height: 2rem;
    border-radius: 10px;
    padding: 1rem;
}

.icono-busqueda{
    position: relative;
    color: #fff;
    background-color:#7a2e2e;
    height: 2rem;
    padding: 0.4rem 1rem;
    cursor: pointer;
    border-radius: 8px;
}

.icono-busqueda:hover{
    color: #883e3e;
    background-color:#fff;

}

button a {
    text-decoration: none;
    color: #fff;
}

button:hover {
    background-color: #3a1414;
}

.boton {
    font-size: 0.9rem;
    padding: 1rem 2rem;
    color: white;
    background-color: #7a2e2e;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
}

.boton:hover{
    background-color: #7e4040;
}