.products-page{
    padding: 80px 60px;
}

.products-title{
    text-align: center;
    margin-bottom: 50px;
}

.products-title p{
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.products-title h1{
    font-size: 56px;
}

.products-title span{
    color: #a6ff00;
}

.products-grid{
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.product-card{
    display: flex;
    align-items: center;
    gap: 35px;

    text-decoration: none;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 28px;

    overflow: hidden;

    transition: 0.3s ease;

    padding: 25px;
}

.product-card:hover{
    transform: translateY(-8px);
    border-color: rgba(166,255,0,0.4);
}

.product-card img{
    width: 320px;
    height: 220px;

    object-fit: cover;

    border-radius: 20px;

    flex-shrink: 0;
}

.product-info{
    padding: 20px;
}

.product-info small{
    color: #a6ff00;
}

.product-info h3{
    margin: 12px 0;
    color: white;

    font-size: 38px;
    line-height: 1.1;
}

.product-info p{
    color: #a6ff00;
    font-weight: bold;
}


.product-whatsapp{
    display: inline-block;
    margin-top: 10px;

    color: rgba(255,255,255,0.7);

    font-size: 14px;
}



/* ===================================================== */
/* 📱 RESPONSIVE PRODUCTOS */
/* ===================================================== */

@media (max-width: 768px){

.products-page{
    padding: 40px 20px;
}

.products-title{
    margin-bottom: 35px;
}

.products-title h1{
    font-size: 38px;
}

.products-grid{
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card img{
    height: 220px;
}

.product-info{
    padding: 18px;
}

.product-info h3{
    font-size: 22px;
}
}

.products-legal{
    text-align:center;
    padding:80px 20px;
}

.products-legal h3{
    font-size:32px;
    margin-bottom:15px;
}

.products-legal p{
    opacity:.75;
    margin-bottom:25px;
}

.legal-btn{
    display:inline-block;
    padding:16px 32px;
    background:#a6ff00;
    color:#081824;
    text-decoration:none;
    border-radius:14px;
    font-weight:bold;
}