/* Botón DETALLES */
    .btn-detalles {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        background-color: rgb(10, 90, 85);
        border: none;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
    }

    .btn-detalles:hover {
        background-color: rgb(8, 123, 118);
        transform: scale(1.05);
    }

    /* Botón de WhatsApp */
    .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #25D366;
        color: white;
        font-size: 24px;
        text-decoration: none;
        margin-left: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease-in-out;
    }

    .whatsapp-btn:hover {
        transform: scale(1.1);
    }

    .whatsapp-icon {
        color: white;
    }