/* EQUIPOS EN VENTA */

.equipos-venta {

    padding: 80px 8%;
    background: #f5f7fa;

}

.equipos-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;

}

.equipo-card {

    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;

}

.equipo-card:hover {

    transform: translateY(-8px);

}

.equipo-card img {

    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;

}

.equipo-card h3 {

    color: #0a2a5e;
    font-size: 16px;
    margin-bottom: 5px;

}

.equipo-card p {

    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;

}

.equipo-card button {

    background: #ffc107;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;

}

.equipo-card button:hover {

    background: #e6ac00;

}


@media (max-width: 600px) {
    .equipos-venta { padding: 60px 6%; }
    .equipo-card { padding: 20px; }
}
