.equipo {
    margin: 0px;
    padding: 5px;
    border-color: #e0dddd;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 11px;
    display: inline-flex;
}

.equipo__border {
    height: 360px;
    border-color: #e0dddd;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.equipo__imagen--container {
    width: 100%;
    height: 165px;
    display: flex;
    align-items: center;
}

.equipo__imagen {
    width: 175px;
    height: 122px;
    object-fit: scale-down;
    margin: 0 auto;
}

.equipo:hover .equipo__imagen--container img {
    transform: scale(1.05);
}

.equipo:hover h3 {
    background-color: #fbbd00;
    -moz-transition: all 0.02s ease-out;
    -o-transition: all 0.02s ease-out;
    -webkit-transition: all 0.02sease-out;
    transition: all 0.02sease-out;
}

.equipo__cotizar--button {
    font-weight: 600;
    color: #000 !important;
    border-radius: 0px !important;
}

.equipo__cotizar--button:hover {
    text-decoration: none !important;
    color: white !important;
    background-color: black;
    border-color: #000 !important;
}

.equipo__cotizar--button:focus {
    border-color: #fff !important;
}

.equipo__cotizar--button:active {
    border-color: #fff !important;
}

.equipo h3 {
    width: 100%;
    height: 35px;
    line-height: 35px;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 11px;
    padding: 0 10px 1px;
    background-color: #2d2d2d;
    margin-bottom: 0;
    -moz-transition: all 0.02s ease-out;
    -o-transition: all 0.02s ease-out;
    -webkit-transition: all 0.02s ease-out;
    transition: all 0.02s ease-out;
    font-weight: 600;
    font-family: 'Roboto';
}

.equipossimilares__titulo {
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    padding: 30px 10px;
}

.equipo__border:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.equipo__imagen--container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.equipo__imagen {
    width: 100%;
    max-width: 300px;
    height: 100%;
    border-radius: 8px;
}

h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.equipo__especificaciones {
    list-style: none;
}

.equipo__especificaciones--div {
    height: 65px;
}

.equipo__especificaciones li {
    font-size: 0.7rem;
    color: #555;
    margin: 2px 0;
    text-align: left;
}

.equipo__cotizar--button {
    display: inline-block;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background-color: #fbbd00;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.equipo__cotizar--button:hover {
    background-color: #e68900;
    transform: scale(1.05);
}

/* Responsividad */
@media (max-width: 600px) {
    .equipo__border {
        padding: 15px;
    }

    h3 {
        font-size: 1.2rem;
    }

    .equipo__cotizar--button {
        font-size: 1rem;
        padding: 10px;
    }
}