
.catalogo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    background-color: #f5f5f5;
}

.carta-auto {
    background-color: white;
    border: 2px solid black;
    border-radius: 15px;
    width: 250px;
    padding: 20px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.carta-auto:hover {
    transform: scale(1.05);
}

.carta-auto img {
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.nombre-auto {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.precio-auto {
    color: black;
    font-size: 18px;
    margin-top: 10px;
}

.boton-comprar {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton-comprar:hover {
    background-color: #0056b3;
}

/* Tipos de coche */
.nuevo {
    color: #28a745; /* verde */
}

.ocasion {
    color: #dc3545; /* rojo */
}

/* Leyenda */
.leyenda {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.etiqueta {
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 5px;
    margin: 0 10px;
}

.etiqueta.nuevo {
    background-color: #d4edda;
    color: #28a745;
}

.etiqueta.ocasion {
    background-color: #f8d7da;
    color: #dc3545;
}
