.header{
    background: url('../img/headers/transport.webp') center/cover no-repeat;
}

.carta {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: start;
    display: flex;
    flex-direction: column;
    height: 370px;
    transition: 0.15s ease;
}

.carta:hover{
    transform: scale(1.03);
}

.vermas {
    display: block;
    text-decoration: none;
    background: var(--dark-blue);
    border: 1px solid black;
    padding: 10px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    width: 100%;
    margin-top: auto;
    transition: 0.3s, border 0.15s;
}

.vermas:hover {
    background: var(--medium-blue);
    border: 1px solid var(--medium-blue);
}

.cart-title{
    font-size: 1.5rem;
}