/* ===========================
   HERO
=========================== */

.tbt-hero{
    background:#e8ecef;
    padding:35px 20px;
    border-bottom:1px solid #e5e7eb;
    
      display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    
}

.tbt-description{
    max-width:760px;
    font-size:18px;
    line-height:1.8;
    color:#555;
   
}

    .tbt-logo{
    margin-bottom:10px;
}

.tbt-logo img{
    max-width:700px;
    max-height:220px;
    width:100%;
    height:auto;
    object-fit:contain;

}

/* ===========================
   PRODUCTOS
=========================== */

.tbt-products{
    padding:60px 0;
}

.tbt-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:32px;
}

/* ===========================
   TARJETAS
=========================== */

.tbt-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    overflow:hidden;
    transition:.25s;
    display:flex;
    flex-direction:column;
}

.tbt-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.tbt-image{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    height:260px;
    background:#fff;
}

.tbt-image img{
    max-width:100%;
    max-height:200px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.tbt-name{
    font-size:18px;
    padding:0 20px;
    margin:20px 0 10px;
    line-height:1.4;
}

.tbt-name a{
    text-decoration:none;
    color:#0B1F4D;
}

.tbt-price{
    padding:0 20px 25px;
    font-size:22px;
    font-weight:700;
    color:#0B63CE;
    margin-top:auto;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:1024px){

    .tbt-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media (max-width:768px){

    .tbt-title{
        font-size:34px;
    }

    .tbt-grid{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

}

@media (max-width:480px){

    .tbt-grid{
        grid-template-columns:1fr;
    }

}