﻿.seccion-equipos {
    background-color: #0b0b0b;
    color: #fff;
    padding: 80px 5%;
}

.titulo-equipos {
    text-align: center;
    margin-bottom: 50px;
}

    .titulo-equipos h2 {
        color: #84b6f4;
        font-size: 2.5rem;
        text-transform: uppercase;
    }

.grid-equipos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tarjeta-equipo {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .tarjeta-equipo:hover {
        transform: translateY(-10px);
        border-color: #84b6f4;
    }

.equipo-img-wrapper {
    height: 200px;
    background: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .equipo-img-wrapper img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

.equipo-info {
    padding: 25px;
}

    .equipo-info h3 {
        color: #84b6f4;
        margin-bottom: 5px;
    }

.tagline {
    font-size: 0.9rem;
    font-weight: bold;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.equipo-usos {
    margin-top: 15px;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

    .equipo-usos li {
        margin-bottom: 5px;
    }

/* Destacado para la Grúa Grande */
.tarjeta-equipo.destacado {
    border: 2px solid #ffcc00;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}
