@charset "UTF-8";

/* =====================================================
   SUBTITULOS
===================================================== */

.subtitulo {

    font-size: 22px;

    margin: 35px 0 18px;

    font-weight: 700;

    border-left: 5px solid #1e5cc8;

    padding-left: 12px;

    color: #0f172a;

    line-height: 1.4;
}

/* =====================================================
   GRID
===================================================== */

.productos-grid {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fill,
            minmax(240px,1fr)
        );

    gap: 24px;

    align-items: stretch;
}

/* =====================================================
   CARD
===================================================== */

.producto-card {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 100%;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.06);

    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

.producto-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 14px 32px rgba(0,0,0,0.12);
}

/* =====================================================
   IMAGEN
===================================================== */

.producto-img {

    position: relative;

    padding: 18px;

    text-align: center;
}

.producto-img img {

    width: 100%;

    height: 210px;

    object-fit: contain;

    transition: transform .28s ease;
}

.producto-card:hover .producto-img img {

    transform: scale(1.04);
}

/* =====================================================
   BADGE
===================================================== */

.badge {

    position: absolute;

    top: 12px;
    left: 12px;

    padding: 6px 11px;

    font-size: 11px;

    font-weight: 700;

    border-radius: 8px;

    color: #fff;

    z-index: 2;

    box-shadow:
        0 3px 8px rgba(0,0,0,0.18);
}

/* NUEVO */

.badge.nuevo {

    background: #0057D9;
}

/* OFERTA */

.badge.oferta {

    background: #dc3545;
}

/* =====================================================
   INFO
===================================================== */

.producto-info {

    text-align: center;

    padding: 12px 14px 68px;

    flex-grow: 1;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;
}

/* TITULO */

.producto-info h3 {

    font-size: 15px;

    font-weight: 700;

    line-height: 1.45;

    margin-bottom: 10px;

    color: #0f172a;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* TEXTO */

.producto-info p {

    font-size: 13px;

    color: #64748b;

    line-height: 1.6;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* =====================================================
   BOTON
===================================================== */

.producto-btn {

    position: absolute;

    bottom: 0;

    width: 100%;

    padding: 14px;

    background: #1e5cc8;

    color: #fff;

    text-align: center;

    font-weight: 600;

    letter-spacing: .2px;

    transform: translateY(100%);

    opacity: 0;

    transition: .28s ease;
}

.producto-card:hover .producto-btn {

    transform: translateY(0);

    opacity: 1;
}

/* =====================================================
   MONITORES GRANDES
   24" / 27"
===================================================== */

@media (min-width:1600px){

    .subtitulo{

        font-size:30px;

        margin:45px 0 24px;
    }

    .productos-grid{
        gap:34px;
    }

    .producto-card{
        border-radius:22px;
    }

    .producto-img img{
        height:280px;
    }

    .producto-info h3{
        font-size:18px;
    }

    .producto-info p{
        font-size:15px;
    }

    .producto-btn{
        font-size:16px;
    }
}

/* =====================================================
   LAPTOPS 19" / 15"
===================================================== */

@media (max-width:1400px){

    .productos-grid{
        gap:22px;
    }
}

/* =====================================================
   LAPTOPS 14"
===================================================== */

@media (max-width:1200px){

    .productos-grid{

        grid-template-columns:
            repeat(auto-fill,minmax(220px,1fr));

        gap:20px;
    }

    .producto-img img{
        height:190px;
    }
}

/* =====================================================
   TABLET HORIZONTAL
===================================================== */

@media (max-width:992px){

    .subtitulo{

        font-size:20px;

        margin:28px 0 16px;
    }

    .productos-grid{

        grid-template-columns:
            repeat(auto-fill,minmax(210px,1fr));

        gap:18px;
    }

    .producto-card{
        border-radius:16px;
    }

    .producto-img img{
        height:180px;
    }

    .producto-info h3{
        font-size:14px;
    }
}

/* =====================================================
   TABLET VERTICAL
===================================================== */

@media (max-width:768px){

    .subtitulo{

        font-size:18px;

        margin:24px 0 14px;
    }

    .productos-grid{

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:16px;
    }

    .producto-card{
        border-radius:15px;
    }

    .producto-img{

        padding:14px;
    }

    .producto-img img{
        height:160px;
    }

    .producto-info{

        padding:10px 12px 60px;
    }

    .producto-info h3{
        font-size:14px;
    }

    .producto-info p{
        font-size:12px;
    }

    .producto-btn{

        padding:12px;
    }
}

/* =====================================================
   TELEFONOS GRANDES
===================================================== */

@media (max-width:580px){

    .subtitulo{

        font-size:17px;

        margin:22px 0 12px;
    }

    .productos-grid{

        grid-template-columns:1fr 1fr;

        gap:12px;
    }

    .producto-card{
        border-radius:14px;
    }

    .producto-img img{
        height:135px;
    }

    .producto-info{

        padding:10px 10px 56px;
    }

    .producto-info h3{
        font-size:13px;
    }

    .producto-info p{
        font-size:11px;
    }

    .badge{

        padding:5px 8px;

        font-size:10px;
    }

    .producto-btn{

        padding:11px;

        font-size:13px;
    }
}

/* =====================================================
   TELEFONOS PEQUEÑOS
===================================================== */

@media (max-width:420px){

    .productos-grid{

        grid-template-columns:1fr;
    }

    .producto-img img{
        height:190px;
    }

    .producto-info h3{
        font-size:14px;
    }

    .producto-info p{
        font-size:12px;
    }

    .producto-btn{

        opacity:1;

        transform:none;

        position:relative;
    }
}